mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
31 lines
1000 B
Python
31 lines
1000 B
Python
from odoo import _, fields, models
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class StockPicking(models.Model):
|
|
_inherit = "stock.picking"
|
|
|
|
def action_create_pull_list(self):
|
|
|
|
source_location = fields.first(self).location_id
|
|
for record in self:
|
|
if source_location != record.location_id:
|
|
raise UserError(_("Choose transfers with same source location"))
|
|
if not record.picking_type_id.allow_pull_list_server_action:
|
|
raise UserError(
|
|
f"Operation type of {record.name} transfer did not handle server action"
|
|
)
|
|
pull_wizard = self.env["stock.pull.list.wizard"].create(
|
|
{"location_id": source_location.id}
|
|
)
|
|
res = pull_wizard.action_prepare()
|
|
return res
|
|
|
|
|
|
class StockPickingType(models.Model):
|
|
_inherit = "stock.picking.type"
|
|
|
|
allow_pull_list_server_action = fields.Boolean(
|
|
string="Allow pull list server action", default=False
|
|
)
|