diff --git a/sf_mrs_connect/models/sync_common.py b/sf_mrs_connect/models/sync_common.py index d103b6fb..583fd6e4 100644 --- a/sf_mrs_connect/models/sync_common.py +++ b/sf_mrs_connect/models/sync_common.py @@ -451,11 +451,13 @@ class MachineControlSystem(models.Model): brand.id = item['id'], brand.name = item['name'], brand.code = item['code'], + brand.remark = item['remark'], brand.brand_id = self.env['sf.machine.brand'].search([('code', '=', item['brand_id'])]).id, brand.active = item['active'] else: self.env['sf.machine.control_system'].create({ "id": item['id'], + "remark": item['remark'], "name": item['name'], "code": item['code'],