mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
53 lines
1.8 KiB
Python
53 lines
1.8 KiB
Python
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
|
# (http://www.eficent.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import api, fields, models, _
|
|
|
|
|
|
class StockWarehouse(models.Model):
|
|
_inherit = 'stock.warehouse'
|
|
|
|
subcontracting_service_proc_rule_id = fields.Many2one(
|
|
comodel_name='procurement.rule',
|
|
string="Subcontracting Service Procurement Rule"
|
|
)
|
|
|
|
def _get_buy_route(self):
|
|
return self.env.ref('purchase.route_warehouse0_buy',
|
|
raise_if_not_found=False).id
|
|
|
|
@api.multi
|
|
def _get_vals_for_proc_rule_subcontracting(self):
|
|
self.ensure_one()
|
|
picking_type = self.env['stock.picking.type'].search(
|
|
[('code', '=', 'incoming'),
|
|
('warehouse_id', '=', self.id)
|
|
],
|
|
limit=1
|
|
)
|
|
return {'name': _('%s: Subcontracting service rule' % self.name),
|
|
'company_id': self.company_id.id,
|
|
'action': 'buy',
|
|
'picking_type_id': picking_type.id,
|
|
'location_id': picking_type.default_location_dest_id.id,
|
|
'route_id': self._get_buy_route(),
|
|
}
|
|
|
|
@api.multi
|
|
def _set_subcontracting_service_proc_rule(self):
|
|
for rec in self:
|
|
if rec.subcontracting_service_proc_rule_id:
|
|
continue
|
|
vals = rec._get_vals_for_proc_rule_subcontracting()
|
|
rule = self.env['procurement.rule'].create(vals)
|
|
rec.subcontracting_service_proc_rule_id = rule.id
|
|
return True
|
|
|
|
@api.model
|
|
@api.returns('self', lambda value: value.id)
|
|
def create(self, vals):
|
|
res = super(StockWarehouse, self).create(vals)
|
|
res._set_subcontracting_service_proc_rule()
|
|
return res
|