2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, fields, models, _
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Company(models.Model):
|
|
|
|
_inherit = "res.company"
|
|
|
|
|
|
|
|
propagation_minimum_delta = fields.Integer('Minimum Delta for Propagation of a Date Change on moves linked together', default=1)
|
|
|
|
internal_transit_location_id = fields.Many2one(
|
|
|
|
'stock.location', 'Internal Transit Location', on_delete="restrict",
|
|
|
|
help="Technical field used for resupply routes between warehouses that belong to this company")
|
|
|
|
|
|
|
|
@api.one
|
|
|
|
def create_transit_location(self):
|
|
|
|
'''Create a transit location with company_id being the given company_id. This is needed
|
|
|
|
in case of resuply routes between warehouses belonging to the same company, because
|
|
|
|
we don't want to create accounting entries at that time.
|
|
|
|
'''
|
|
|
|
# TDE FIXME: called in data - should be done in init ??
|
|
|
|
parent_location = self.env.ref('stock.stock_location_locations', raise_if_not_found=False)
|
|
|
|
location = self.env['stock.location'].create({
|
|
|
|
'name': _('%s: Transit Location') % self.name,
|
|
|
|
'usage': 'transit',
|
|
|
|
'location_id': parent_location and parent_location.id or False,
|
|
|
|
})
|
|
|
|
location.sudo().write({'company_id': self.id})
|
|
|
|
self.write({'internal_transit_location_id': location.id})
|
|
|
|
|
2018-07-06 14:58:06 +02:00
|
|
|
warehouses = self.env['stock.warehouse'].search([('partner_id', '=', self.partner_id.id)])
|
|
|
|
warehouses.mapped('partner_id').with_context(force_company=self.id).write({
|
|
|
|
'property_stock_customer': location.id,
|
|
|
|
'property_stock_supplier': location.id,
|
|
|
|
})
|
|
|
|
|
2018-01-16 06:58:15 +01:00
|
|
|
@api.model
|
|
|
|
def create(self, vals):
|
|
|
|
company = super(Company, self).create(vals)
|
|
|
|
|
2018-07-06 14:58:06 +02:00
|
|
|
company.create_transit_location()
|
|
|
|
# mutli-company rules prevents creating warehouse and sub-locations
|
2018-01-16 06:58:15 +01:00
|
|
|
self.env['stock.warehouse'].check_access_rights('create')
|
2018-08-10 11:05:39 +02:00
|
|
|
self.env['stock.warehouse'].sudo().create({'name': company.name, 'code': company.name[:5], 'company_id': company.id, 'branch_id': company.branch_id.id, 'partner_id': company.partner_id.id})
|
2018-01-16 06:58:15 +01:00
|
|
|
return company
|