From 72eada06394ee82c23fe71c39683d17d6d62d97f Mon Sep 17 00:00:00 2001 From: yuxianghui <3437689193@qq.com> Date: Wed, 4 Sep 2024 17:55:24 +0800 Subject: [PATCH 01/14] =?UTF-8?q?1=E3=80=81=E5=8A=9F=E8=83=BD=E5=88=80?= =?UTF-8?q?=E5=85=B7=E7=BB=84=E8=A3=85tree=E3=80=81form=E8=A7=86=E5=9B=BE?= =?UTF-8?q?=E5=B8=83=E5=B1=80=E8=B0=83=E6=95=B4=EF=BC=9B2=E3=80=81?= =?UTF-8?q?=E9=83=A8=E5=88=86=E5=AD=97=E6=AE=B5=E5=86=85=E5=AE=B9=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E8=B0=83=E6=95=B4=EF=BC=9B3=E3=80=81=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E5=88=80=E5=85=B7=E7=BB=84=E8=A3=85=E5=8D=95=E7=BC=96?= =?UTF-8?q?=E7=A0=81=E8=87=AA=E5=8A=A8=E7=94=9F=E6=88=90=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=96=B0=E9=80=BB=E8=BE=91=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_tool_management/models/base.py | 13 ++- sf_tool_management/views/tool_base_views.xml | 103 +++++++++---------- sf_tool_management/wizard/wizard.py | 2 +- 3 files changed, 58 insertions(+), 60 deletions(-) diff --git a/sf_tool_management/models/base.py b/sf_tool_management/models/base.py index 2876bc8f..a464d5cb 100644 --- a/sf_tool_management/models/base.py +++ b/sf_tool_management/models/base.py @@ -32,7 +32,7 @@ class MachineTableToolChangingApply(models.Model): domain=[('product_id.name', '=', '功能刀具')], related='functional_tool_name_id.barcode_id') rfid = fields.Char('Rfid', related='functional_tool_name_id.rfid') - functional_tool_name_id = fields.Many2one('sf.functional.tool.assembly', domain=[('assemble_status', '=', '1')], + functional_tool_name_id = fields.Many2one('sf.functional.tool.assembly', domain=[('assemble_status', '=', '2')], string='功能刀具名称') functional_tool_type_id = fields.Many2one('sf.functional.cutting.tool.model', string='功能刀具类型', store=True, related='functional_tool_name_id.after_assembly_functional_tool_type_id') @@ -375,16 +375,17 @@ class FunctionalToolAssembly(models.Model): tool_loading_length = fields.Float(string='总长度(mm)', readonly=True) functional_tool_length = fields.Float(string='伸出长(mm)', readonly=True) effective_length = fields.Float(string='有效长(mm)', readonly=True) - loading_task_source = fields.Selection([('0', 'CAM装刀'), ('1', '机台换刀'), ('2', '按库存组装')], - string='装刀任务来源', readonly=True) + loading_task_source = fields.Selection( + [('0', 'CAM装刀'), ('1', '机台换刀'), ('2', '按库存组装'), ('3', '寿命到期组装')], + string='装刀任务来源', readonly=True) use_tool_time = fields.Datetime(string='用刀时间', readonly=True) production_line_name_id = fields.Many2one('sf.production.line', string='申请产线', readonly=True) machine_tool_name_id = fields.Many2one('maintenance.equipment', string='申请机台', readonly=True) machine_tool_code = fields.Char(string='机台号', readonly=True) applicant = fields.Char(string='申请人', readonly=True) apply_time = fields.Datetime(string='申请时间', default=fields.Datetime.now(), readonly=True) - assemble_status = fields.Selection([('0', '待组装'), ('1', '已组装')], string='组装状态', default='0', - tracking=True, readonly=True) + assemble_status = fields.Selection([('0', '待组装'), ('1', '组装中'), ('2', '已组装'), ('3', '已取消')], + string='组装状态', default='0', tracking=True, readonly=True) cutter_spacing_code_id = fields.Many2one('maintenance.equipment.tool', string='刀位号', readonly=True) whether_standard_knife = fields.Boolean(string='是否标准刀', default=True, readonly=True) reason_for_applying = fields.Char(string='申请原因', readonly=True) @@ -622,6 +623,8 @@ class FunctionalToolAssembly(models.Model): code = 'J' + datetime elif loading_task_source == '2': code = 'K' + datetime + elif loading_task_source == '3': + code = 'S' + datetime else: code = False functional_tool_assembly = self.env['sf.functional.tool.assembly'].sudo().search( diff --git a/sf_tool_management/views/tool_base_views.xml b/sf_tool_management/views/tool_base_views.xml index 390fcb15..480fc357 100644 --- a/sf_tool_management/views/tool_base_views.xml +++ b/sf_tool_management/views/tool_base_views.xml @@ -446,19 +446,19 @@ - + - + - - - - - - - +
+ +

@@ -496,20 +497,19 @@ - - - - - + + + - + + + + - + @@ -650,28 +650,6 @@ - - - - - - - - - - - - - - - - - - - - - - @@ -685,9 +663,27 @@ + + + + + + + + + + + + + @@ -705,20 +701,19 @@ + + + - - - - - - + - + + @@ -743,7 +738,7 @@ tree,form,search - {'search_default_no_assemble_status':1} + {'search_default_no_assemble_status':2} diff --git a/sf_tool_management/wizard/wizard.py b/sf_tool_management/wizard/wizard.py index aa5c645e..d38411bc 100644 --- a/sf_tool_management/wizard/wizard.py +++ b/sf_tool_management/wizard/wizard.py @@ -725,7 +725,7 @@ class FunctionalToolAssemblyOrder(models.TransientModel): 'after_assembly_effective_length': self.after_assembly_effective_length, 'L_D_number': self.L_D_number, 'hiding_length': self.hiding_length, - 'assemble_status': '1', + 'assemble_status': '2', 'tool_loading_person': self.env.user.name, 'image': self.image, 'tool_loading_time': fields.Datetime.now() From 29b9223a14958a061f7854cb0c9f97f55f809950 Mon Sep 17 00:00:00 2001 From: yuxianghui <3437689193@qq.com> Date: Thu, 5 Sep 2024 17:57:23 +0800 Subject: [PATCH 02/14] =?UTF-8?q?1=E3=80=81=E5=B0=86=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E5=88=80=E5=85=B7=E7=BB=84=E8=A3=85=E5=BC=B9=E7=AA=97=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E7=9A=84=E7=BB=84=E8=A3=85=E6=B5=81=E7=A8=8B=E4=BB=A5?= =?UTF-8?q?=E5=8F=8A=E5=85=B6=E4=B8=AD=E7=9B=B8=E5=85=B3=E7=9A=84=E4=B8=9A?= =?UTF-8?q?=E5=8A=A1=E9=80=BB=E8=BE=91=EF=BC=8C=E7=A7=BB=E5=8A=A8=E5=88=B0?= =?UTF-8?q?=E7=BB=84=E8=A3=85=E5=8D=95=E6=A8=A1=E5=9E=8B=E5=B9=B6=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E4=BC=98=E5=8C=96=EF=BC=9B2=E3=80=81=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E5=88=80=E5=85=B7=E7=BB=84=E8=A3=85=E5=8D=95=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E6=96=B0=E5=A2=9E=E9=83=A8=E5=88=86=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E7=9A=84=E8=87=AA=E5=8A=A8=E8=AE=A1=E7=AE=97=E6=96=B9=E6=B3=95?= =?UTF-8?q?=EF=BC=9B=E6=96=B0=E5=A2=9E=E9=83=A8=E5=88=86=E7=89=A9=E6=96=99?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_tool_management/models/base.py | 394 +++++++++++--- sf_tool_management/models/stock.py | 189 +++++++ sf_tool_management/views/tool_base_views.xml | 112 ++-- sf_tool_management/wizard/wizard.py | 526 ++++++------------- sf_tool_management/wizard/wizard_view.xml | 8 +- 5 files changed, 764 insertions(+), 465 deletions(-) diff --git a/sf_tool_management/models/base.py b/sf_tool_management/models/base.py index a464d5cb..2255f68f 100644 --- a/sf_tool_management/models/base.py +++ b/sf_tool_management/models/base.py @@ -32,7 +32,7 @@ class MachineTableToolChangingApply(models.Model): domain=[('product_id.name', '=', '功能刀具')], related='functional_tool_name_id.barcode_id') rfid = fields.Char('Rfid', related='functional_tool_name_id.rfid') - functional_tool_name_id = fields.Many2one('sf.functional.tool.assembly', domain=[('assemble_status', '=', '2')], + functional_tool_name_id = fields.Many2one('sf.functional.tool.assembly', domain=[('assemble_status', '=', '1')], string='功能刀具名称') functional_tool_type_id = fields.Many2one('sf.functional.cutting.tool.model', string='功能刀具类型', store=True, related='functional_tool_name_id.after_assembly_functional_tool_type_id') @@ -358,16 +358,51 @@ class FunctionalToolAssembly(models.Model): for obj in self: obj.name = obj.assembly_order_code - code = fields.Char('功能刀具编码', readonly=True) rfid = fields.Char('Rfid', readonly=True) - tool_groups_id = fields.Many2one('sf.tool.groups', '刀具组', readonly=True) + tool_groups_id = fields.Many2one('sf.tool.groups', '刀具组', store=True, compute='_compute_inventory_num') name = fields.Char(string='名称', readonly=True, compute='_compute_name') assembly_order_code = fields.Char(string='组装单编码', readonly=True) functional_tool_name_id = fields.Many2one('product.product', string='功能刀具', readonly=True) - functional_tool_name = fields.Char(string='功能刀具名称', readonly=True) - functional_tool_type_id = fields.Many2one('sf.functional.cutting.tool.model', string='功能刀具类型', readonly=True, - group_expand='_read_group_functional_tool_type_ids') + functional_tool_name = fields.Char(string='功能刀具名称', readonly=True, required=True) + tool_inventory_id = fields.Many2one('sf.tool.inventory', string='功能刀具清单', store=True, + compute='_compute_functional_tool_name') + + @api.depends('functional_tool_name') + def _compute_functional_tool_name(self): + for item in self: + if item.functional_tool_name: + inventory = self.env['sf.tool.inventory'].sudo().search([('name', '=', item.functional_tool_name)]) + if inventory: + item.tool_inventory_id = inventory.id + item.after_assembly_functional_tool_name = item.functional_tool_name # 组装后名称 + item.functional_tool_type_id = item.tool_inventory_id.functional_cutting_tool_model_id.id + item.tool_groups_id = item.tool_inventory_id.tool_groups_id.id # 刀具组 + item.after_assembly_functional_tool_type_id = item.tool_inventory_id.functional_cutting_tool_model_id.id + item.after_assembly_functional_tool_diameter = item.tool_inventory_id.diameter # 直径 + item.after_assembly_knife_tip_r_angle = item.tool_inventory_id.angle # R角 + item.after_assembly_tool_loading_length = item.tool_inventory_id.tool_length # 总长度 + item.after_assembly_functional_tool_length = item.tool_inventory_id.extension # 伸出长度 + item.after_assembly_max_lifetime_value = item.tool_inventory_id.life_span # 最大寿命 + + @api.depends('tool_inventory_id', 'tool_inventory_id.functional_cutting_tool_model_id', 'tool_inventory_id.angle', + 'tool_inventory_id.tool_groups_id', 'tool_inventory_id.diameter', 'tool_inventory_id.tool_length', + 'tool_inventory_id.extension', 'tool_inventory_id.life_span') + def _compute_inventory_num(self): + for item in self: + if item.tool_inventory_id: + item.functional_tool_type_id = item.tool_inventory_id.functional_cutting_tool_model_id.id + item.tool_groups_id = item.tool_inventory_id.tool_groups_id.id # 刀具组 + item.after_assembly_functional_tool_type_id = item.tool_inventory_id.functional_cutting_tool_model_id.id + item.after_assembly_functional_tool_diameter = item.tool_inventory_id.diameter # 直径 + item.after_assembly_knife_tip_r_angle = item.tool_inventory_id.angle # R角 + item.after_assembly_tool_loading_length = item.tool_inventory_id.tool_length # 总长度 + item.after_assembly_functional_tool_length = item.tool_inventory_id.extension # 伸出长度 + item.after_assembly_max_lifetime_value = item.tool_inventory_id.life_span # 最大寿命 + + functional_tool_type_id = fields.Many2one('sf.functional.cutting.tool.model', string='功能刀具类型', + group_expand='_read_group_functional_tool_type_ids', store=True, + compute='_compute_inventory_num') functional_tool_diameter = fields.Float(string='功能刀具直径(mm)', readonly=True) knife_tip_r_angle = fields.Float(string='刀尖R角(mm)', readonly=True) coarse_middle_thin = fields.Selection([("1", "粗"), ('2', '中'), ('3', '精')], string='粗/中/精', readonly=True) @@ -384,7 +419,7 @@ class FunctionalToolAssembly(models.Model): machine_tool_code = fields.Char(string='机台号', readonly=True) applicant = fields.Char(string='申请人', readonly=True) apply_time = fields.Datetime(string='申请时间', default=fields.Datetime.now(), readonly=True) - assemble_status = fields.Selection([('0', '待组装'), ('1', '组装中'), ('2', '已组装'), ('3', '已取消')], + assemble_status = fields.Selection([('0', '待组装'), ('01', '组装中'), ('1', '已组装'), ('3', '已取消')], string='组装状态', default='0', tracking=True, readonly=True) cutter_spacing_code_id = fields.Many2one('maintenance.equipment.tool', string='刀位号', readonly=True) whether_standard_knife = fields.Boolean(string='是否标准刀', default=True, readonly=True) @@ -393,7 +428,7 @@ class FunctionalToolAssembly(models.Model): alarm_value = fields.Integer(string='报警值(min)', readonly=True) used_value = fields.Integer(string='已使用值(min)', readonly=True) - image = fields.Binary('图片', readonly=True) + image = fields.Binary('图片', readonly=False) @api.model def _read_group_functional_tool_type_ids(self, categories, domain, order): @@ -403,8 +438,11 @@ class FunctionalToolAssembly(models.Model): # 刀具物料信息 # ==============整体式刀具型号============= - integral_freight_barcode_id = fields.Many2one('sf.shelf.location', string='整体式刀具货位') - integral_lot_id = fields.Many2one('stock.lot', string='整体式刀具批次') + integral_freight_barcode_id = fields.Many2one('sf.shelf.location', string='整体式刀具货位', + domain="[('product_id.cutting_tool_material_id.name', '=', '整体式刀具'),('product_num', '>', 0)]") + integral_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='整体式刀具批次', + domain="[('shelf_location_id', '=', integral_freight_barcode_id)]") + integral_lot_id = fields.Many2one('stock.lot', string='整体式刀具批次', related='integral_freight_lot_id.lot_id') integral_product_id = fields.Many2one('product.product', string='整体式刀具名称', compute='_compute_integral_product_id', store=True) cutting_tool_integral_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='整体式刀具型号', @@ -414,15 +452,25 @@ class FunctionalToolAssembly(models.Model): sf_tool_brand_id_1 = fields.Many2one('sf.machine.brand', string='整体式刀具品牌', related='integral_product_id.brand_id') + @api.onchange('integral_freight_barcode_id') + def _onchange_integral_freight_barcode_id(self): + for item in self: + item.integral_freight_lot_id = False + @api.depends('integral_lot_id') def _compute_integral_product_id(self): for item in self: if item.integral_lot_id: item.integral_product_id = item.integral_lot_id.product_id.id + else: + item.integral_product_id = False # =================刀片型号============= - blade_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀片货位') - blade_lot_id = fields.Many2one('stock.lot', string='刀片批次') + blade_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀片货位', + domain="[('product_id.cutting_tool_material_id.name', '=', '刀片'),('product_num', '>', 0)]") + blade_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='刀片批次', + domain="[('shelf_location_id', '=', blade_freight_barcode_id)]") + blade_lot_id = fields.Many2one('stock.lot', string='刀片批次', related='blade_freight_lot_id.lot_id') blade_product_id = fields.Many2one('product.product', string='刀片名称', compute='_compute_blade_product_id', store=True) cutting_tool_blade_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀片型号', @@ -431,15 +479,25 @@ class FunctionalToolAssembly(models.Model): related='blade_product_id.specification_id') sf_tool_brand_id_2 = fields.Many2one('sf.machine.brand', '刀片品牌', related='blade_product_id.brand_id') + @api.onchange('blade_freight_barcode_id') + def _onchange_blade_freight_barcode_id(self): + for item in self: + item.blade_freight_lot_id = False + @api.depends('blade_lot_id') def _compute_blade_product_id(self): for item in self: if item.blade_lot_id: item.blade_product_id = item.blade_lot_id.product_id.id + else: + item.blade_product_id = False # ==============刀杆型号================ - bar_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀杆货位') - bar_lot_id = fields.Many2one('stock.lot', string='刀杆批次') + bar_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀杆货位', + domain="[('product_id.cutting_tool_material_id.name', '=', '刀杆'),('product_num', '>', 0)]") + bar_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='刀杆批次', + domain="[('shelf_location_id', '=', bar_freight_barcode_id)]") + bar_lot_id = fields.Many2one('stock.lot', string='刀杆批次', related='bar_freight_lot_id.lot_id') bar_product_id = fields.Many2one('product.product', string='刀杆名称', compute='_compute_bar_product_id', store=True) cutting_tool_cutterbar_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀杆型号', @@ -448,15 +506,25 @@ class FunctionalToolAssembly(models.Model): related='bar_product_id.specification_id') sf_tool_brand_id_3 = fields.Many2one('sf.machine.brand', '刀杆品牌', related='bar_product_id.brand_id') + @api.onchange('bar_freight_barcode_id') + def _onchange_bar_freight_barcode_id(self): + for item in self: + item.bar_freight_lot_id = False + @api.depends('bar_lot_id') def _compute_bar_product_id(self): for item in self: if item.bar_lot_id: item.bar_product_id = item.bar_lot_id.product_id.id + else: + item.bar_product_id = False # =============刀盘型号================ - pad_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀盘货位') - pad_lot_id = fields.Many2one('stock.lot', string='刀盘批次') + pad_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀盘货位', + domain="[('product_id.cutting_tool_material_id.name', '=', '刀盘'),('product_num', '>', 0)]") + pad_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='刀盘批次', + domain="[('shelf_location_id', '=', pad_freight_barcode_id)]") + pad_lot_id = fields.Many2one('stock.lot', string='刀盘批次', related='pad_freight_lot_id.lot_id') pad_product_id = fields.Many2one('product.product', string='刀盘名称', compute='_compute_pad_product_id', store=True) cutting_tool_cutterpad_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀盘型号', @@ -465,15 +533,24 @@ class FunctionalToolAssembly(models.Model): related='pad_product_id.specification_id') sf_tool_brand_id_4 = fields.Many2one('sf.machine.brand', '刀盘品牌', related='pad_product_id.brand_id') + @api.onchange('pad_freight_barcode_id') + def _onchange_pad_freight_barcode_id(self): + for item in self: + item.pad_freight_lot_id = False + @api.depends('pad_lot_id') def _compute_pad_product_id(self): for item in self: if item.pad_lot_id: item.pad_product_id = item.pad_lot_id.product_id.id + else: + item.pad_product_id = False # ==============刀柄型号============== handle_freight_rfid = fields.Char('刀柄Rfid', compute='_compute_handle_product_id', store=True) - handle_code_id = fields.Many2one('stock.lot', '刀柄序列号') + handle_code_id = fields.Many2one('stock.lot', '刀柄序列号', + domain=[('product_id.cutting_tool_material_id.name', '=', '刀柄'), + ('tool_material_status', '=', '可用')]) handle_product_id = fields.Many2one('product.product', string='刀柄名称', compute='_compute_handle_product_id', store=True) cutting_tool_cutterhandle_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀柄型号', @@ -488,13 +565,18 @@ class FunctionalToolAssembly(models.Model): if item.handle_code_id: item.handle_product_id = item.handle_code_id.product_id.id item.handle_freight_rfid = item.handle_code_id.rfid + item.rfid = item.handle_freight_rfid else: item.handle_product_id = False item.handle_freight_rfid = False + item.rfid = False # ==============夹头型号============== - chuck_freight_barcode_id = fields.Many2one('sf.shelf.location', string='夹头货位') - chuck_lot_id = fields.Many2one('stock.lot', string='夹头批次') + chuck_freight_barcode_id = fields.Many2one('sf.shelf.location', string='夹头货位', + domain="[('product_id.cutting_tool_material_id.name', '=', '夹头'),('product_num', '>', 0)]") + chuck_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='夹头批次', + domain="[('shelf_location_id', '=', chuck_freight_barcode_id)]") + chuck_lot_id = fields.Many2one('stock.lot', string='夹头批次', related='chuck_freight_lot_id.lot_id') chuck_product_id = fields.Many2one('product.product', string='夹头名称', compute='_compute_chuck_product_id', store=True) cutting_tool_cutterhead_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='夹头型号', @@ -503,11 +585,18 @@ class FunctionalToolAssembly(models.Model): related='chuck_product_id.specification_id') sf_tool_brand_id_6 = fields.Many2one('sf.machine.brand', '夹头品牌', related='chuck_product_id.brand_id') + @api.onchange('chuck_freight_barcode_id') + def _onchange_chuck_freight_barcode_id(self): + for item in self: + item.chuck_freight_lot_id = False + @api.depends('chuck_lot_id') def _compute_chuck_product_id(self): for item in self: if item.chuck_lot_id: item.chuck_product_id = item.chuck_lot_id.product_id.id + else: + item.chuck_product_id = False # ==================待删除字段================== integral_freight_barcode = fields.Char('整体式刀具货位') @@ -526,30 +615,37 @@ class FunctionalToolAssembly(models.Model): handle_name = fields.Char('') chuck_code_id = fields.Many2one('stock.lot', '夹头序列号') chuck_name = fields.Char('') + # ====================暂时无用字段========================= + after_assembly_used_value = fields.Integer(string='组装后已使用值(min)', readonly=True) # ============================================== # 组装功能刀具参数信息 start_preset_bool = fields.Boolean('开始预调', default=False) barcode_id = fields.Many2one('stock.lot', string='功能刀具序列号', readonly=True) - after_assembly_functional_tool_name = fields.Char(string='组装后功能刀具名称', readonly=True) - after_assembly_functional_tool_type_id = fields.Many2one('sf.functional.cutting.tool.model', - string='组装后功能刀具类型', readonly=True) - after_assembly_functional_tool_diameter = fields.Float(string='组装后功能刀具直径(mm)', readonly=True, - digits=(10, 3)) - after_assembly_knife_tip_r_angle = fields.Float(string='组装后刀尖R角(mm)', readonly=True, digits=(10, 3)) - after_assembly_new_former = fields.Selection([('0', '新'), ('1', '旧')], string='组装后新/旧', readonly=True) + after_assembly_functional_tool_name = fields.Char(string='组装后功能刀具名称', store=True, + compute='_compute_functional_tool_name') + after_assembly_functional_tool_type_id = fields.Many2one('sf.functional.cutting.tool.model', store=True, + string='组装后功能刀具类型', + compute='_compute_inventory_num') + after_assembly_functional_tool_diameter = fields.Float(string='组装后功能刀具直径(mm)', digits=(10, 3), store=True, + compute='_compute_inventory_num') + after_assembly_knife_tip_r_angle = fields.Float(string='组装后刀尖R角(mm)', digits=(10, 3), store=True, + compute='_compute_inventory_num') + after_assembly_new_former = fields.Selection([('0', '新'), ('1', '旧')], string='组装后新/旧', default='0') cut_time = fields.Integer(string='已切削时间(min)', readonly=True) cut_length = fields.Float(string='已切削长度(mm)', readonly=True) cut_number = fields.Integer(string='已切削次数', readonly=True) after_assembly_whether_standard_knife = fields.Boolean(string='组装后是否标准刀', default=True, readonly=True) after_assembly_coarse_middle_thin = fields.Selection([("1", "粗"), ('2', '中'), ('3', '精')], - string='组装后粗/中/精', readonly=True) - after_assembly_max_lifetime_value = fields.Integer(string='组装后最大寿命值(min)', readonly=True) - after_assembly_alarm_value = fields.Integer(string='组装后报警值(min)', readonly=True) - after_assembly_used_value = fields.Integer(string='组装后已使用值(min)', readonly=True) - after_assembly_tool_loading_length = fields.Float(string='组装后总长度(mm)', readonly=True, digits=(10, 3)) - after_assembly_handle_length = fields.Float(string='组装后刀柄长度(mm)', readonly=True, digits=(10, 3)) - after_assembly_functional_tool_length = fields.Float(string='组装后伸出长(mm)', readonly=True, digits=(10, 3)) + string='组装后粗/中/精', default='3') + after_assembly_max_lifetime_value = fields.Integer(string='组装后最大寿命值(min)', store=True, + compute='_compute_inventory_num') + after_assembly_alarm_value = fields.Integer(string='组装后报警值(min)') + after_assembly_tool_loading_length = fields.Float(string='组装后总长度(mm)', digits=(10, 3), store=True, + compute='_compute_inventory_num') + after_assembly_handle_length = fields.Float(string='组装后刀柄长度(mm)', digits=(10, 3)) + after_assembly_functional_tool_length = fields.Float(string='组装后伸出长(mm)', digits=(10, 3), store=True, + compute='_compute_inventory_num') after_assembly_effective_length = fields.Float(string='组装后有效长(mm)', readonly=True) L_D_number = fields.Float(string='L/D值(mm)', readonly=True) hiding_length = fields.Float(string='避空长(mm)', readonly=True) @@ -567,6 +663,44 @@ class FunctionalToolAssembly(models.Model): active = fields.Boolean(string='已归档', default=True) + code = fields.Char('功能刀具编码', compute='_compute_code') + + @api.onchange('handle_product_id') + def _onchange_after_assembly_handle_length(self): + for item in self: + if item: + if item.handle_product_id: + item.after_assembly_handle_length = item.handle_product_id.cutting_tool_shank_length + + @api.depends('after_assembly_functional_tool_type_id', 'cutting_tool_cutterhandle_model_id', + 'after_assembly_functional_tool_diameter', 'after_assembly_tool_loading_length', + 'after_assembly_knife_tip_r_angle', 'after_assembly_functional_tool_length', + 'after_assembly_handle_length') + def _compute_code(self): + for obj in self: + if obj.cutting_tool_cutterhandle_model_id: + code = obj.cutting_tool_cutterhandle_model_id.code.split('-', 1)[0] + str_1 = '%s-GNDJ-%s-D%sL%sR%sB%sH%s' % ( + code, obj.after_assembly_functional_tool_type_id.code, obj.after_assembly_functional_tool_diameter, + obj.after_assembly_tool_loading_length, obj.after_assembly_knife_tip_r_angle, + round(obj.after_assembly_functional_tool_length, 3), obj.after_assembly_handle_length) + obj.code = '%s-%s' % (str_1, self._get_code_1(str_1)) + else: + obj.code = '' + + def _get_code_1(self, str_2): + functional_tool_assembly = self.env['sf.functional.cutting.tool.entity'].sudo().search( + [('code', 'like', str_2)], + limit=1, + order="id desc" + ) + if not functional_tool_assembly: + num = "%03d" % 1 + else: + m = int(functional_tool_assembly.code[-3:]) + 1 + num = "%03d" % m + return num + def action_open_reference1(self): self.ensure_one() return { @@ -576,41 +710,175 @@ class FunctionalToolAssembly(models.Model): 'res_id': self.id, } - def put_start_preset(self): - self.search([('start_preset_bool', '=', True)]).write({'start_preset_bool': False}) + def start_preset(self): + """ + 开始组装 + """ + # 设置初始值 + self.start_preset_bool = True + self.assemble_status = '01' + self.after_assembly_coarse_middle_thin = '3' + self.after_assembly_new_former = '0' + + # todo 调用功能刀具名称对应的清单的BOM获取对应刀具物料信息 + + def functional_tool_assembly(self): + """ + 功能刀具组装 + :return: + """ + logging.info('功能刀具开始组装!') + # 对物料做必填判断 + self.materials_must_be_judged() + + product_id = self.env['product.product'] + # 创建组装入库单 + # 创建功能刀具批次/序列号记录 + stock_lot = product_id.create_assemble_warehouse_receipt(self) + # 封装功能刀具数据,用于创建功能刀具记录 + desc_2 = self.get_desc(stock_lot, self) + # 创建功能刀具组装入库单 + self.env['stock.picking'].create_tool_stocking_picking(stock_lot, self) + # 创建刀具物料出库单 + self.env['stock.picking'].create_tool_stocking_picking1(self) + + # ============================创建功能刀具列表、安全库存记录=============================== + # 创建功能刀具列表记录 + record_1 = self.env['sf.functional.cutting.tool.entity'].create(desc_2) + # 创建安全库存信息 + self.env['sf.real.time.distribution.of.functional.tools'].create_or_edit_safety_stock({ + 'functional_name_id': self.tool_inventory_id.id + }, record_1) + + # =====================修改功能刀具组装单、机床换刀申请、CAM工单程序用刀计划的状态============== + if self.sf_machine_table_tool_changing_apply_id: + # 修改机床换刀申请的状态 + self.env['sf.machine.table.tool.changing.apply'].sudo().search([ + ('id', '=', self.sf_machine_table_tool_changing_apply_id.id) + ]).write({'status': '3'}) + elif self.sf_cam_work_order_program_knife_plan_id: + # 修改CAM工单程序用刀计划状态 + cam_plan = self.env['sf.cam.work.order.program.knife.plan'].sudo().search([ + ('id', '=', self.sf_cam_work_order_program_knife_plan_id.id) + ]) + cam_plan.write({'plan_execute_status': '2'}) + + # ============修改组装单状态为已组装=================================‘ self.write({ - 'after_assembly_tool_loading_length': 0, - 'after_assembly_functional_tool_diameter': 0, - 'after_assembly_knife_tip_r_angle': 0, - 'start_preset_bool': True + 'assemble_status': '1', + 'start_preset_bool': False, + 'tool_loading_person': self.env.user.name, + 'tool_loading_time': fields.Datetime.now() }) + + logging.info('功能刀具组装完成!') + + def materials_must_be_judged(self): + """ + 功能刀具组装必填判断 + """ + # 物料必填校验 + if not self.handle_code_id: + raise ValidationError('缺少【刀柄】物料信息!') + if not self.integral_product_id and not self.blade_product_id: + raise ValidationError('【整体式刀具】和【刀片】必须填写一个!') + if self.blade_product_id: + if not self.bar_product_id and not self.pad_product_id: + raise ValidationError('【刀盘】和【刀杆】必须填写一个!') + # 组装参数必填校验 + if self.after_assembly_functional_tool_length == 0: + raise ValidationError('组装参数信息【伸出长】不能为0!') + if self.after_assembly_max_lifetime_value == 0: + raise ValidationError('组装参数信息【最大寿命值】不能为0!') + if self.after_assembly_alarm_value == 0: + raise ValidationError('组装参数信息【报警值】不能为0!') + # if self.after_assembly_effective_length == 0: + # raise ValidationError('组装参数信息【有效长】不能为0!!!') + # if self.hiding_length == 0: + # raise ValidationError('组装参数信息【避空长】不能为0!!!') + if self.after_assembly_functional_tool_diameter == 0: + raise ValidationError('组装参数信息【刀具直径】不能为0!') + if self.after_assembly_tool_loading_length == 0: + raise ValidationError('组装参数信息【总长度】不能为0!!!') + if self.after_assembly_handle_length == 0: + raise ValidationError('组装参数信息【刀柄长度】不能为0!') + if self.after_assembly_tool_loading_length < self.after_assembly_handle_length: + raise ValidationError('组装参数信息【刀柄长度】不能大于【总长度】!') + + def get_desc(self, stock_lot, functional_tool_assembly_id): return { - 'type': 'ir.actions.act_window', - 'res_model': 'sf.functional.tool.assembly.order', - 'name': '功能刀具组装单', - 'view_mode': 'form', - 'target': 'new', - 'context': {'default_name': self.name, - 'default_assembly_order_code': self.assembly_order_code, - 'default_production_line_name_id': self.production_line_name_id.id, - 'default_machine_tool_name_id': self.machine_tool_name_id.id, - 'default_cutter_spacing_code_id': self.cutter_spacing_code_id.id, - 'default_functional_tool_name': self.functional_tool_name, - 'default_functional_tool_type_id': self.functional_tool_type_id.id, - 'default_tool_groups_id': self.tool_groups_id.id, - 'default_functional_tool_diameter': self.functional_tool_diameter, - 'default_knife_tip_r_angle': self.knife_tip_r_angle, - 'default_tool_loading_length': self.tool_loading_length, - 'default_functional_tool_length': self.functional_tool_length, - 'default_effective_length': self.effective_length, - 'default_whether_standard_knife': self.whether_standard_knife, - 'default_coarse_middle_thin': self.coarse_middle_thin, - 'default_new_former': self.new_former, - 'default_use_tool_time': self.use_tool_time, - 'default_reason_for_applying': self.reason_for_applying - } + 'barcode_id': stock_lot.id, + 'code': self.code, + 'name': self.tool_inventory_id.name, + 'tool_name_id': self.tool_inventory_id.id, + 'rfid': self.rfid, + 'tool_groups_id': self.tool_groups_id.id, + 'functional_tool_name_id': functional_tool_assembly_id.id, + 'sf_cutting_tool_type_id': self.after_assembly_functional_tool_type_id.id, + 'cutting_tool_integral_model_id': self.integral_product_id.id, + 'cutting_tool_blade_model_id': self.blade_product_id.id, + 'cutting_tool_cutterbar_model_id': self.bar_product_id.id, + 'cutting_tool_cutterpad_model_id': self.pad_product_id.id, + 'cutting_tool_cutterhandle_model_id': self.handle_product_id.id, + 'cutting_tool_cutterhead_model_id': self.chuck_product_id.id, + + 'functional_tool_diameter': self.after_assembly_functional_tool_diameter, + 'knife_tip_r_angle': self.after_assembly_knife_tip_r_angle, + 'coarse_middle_thin': self.after_assembly_coarse_middle_thin, + 'new_former': self.after_assembly_new_former, + 'tool_loading_length': self.after_assembly_tool_loading_length, + 'handle_length': self.after_assembly_handle_length, + 'functional_tool_length': self.after_assembly_functional_tool_length, + 'effective_length': self.after_assembly_effective_length, + + 'max_lifetime_value': self.after_assembly_max_lifetime_value, + 'alarm_value': self.after_assembly_alarm_value, + 'used_value': self.after_assembly_used_value, + 'whether_standard_knife': self.after_assembly_whether_standard_knife, + 'L_D_number': self.L_D_number, + 'hiding_length': self.hiding_length, + 'cut_time': self.cut_time, + 'cut_length': self.cut_length, + 'cut_number': self.cut_number, + 'image': self.image, } + # def put_start_preset(self): + # # 打开组装弹窗开始组装 + # self.search([('start_preset_bool', '=', True)]).write({'start_preset_bool': False}) + # self.write({ + # 'after_assembly_tool_loading_length': 0, + # 'after_assembly_functional_tool_diameter': 0, + # 'after_assembly_knife_tip_r_angle': 0, + # 'start_preset_bool': True + # }) + # return { + # 'type': 'ir.actions.act_window', + # 'res_model': 'sf.functional.tool.assembly.order', + # 'name': '功能刀具组装单', + # 'view_mode': 'form', + # 'target': 'new', + # 'context': {'default_name': self.name, + # 'default_assembly_order_code': self.assembly_order_code, + # 'default_production_line_name_id': self.production_line_name_id.id, + # 'default_machine_tool_name_id': self.machine_tool_name_id.id, + # 'default_cutter_spacing_code_id': self.cutter_spacing_code_id.id, + # 'default_functional_tool_name': self.functional_tool_name, + # 'default_functional_tool_type_id': self.functional_tool_type_id.id, + # 'default_tool_groups_id': self.tool_groups_id.id, + # 'default_functional_tool_diameter': self.functional_tool_diameter, + # 'default_knife_tip_r_angle': self.knife_tip_r_angle, + # 'default_tool_loading_length': self.tool_loading_length, + # 'default_functional_tool_length': self.functional_tool_length, + # 'default_effective_length': self.effective_length, + # 'default_whether_standard_knife': self.whether_standard_knife, + # 'default_coarse_middle_thin': self.coarse_middle_thin, + # 'default_new_former': self.new_former, + # 'default_use_tool_time': self.use_tool_time, + # 'default_reason_for_applying': self.reason_for_applying + # } + # } + def _get_code(self, loading_task_source): """ 自动生成组装单编码 diff --git a/sf_tool_management/models/stock.py b/sf_tool_management/models/stock.py index a179c7d7..22a7fa72 100644 --- a/sf_tool_management/models/stock.py +++ b/sf_tool_management/models/stock.py @@ -1,4 +1,9 @@ +import logging + +from datetime import timedelta, datetime, date + from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError class ShelfLocation(models.Model): @@ -58,3 +63,187 @@ class StockPicking(models.Model): if move_lines: self.env['stock.move.line'].sudo().button_function_tool_use_verify(move_lines) return res + + def create_tool_stocking_picking(self, stock_lot, obj): + """ + 创建功能刀具组装入库单 + """ + # 获取名称为刀具组装入库的作业类型 + picking_type_id = self.env['stock.picking.type'].sudo().search([('name', '=', '刀具组装入库')]) + # 创建刀具组装入库单 + picking_id = self.env['stock.picking'].create({ + 'name': self._get_name_stock(picking_type_id), + 'picking_type_id': picking_type_id.id, + 'location_id': picking_type_id.default_location_src_id.id, + 'location_dest_id': picking_type_id.default_location_dest_id.id, + 'origin': obj.assembly_order_code + }) + # 创建作业详情对象记录,并绑定到刀具组装入库单 + self.env['stock.move.line'].create({ + 'picking_id': picking_id.id, + 'product_id': stock_lot.product_id.id, + 'location_id': picking_id.location_id.id, + 'location_dest_id': picking_id.location_dest_id.id, + 'lot_id': stock_lot.id, + 'install_tool_time': fields.Datetime.now(), + 'qty_done': 1, + 'functional_tool_name_id': obj.id, + 'functional_tool_type_id': obj.functional_tool_type_id.id, + 'diameter': obj.after_assembly_functional_tool_diameter, + 'knife_tip_r_angle': obj.after_assembly_knife_tip_r_angle, + 'code': obj.code, + 'rfid': obj.rfid, + 'functional_tool_name': obj.after_assembly_functional_tool_name, + 'tool_groups_id': obj.tool_groups_id.id + }) + # 将刀具组装入库单的状态更改为就绪 + picking_id.action_confirm() + picking_id.button_validate() + + def _get_name_stock(self, picking_type_id): + name = picking_type_id.sequence_id.prefix + str( + datetime.strptime(str(fields.Date.today()), "%Y-%m-%d").strftime("%Y%m%d")) + stock_id = self.env['stock.picking'].sudo().search( + [('name', 'like', name), ('picking_type_id', '=', picking_type_id.id)], + limit=1, + order="id desc" + ) + if not stock_id: + num = "%03d" % 1 + else: + m = int(stock_id.name[-3:]) + 1 + num = "%03d" % m + return name + str(num) + + def create_tool_stocking_picking1(self, obj): + """ + 创建刀具物料出库单 + """ + # 获取名称为内部调拨的作业类型 + picking_type_id = self.env['stock.picking.type'].sudo().search([('name', '=', '内部调拨')]) + # 创建刀具物料出库单 + picking_id = self.env['stock.picking'].create({ + 'name': self._get_name_stock1(picking_type_id), + 'picking_type_id': picking_type_id.id, + 'location_id': self.env['stock.location'].search([('name', '=', '刀具房')]).id, + 'location_dest_id': self.env['stock.location'].search([('name', '=', '刀具组装位置')]).id, + 'origin': obj.assembly_order_code + }) + # =============刀具物料出库=================== + stock_move_id = self.env['stock.move'] + datas = {'data': [], 'picking_id': picking_id} + if obj.handle_code_id: + # 修改刀柄序列号状态为【在用】 + obj.handle_code_id.sudo().write({'tool_material_status': '在用'}) + datas['data'].append( + {'current_location_id': self.env['sf.shelf.location'], 'lot_id': obj.handle_code_id}) + if obj.integral_product_id: + datas['data'].append( + {'current_location_id': obj.integral_freight_barcode_id, 'lot_id': obj.integral_freight_lot_id.lot_id}) + if obj.blade_product_id: + datas['data'].append( + {'current_location_id': obj.blade_freight_barcode_id, 'lot_id': obj.blade_freight_lot_id.lot_id}) + if obj.bar_product_id: + datas['data'].append( + {'current_location_id': obj.bar_freight_barcode_id, 'lot_id': obj.bar_freight_lot_id.lot_id}) + if obj.pad_product_id: + datas['data'].append( + {'current_location_id': obj.pad_freight_barcode_id, 'lot_id': obj.pad_freight_lot_id.lot_id}) + if obj.chuck_product_id: + datas['data'].append( + {'current_location_id': obj.chuck_freight_barcode_id, 'lot_id': obj.chuck_freight_lot_id.lot_id}) + # 创建刀具物料出库库存移动记录 + stock_move_id.create_tool_material_stock_moves(datas) + # 将刀具物料出库库单的状态更改为就绪 + picking_id.action_confirm() + # 修改刀具物料出库移动历史记录 + stock_move_id.write_tool_material_stock_move_lines(datas) + # 设置数量,并验证完成 + picking_id.action_set_quantities_to_reservation() + picking_id.button_validate() + logging.info(f'刀具物料调拨单状态:{picking_id.state}') + + def _get_name_stock1(self, picking_type_id): + name = f'{picking_type_id.sequence_id.prefix}DJ/{date.today().strftime("%y")}' + stock_id = self.env['stock.picking'].sudo().search( + [('name', 'like', name), ('picking_type_id', '=', picking_type_id.id)], + limit=1, + order="id desc" + ) + if not stock_id: + num = "%05d" % 1 + else: + m = int(stock_id.name[-5:]) + 1 + num = "%05d" % m + return name + str(num) + + +class StockMove(models.Model): + _inherit = 'stock.move' + + def create_tool_material_stock_moves(self, datas): + picking_id = datas['picking_id'] + data = datas['data'] + stock_move_ids = [] + for res in data: + if res: + # 创建库存移动记录 + stock_move_id = self.env['stock.move'].sudo().create({ + 'name': picking_id.name, + 'picking_id': picking_id.id, + 'product_id': res['lot_id'].product_id.id, + 'location_id': picking_id.location_id.id, + 'location_dest_id': picking_id.location_dest_id.id, + 'product_uom_qty': 1.00, + 'reserved_availability': 1.00 + }) + stock_move_ids.append(stock_move_id) + return stock_move_ids + + def write_tool_material_stock_move_lines(self, datas): + picking_id = datas['picking_id'] + data = datas['data'] + move_line_ids = picking_id.move_line_ids + for move_line_id in move_line_ids: + for res in data: + if move_line_id.lot_id.product_id == res['lot_id'].product_id: + move_line_id.write({ + 'current_location_id': res.get('current_location_id').id, + 'lot_id': res.get('lot_id').id + }) + return True + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + def create_assemble_warehouse_receipt(self, obj): + """ + 创建功能刀具批次/序列号记录 + """ + product_id = self.env['product.product'].search([('categ_type', '=', '功能刀具'), ('tracking', '=', 'serial')]) + if not product_id: + logging.info('没有搜索到功能刀具产品:%s' % product_id) + raise ValidationError('没有找到按唯一序列号追溯的功能刀具产品信息!') + stock_lot = self.env['stock.lot'].create({ + 'name': self.get_stock_lot_name(obj), + 'product_id': product_id[0].id, + 'company_id': self.env.company.id + }) + return stock_lot + + def get_stock_lot_name(self, obj): + """ + 生成功能刀具序列号 + """ + company = obj.cutting_tool_cutterhandle_model_id.code.split('-', 1)[0] + new_time = datetime.strptime(str(fields.Date.today()), "%Y-%m-%d").strftime("%Y%m%d") + code = '%s-GNDJ-%s-%s' % (company, obj.after_assembly_functional_tool_type_id.code, new_time) + stock_lot_id = self.env['stock.lot'].sudo().search( + [('name', 'like', code)], limit=1, order="id desc") + if not stock_lot_id: + num = "%03d" % 1 + else: + m = int(stock_lot_id.name[-3:]) + 1 + num = "%03d" % m + return '%s-%s' % (code, num) diff --git a/sf_tool_management/views/tool_base_views.xml b/sf_tool_management/views/tool_base_views.xml index 480fc357..8a3c3a73 100644 --- a/sf_tool_management/views/tool_base_views.xml +++ b/sf_tool_management/views/tool_base_views.xml @@ -450,15 +450,15 @@ - - - - - - - - - + + + + + + + + + @@ -469,15 +469,17 @@
-
-
- +

@@ -510,7 +513,7 @@ - + @@ -524,8 +527,10 @@ - - + + - + - + - - + +
+ options="{'no_create': True, 'no_quick_create': True}" + attrs="{'readonly': [('assemble_status', 'in', ['1','2'])]}"/> @@ -569,14 +577,18 @@
- +
- - + + + @@ -585,16 +597,19 @@
- + + attrs="{'invisible': [('integral_freight_lot_id', '=', False),'|','|','|', ('blade_freight_lot_id', '!=', False),('bar_freight_lot_id', '!=', False),('pad_freight_lot_id', '!=', False),('assemble_status', 'not in', ['0','01'])]}">
- - + + + @@ -602,13 +617,16 @@
+ attrs="{'invisible': [('blade_freight_lot_id', '=', False),'|', ('integral_freight_lot_id', '!=', False),('assemble_status', 'not in', ['0','01'])]}">
- - + + + @@ -617,14 +635,18 @@
- +
- - + + + @@ -632,14 +654,18 @@
- +
- - + + + @@ -708,8 +734,10 @@ - - + + + @@ -738,7 +766,7 @@ tree,form,search - {'search_default_no_assemble_status':2} + {'search_default_no_assemble_status':[1,01]} diff --git a/sf_tool_management/wizard/wizard.py b/sf_tool_management/wizard/wizard.py index d38411bc..d1797855 100644 --- a/sf_tool_management/wizard/wizard.py +++ b/sf_tool_management/wizard/wizard.py @@ -598,361 +598,175 @@ class FunctionalToolAssemblyOrder(models.TransientModel): else: record.L_D_number = 0 - def functional_tool_assembly(self): - """ - 功能刀具组装 - :return: - """ - logging.info('功能刀具开始组装!') - # 获取组装单对象 - functional_tool_assembly = self.env['sf.functional.tool.assembly'].search([ - ('assembly_order_code', '=', self.assembly_order_code), - ('machine_tool_name_id', '=', self.machine_tool_name_id.id), - ('cutter_spacing_code_id', '=', self.cutter_spacing_code_id.id), - ('assemble_status', '=', '0'), - ]) - # 对物料做必填判断 - self.materials_must_be_judged() - - product_id = self.env['product.product'] - # 创建组装入库单 - # 创建功能刀具批次/序列号记录 - stock_lot = product_id.create_assemble_warehouse_receipt(self.id, functional_tool_assembly, self) - # 封装功能刀具数据,用于更新组装单信息 - desc_1 = self.get_desc_1(stock_lot) - # 封装功能刀具数据,用于创建功能刀具记录 - desc_2 = self.get_desc_2(stock_lot, functional_tool_assembly) - # 创建功能刀具组装入库单 - self.env['stock.picking'].create_tool_stocking_picking(stock_lot, functional_tool_assembly, self) - # 创建刀具物料出库单 - self.env['stock.picking'].create_tool_stocking_picking1(self) - - # ============================创建功能刀具列表、安全库存记录=============================== - # 创建功能刀具列表记录 - record_1 = self.env['sf.functional.cutting.tool.entity'].create(desc_2) - # 创建安全库存信息 - self.env['sf.real.time.distribution.of.functional.tools'].create_or_edit_safety_stock({ - 'functional_name_id': self.after_name_id.id - }, record_1) - - # =====================修改功能刀具组装单、机床换刀申请、CAM工单程序用刀计划的状态============== - # 修改功能刀具组装单信息 - functional_tool_assembly.write(desc_1) - if functional_tool_assembly.sf_machine_table_tool_changing_apply_id: - # 修改机床换刀申请的状态 - self.env['sf.machine.table.tool.changing.apply'].sudo().search([ - ('id', '=', functional_tool_assembly.sf_machine_table_tool_changing_apply_id.id) - ]).write({'status': '3'}) - elif functional_tool_assembly.sf_cam_work_order_program_knife_plan_id: - # 修改CAM工单程序用刀计划状态 - cam_plan = self.env['sf.cam.work.order.program.knife.plan'].sudo().search([ - ('id', '=', functional_tool_assembly.sf_cam_work_order_program_knife_plan_id.id) - ]) - cam_plan.write({'plan_execute_status': '2'}) - - logging.info('功能刀具组装完成!') - - # 关闭弹出窗口 - return {'type': 'ir.actions.act_window_close'} - - def materials_must_be_judged(self): - """ - 功能刀具组装必填判断 - """ - # 物料必填校验 - if not self.handle_code_id: - raise ValidationError('缺少【刀柄】物料信息!') - if not self.integral_product_id and not self.blade_product_id: - raise ValidationError('【整体式刀具】和【刀片】必须填写一个!') - if self.blade_product_id: - if not self.bar_product_id and not self.pad_product_id: - raise ValidationError('【刀盘】和【刀杆】必须填写一个!') - # 组装参数必填校验 - if self.after_assembly_functional_tool_length == 0: - raise ValidationError('组装参数信息【伸出长】不能为0!') - if self.after_assembly_max_lifetime_value == 0: - raise ValidationError('组装参数信息【最大寿命值】不能为0!') - if self.after_assembly_alarm_value == 0: - raise ValidationError('组装参数信息【报警值】不能为0!') - # if self.after_assembly_effective_length == 0: - # raise ValidationError('组装参数信息【有效长】不能为0!!!') - # if self.hiding_length == 0: - # raise ValidationError('组装参数信息【避空长】不能为0!!!') - if self.after_assembly_functional_tool_diameter == 0: - raise ValidationError('组装参数信息【刀具直径】不能为0!') - if self.after_assembly_tool_loading_length == 0: - raise ValidationError('组装参数信息【总长度】不能为0!!!') - if self.after_assembly_handle_length == 0: - raise ValidationError('组装参数信息【刀柄长度】不能为0!') - if self.after_assembly_tool_loading_length < self.after_assembly_handle_length: - raise ValidationError('组装参数信息【刀柄长度】不能大于【总长度】!') - - def get_desc_1(self, stock_lot): - return { - 'start_preset_bool': False, - 'barcode_id': stock_lot.id, - 'code': self.code, - 'rfid': self.rfid, - 'tool_groups_id': self.after_tool_groups_id.id, - 'handle_code_id': self.handle_code_id.id, - 'integral_freight_barcode_id': self.integral_freight_barcode_id.id, - 'integral_lot_id': self.integral_freight_lot_id.lot_id.id, - 'blade_freight_barcode_id': self.blade_freight_barcode_id.id, - 'blade_lot_id': self.blade_freight_lot_id.lot_id.id, - 'bar_freight_barcode_id': self.bar_freight_barcode_id.id, - 'bar_lot_id': self.bar_freight_lot_id.lot_id.id, - 'pad_freight_barcode_id': self.pad_freight_barcode_id.id, - 'pad_lot_id': self.pad_freight_lot_id.lot_id.id, - 'chuck_freight_barcode_id': self.chuck_freight_barcode_id.id, - 'chuck_lot_id': self.chuck_freight_lot_id.lot_id.id, - - 'after_assembly_functional_tool_name': self.after_assembly_functional_tool_name, - 'after_assembly_functional_tool_type_id': self.after_assembly_functional_tool_type_id.id, - 'after_assembly_functional_tool_diameter': self.after_assembly_functional_tool_diameter, - 'after_assembly_knife_tip_r_angle': self.after_assembly_knife_tip_r_angle, - 'after_assembly_new_former': self.after_assembly_new_former, - 'cut_time': self.cut_time, - 'cut_length': self.cut_length, - 'cut_number': self.cut_number, - 'after_assembly_whether_standard_knife': self.after_assembly_whether_standard_knife, - 'after_assembly_coarse_middle_thin': self.after_assembly_coarse_middle_thin, - 'after_assembly_max_lifetime_value': self.after_assembly_max_lifetime_value, - 'after_assembly_alarm_value': self.after_assembly_alarm_value, - 'after_assembly_used_value': self.after_assembly_used_value, - 'after_assembly_tool_loading_length': self.after_assembly_tool_loading_length, - 'after_assembly_handle_length': self.after_assembly_handle_length, - 'after_assembly_functional_tool_length': self.after_assembly_functional_tool_length, - 'after_assembly_effective_length': self.after_assembly_effective_length, - 'L_D_number': self.L_D_number, - 'hiding_length': self.hiding_length, - 'assemble_status': '2', - 'tool_loading_person': self.env.user.name, - 'image': self.image, - 'tool_loading_time': fields.Datetime.now() - } - - def get_desc_2(self, stock_lot, functional_tool_assembly_id): - return { - 'barcode_id': stock_lot.id, - 'code': self.code, - 'name': self.after_name_id.name, - 'tool_name_id': self.after_name_id.id, - 'rfid': self.rfid, - 'tool_groups_id': self.after_tool_groups_id.id, - 'functional_tool_name_id': functional_tool_assembly_id.id, - 'sf_cutting_tool_type_id': self.after_assembly_functional_tool_type_id.id, - 'cutting_tool_integral_model_id': self.integral_product_id.id, - 'cutting_tool_blade_model_id': self.blade_product_id.id, - 'cutting_tool_cutterbar_model_id': self.bar_product_id.id, - 'cutting_tool_cutterpad_model_id': self.pad_product_id.id, - 'cutting_tool_cutterhandle_model_id': self.handle_product_id.id, - 'cutting_tool_cutterhead_model_id': self.chuck_product_id.id, - - 'functional_tool_diameter': self.after_assembly_functional_tool_diameter, - 'knife_tip_r_angle': self.after_assembly_knife_tip_r_angle, - 'coarse_middle_thin': self.after_assembly_coarse_middle_thin, - 'new_former': self.after_assembly_new_former, - 'tool_loading_length': self.after_assembly_tool_loading_length, - 'handle_length': self.after_assembly_handle_length, - 'functional_tool_length': self.after_assembly_functional_tool_length, - 'effective_length': self.after_assembly_effective_length, - - 'max_lifetime_value': self.after_assembly_max_lifetime_value, - 'alarm_value': self.after_assembly_alarm_value, - 'used_value': self.after_assembly_used_value, - 'whether_standard_knife': self.after_assembly_whether_standard_knife, - 'L_D_number': self.L_D_number, - 'hiding_length': self.hiding_length, - 'cut_time': self.cut_time, - 'cut_length': self.cut_length, - 'cut_number': self.cut_number, - 'image': self.image, - } + # def functional_tool_assembly(self): + # """ + # 功能刀具组装 + # :return: + # """ + # logging.info('功能刀具开始组装!') + # # 获取组装单对象 + # functional_tool_assembly = self.env['sf.functional.tool.assembly'].search([ + # ('assembly_order_code', '=', self.assembly_order_code), + # ('machine_tool_name_id', '=', self.machine_tool_name_id.id), + # ('cutter_spacing_code_id', '=', self.cutter_spacing_code_id.id), + # ('assemble_status', '=', '0'), + # ]) + # # 对物料做必填判断 + # self.materials_must_be_judged() + # + # product_id = self.env['product.product'] + # # 创建组装入库单 + # # 创建功能刀具批次/序列号记录 + # stock_lot = product_id.create_assemble_warehouse_receipt(self.id, functional_tool_assembly, self) + # # 封装功能刀具数据,用于更新组装单信息 + # desc_1 = self.get_desc_1(stock_lot) + # # 封装功能刀具数据,用于创建功能刀具记录 + # desc_2 = self.get_desc_2(stock_lot, functional_tool_assembly) + # # 创建功能刀具组装入库单 + # self.env['stock.picking'].create_tool_stocking_picking(stock_lot, functional_tool_assembly, self) + # # 创建刀具物料出库单 + # self.env['stock.picking'].create_tool_stocking_picking1(self) + # + # # ============================创建功能刀具列表、安全库存记录=============================== + # # 创建功能刀具列表记录 + # record_1 = self.env['sf.functional.cutting.tool.entity'].create(desc_2) + # # 创建安全库存信息 + # self.env['sf.real.time.distribution.of.functional.tools'].create_or_edit_safety_stock({ + # 'functional_name_id': self.after_name_id.id + # }, record_1) + # + # # =====================修改功能刀具组装单、机床换刀申请、CAM工单程序用刀计划的状态============== + # # 修改功能刀具组装单信息 + # functional_tool_assembly.write(desc_1) + # if functional_tool_assembly.sf_machine_table_tool_changing_apply_id: + # # 修改机床换刀申请的状态 + # self.env['sf.machine.table.tool.changing.apply'].sudo().search([ + # ('id', '=', functional_tool_assembly.sf_machine_table_tool_changing_apply_id.id) + # ]).write({'status': '3'}) + # elif functional_tool_assembly.sf_cam_work_order_program_knife_plan_id: + # # 修改CAM工单程序用刀计划状态 + # cam_plan = self.env['sf.cam.work.order.program.knife.plan'].sudo().search([ + # ('id', '=', functional_tool_assembly.sf_cam_work_order_program_knife_plan_id.id) + # ]) + # cam_plan.write({'plan_execute_status': '2'}) + # + # logging.info('功能刀具组装完成!') + # + # # 关闭弹出窗口 + # return {'type': 'ir.actions.act_window_close'} + # + # def materials_must_be_judged(self): + # """ + # 功能刀具组装必填判断 + # """ + # # 物料必填校验 + # if not self.handle_code_id: + # raise ValidationError('缺少【刀柄】物料信息!') + # if not self.integral_product_id and not self.blade_product_id: + # raise ValidationError('【整体式刀具】和【刀片】必须填写一个!') + # if self.blade_product_id: + # if not self.bar_product_id and not self.pad_product_id: + # raise ValidationError('【刀盘】和【刀杆】必须填写一个!') + # # 组装参数必填校验 + # if self.after_assembly_functional_tool_length == 0: + # raise ValidationError('组装参数信息【伸出长】不能为0!') + # if self.after_assembly_max_lifetime_value == 0: + # raise ValidationError('组装参数信息【最大寿命值】不能为0!') + # if self.after_assembly_alarm_value == 0: + # raise ValidationError('组装参数信息【报警值】不能为0!') + # # if self.after_assembly_effective_length == 0: + # # raise ValidationError('组装参数信息【有效长】不能为0!!!') + # # if self.hiding_length == 0: + # # raise ValidationError('组装参数信息【避空长】不能为0!!!') + # if self.after_assembly_functional_tool_diameter == 0: + # raise ValidationError('组装参数信息【刀具直径】不能为0!') + # if self.after_assembly_tool_loading_length == 0: + # raise ValidationError('组装参数信息【总长度】不能为0!!!') + # if self.after_assembly_handle_length == 0: + # raise ValidationError('组装参数信息【刀柄长度】不能为0!') + # if self.after_assembly_tool_loading_length < self.after_assembly_handle_length: + # raise ValidationError('组装参数信息【刀柄长度】不能大于【总长度】!') + # + # def get_desc_1(self, stock_lot): + # return { + # 'start_preset_bool': False, + # 'barcode_id': stock_lot.id, + # 'code': self.code, + # 'rfid': self.rfid, + # 'tool_groups_id': self.after_tool_groups_id.id, + # 'handle_code_id': self.handle_code_id.id, + # 'integral_freight_barcode_id': self.integral_freight_barcode_id.id, + # 'integral_lot_id': self.integral_freight_lot_id.lot_id.id, + # 'blade_freight_barcode_id': self.blade_freight_barcode_id.id, + # 'blade_lot_id': self.blade_freight_lot_id.lot_id.id, + # 'bar_freight_barcode_id': self.bar_freight_barcode_id.id, + # 'bar_lot_id': self.bar_freight_lot_id.lot_id.id, + # 'pad_freight_barcode_id': self.pad_freight_barcode_id.id, + # 'pad_lot_id': self.pad_freight_lot_id.lot_id.id, + # 'chuck_freight_barcode_id': self.chuck_freight_barcode_id.id, + # 'chuck_lot_id': self.chuck_freight_lot_id.lot_id.id, + # + # 'after_assembly_functional_tool_name': self.after_assembly_functional_tool_name, + # 'after_assembly_functional_tool_type_id': self.after_assembly_functional_tool_type_id.id, + # 'after_assembly_functional_tool_diameter': self.after_assembly_functional_tool_diameter, + # 'after_assembly_knife_tip_r_angle': self.after_assembly_knife_tip_r_angle, + # 'after_assembly_new_former': self.after_assembly_new_former, + # 'cut_time': self.cut_time, + # 'cut_length': self.cut_length, + # 'cut_number': self.cut_number, + # 'after_assembly_whether_standard_knife': self.after_assembly_whether_standard_knife, + # 'after_assembly_coarse_middle_thin': self.after_assembly_coarse_middle_thin, + # 'after_assembly_max_lifetime_value': self.after_assembly_max_lifetime_value, + # 'after_assembly_alarm_value': self.after_assembly_alarm_value, + # 'after_assembly_used_value': self.after_assembly_used_value, + # 'after_assembly_tool_loading_length': self.after_assembly_tool_loading_length, + # 'after_assembly_handle_length': self.after_assembly_handle_length, + # 'after_assembly_functional_tool_length': self.after_assembly_functional_tool_length, + # 'after_assembly_effective_length': self.after_assembly_effective_length, + # 'L_D_number': self.L_D_number, + # 'hiding_length': self.hiding_length, + # 'assemble_status': '1', + # 'tool_loading_person': self.env.user.name, + # 'image': self.image, + # 'tool_loading_time': fields.Datetime.now() + # } + # + # def get_desc_2(self, stock_lot, functional_tool_assembly_id): + # return { + # 'barcode_id': stock_lot.id, + # 'code': self.code, + # 'name': self.after_name_id.name, + # 'tool_name_id': self.after_name_id.id, + # 'rfid': self.rfid, + # 'tool_groups_id': self.after_tool_groups_id.id, + # 'functional_tool_name_id': functional_tool_assembly_id.id, + # 'sf_cutting_tool_type_id': self.after_assembly_functional_tool_type_id.id, + # 'cutting_tool_integral_model_id': self.integral_product_id.id, + # 'cutting_tool_blade_model_id': self.blade_product_id.id, + # 'cutting_tool_cutterbar_model_id': self.bar_product_id.id, + # 'cutting_tool_cutterpad_model_id': self.pad_product_id.id, + # 'cutting_tool_cutterhandle_model_id': self.handle_product_id.id, + # 'cutting_tool_cutterhead_model_id': self.chuck_product_id.id, + # + # 'functional_tool_diameter': self.after_assembly_functional_tool_diameter, + # 'knife_tip_r_angle': self.after_assembly_knife_tip_r_angle, + # 'coarse_middle_thin': self.after_assembly_coarse_middle_thin, + # 'new_former': self.after_assembly_new_former, + # 'tool_loading_length': self.after_assembly_tool_loading_length, + # 'handle_length': self.after_assembly_handle_length, + # 'functional_tool_length': self.after_assembly_functional_tool_length, + # 'effective_length': self.after_assembly_effective_length, + # + # 'max_lifetime_value': self.after_assembly_max_lifetime_value, + # 'alarm_value': self.after_assembly_alarm_value, + # 'used_value': self.after_assembly_used_value, + # 'whether_standard_knife': self.after_assembly_whether_standard_knife, + # 'L_D_number': self.L_D_number, + # 'hiding_length': self.hiding_length, + # 'cut_time': self.cut_time, + # 'cut_length': self.cut_length, + # 'cut_number': self.cut_number, + # 'image': self.image, + # } -class StockPicking(models.Model): - _inherit = 'stock.picking' - - def create_tool_stocking_picking(self, stock_lot, functional_tool_assembly, obj): - """ - 创建功能刀具组装入库单 - """ - # 获取名称为刀具组装入库的作业类型 - picking_type_id = self.env['stock.picking.type'].sudo().search([('name', '=', '刀具组装入库')]) - # 创建刀具组装入库单 - picking_id = self.env['stock.picking'].create({ - 'name': self._get_name_stock(picking_type_id), - 'picking_type_id': picking_type_id.id, - 'location_id': picking_type_id.default_location_src_id.id, - 'location_dest_id': picking_type_id.default_location_dest_id.id, - 'origin': obj.assembly_order_code - }) - # 创建作业详情对象记录,并绑定到刀具组装入库单 - self.env['stock.move.line'].create({ - 'picking_id': picking_id.id, - 'product_id': stock_lot.product_id.id, - 'location_id': picking_id.location_id.id, - 'location_dest_id': picking_id.location_dest_id.id, - 'lot_id': stock_lot.id, - 'install_tool_time': fields.Datetime.now(), - 'qty_done': 1, - 'functional_tool_name_id': functional_tool_assembly.id, - 'functional_tool_type_id': obj.functional_tool_type_id.id, - 'diameter': obj.after_assembly_functional_tool_diameter, - 'knife_tip_r_angle': obj.after_assembly_knife_tip_r_angle, - 'code': obj.code, - 'rfid': obj.rfid, - 'functional_tool_name': obj.after_assembly_functional_tool_name, - 'tool_groups_id': obj.after_tool_groups_id.id - }) - # 将刀具组装入库单的状态更改为就绪 - picking_id.action_confirm() - picking_id.button_validate() - - def _get_name_stock(self, picking_type_id): - name = picking_type_id.sequence_id.prefix + str( - datetime.strptime(str(fields.Date.today()), "%Y-%m-%d").strftime("%Y%m%d")) - stock_id = self.env['stock.picking'].sudo().search( - [('name', 'like', name), ('picking_type_id', '=', picking_type_id.id)], - limit=1, - order="id desc" - ) - if not stock_id: - num = "%03d" % 1 - else: - m = int(stock_id.name[-3:]) + 1 - num = "%03d" % m - return name + str(num) - - def create_tool_stocking_picking1(self, obj): - """ - 创建刀具物料出库单 - """ - # 获取名称为内部调拨的作业类型 - picking_type_id = self.env['stock.picking.type'].sudo().search([('name', '=', '内部调拨')]) - # 创建刀具物料出库单 - picking_id = self.env['stock.picking'].create({ - 'name': self._get_name_stock1(picking_type_id), - 'picking_type_id': picking_type_id.id, - 'location_id': self.env['stock.location'].search([('name', '=', '刀具房')]).id, - 'location_dest_id': self.env['stock.location'].search([('name', '=', '刀具组装位置')]).id, - 'origin': obj.assembly_order_code - }) - # =============刀具物料出库=================== - stock_move_id = self.env['stock.move'] - datas = {'data': [], 'picking_id': picking_id} - if obj.handle_code_id: - # 修改刀柄序列号状态为【在用】 - obj.handle_code_id.sudo().write({'tool_material_status': '在用'}) - datas['data'].append( - {'current_location_id': self.env['sf.shelf.location'], 'lot_id': obj.handle_code_id}) - if obj.integral_product_id: - datas['data'].append( - {'current_location_id': obj.integral_freight_barcode_id, 'lot_id': obj.integral_freight_lot_id.lot_id}) - if obj.blade_product_id: - datas['data'].append( - {'current_location_id': obj.blade_freight_barcode_id, 'lot_id': obj.blade_freight_lot_id.lot_id}) - if obj.bar_product_id: - datas['data'].append( - {'current_location_id': obj.bar_freight_barcode_id, 'lot_id': obj.bar_freight_lot_id.lot_id}) - if obj.pad_product_id: - datas['data'].append( - {'current_location_id': obj.pad_freight_barcode_id, 'lot_id': obj.pad_freight_lot_id.lot_id}) - if obj.chuck_product_id: - datas['data'].append( - {'current_location_id': obj.chuck_freight_barcode_id, 'lot_id': obj.chuck_freight_lot_id.lot_id}) - # 创建刀具物料出库库存移动记录 - stock_move_id.create_tool_material_stock_moves(datas) - # 将刀具物料出库库单的状态更改为就绪 - picking_id.action_confirm() - # 修改刀具物料出库移动历史记录 - stock_move_id.write_tool_material_stock_move_lines(datas) - # 设置数量,并验证完成 - picking_id.action_set_quantities_to_reservation() - picking_id.button_validate() - logging.info(f'刀具物料调拨单状态:{picking_id.state}') - - def _get_name_stock1(self, picking_type_id): - name = f'{picking_type_id.sequence_id.prefix}DJ/{date.today().strftime("%y")}' - stock_id = self.env['stock.picking'].sudo().search( - [('name', 'like', name), ('picking_type_id', '=', picking_type_id.id)], - limit=1, - order="id desc" - ) - if not stock_id: - num = "%05d" % 1 - else: - m = int(stock_id.name[-5:]) + 1 - num = "%05d" % m - return name + str(num) - - -class StockMove(models.Model): - _inherit = 'stock.move' - - def create_tool_material_stock_moves(self, datas): - picking_id = datas['picking_id'] - data = datas['data'] - stock_move_ids = [] - for res in data: - if res: - # 创建库存移动记录 - stock_move_id = self.env['stock.move'].sudo().create({ - 'name': picking_id.name, - 'picking_id': picking_id.id, - 'product_id': res['lot_id'].product_id.id, - 'location_id': picking_id.location_id.id, - 'location_dest_id': picking_id.location_dest_id.id, - 'product_uom_qty': 1.00, - 'reserved_availability': 1.00 - }) - stock_move_ids.append(stock_move_id) - return stock_move_ids - - def write_tool_material_stock_move_lines(self, datas): - picking_id = datas['picking_id'] - data = datas['data'] - move_line_ids = picking_id.move_line_ids - for move_line_id in move_line_ids: - for res in data: - if move_line_id.lot_id.product_id == res['lot_id'].product_id: - move_line_id.write({ - 'current_location_id': res.get('current_location_id').id, - 'lot_id': res.get('lot_id').id - }) - return True - - -class ProductProduct(models.Model): - _inherit = 'product.product' - - def create_assemble_warehouse_receipt(self, tool_assembly_order_id, functional_tool_assembly, obj): - """ - 创建功能刀具批次/序列号记录 - """ - product_id = self.env['product.product'].search([('categ_type', '=', '功能刀具'), ('tracking', '=', 'serial')]) - if not product_id: - logging.info('没有搜索到功能刀具产品:%s' % product_id) - raise ValidationError('没有找到按唯一序列号追溯的功能刀具产品信息!') - stock_lot = self.env['stock.lot'].create({ - 'name': self.get_stock_lot_name(obj), - 'product_id': product_id[0].id, - 'company_id': self.env.company.id - }) - return stock_lot - - def get_stock_lot_name(self, obj): - """ - 生成功能刀具序列号 - """ - company = obj.cutting_tool_cutterhandle_model_id.code.split('-', 1)[0] - new_time = datetime.strptime(str(fields.Date.today()), "%Y-%m-%d").strftime("%Y%m%d") - code = '%s-GNDJ-%s-%s' % (company, obj.after_assembly_functional_tool_type_id.code, new_time) - stock_lot_id = self.env['stock.lot'].sudo().search( - [('name', 'like', code)], limit=1, order="id desc") - if not stock_lot_id: - num = "%03d" % 1 - else: - m = int(stock_lot_id.name[-3:]) + 1 - num = "%03d" % m - return '%s-%s' % (code, num) diff --git a/sf_tool_management/wizard/wizard_view.xml b/sf_tool_management/wizard/wizard_view.xml index b5c2f82e..53a45d85 100644 --- a/sf_tool_management/wizard/wizard_view.xml +++ b/sf_tool_management/wizard/wizard_view.xml @@ -427,10 +427,10 @@
-
From 1eae92f2b245066c05063a5bf370b61684a1a066 Mon Sep 17 00:00:00 2001 From: yuxianghui <3437689193@qq.com> Date: Fri, 6 Sep 2024 17:55:59 +0800 Subject: [PATCH 03/14] =?UTF-8?q?1=E3=80=81=E5=8A=9F=E8=83=BD=E5=88=80?= =?UTF-8?q?=E5=85=B7=E7=BB=84=E8=A3=85=E5=8D=95=E6=B7=BB=E5=8A=A0=E7=89=A9?= =?UTF-8?q?=E6=96=99=E6=A0=A1=E9=AA=8C=E6=A0=87=E7=AD=BE=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E3=80=81=E6=96=B0=E5=A2=9E=E6=89=AB=E6=8F=8F=E6=A0=A1=E9=AA=8C?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E3=80=81=E4=BC=98=E5=8C=96=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E8=AE=A1=E7=AE=97=E6=96=B9=E6=B3=95=EF=BC=9B2=E3=80=81?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=96=B0=E6=97=A7=E3=80=81=E7=B2=97=E4=B8=AD?= =?UTF-8?q?=E7=B2=BE=E5=AD=97=E6=AE=B5=E5=80=BC=E6=A0=B9=E6=8D=AE=E6=89=80?= =?UTF-8?q?=E9=80=89=E7=89=A9=E6=96=99=E8=87=AA=E5=8A=A8=E8=AE=A1=E7=AE=97?= =?UTF-8?q?=E6=96=B9=E6=B3=95=EF=BC=8C=E4=BC=B8=E5=87=BA=E9=95=BF=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E8=AE=A1=E7=AE=97=E6=96=B9=E6=B3=95=EF=BC=9B3?= =?UTF-8?q?=E3=80=81=E5=8E=BB=E9=99=A4=E9=83=A8=E5=88=86=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E7=9A=84=E6=A0=A1=E9=AA=8C=E6=96=B9=E6=B3=95=EF=BC=9B4?= =?UTF-8?q?=E3=80=81=E7=BB=84=E8=A3=85=E5=8D=95form=E3=80=81tree=E8=A7=86?= =?UTF-8?q?=E5=9B=BE=E5=B8=83=E5=B1=80=E8=B0=83=E6=95=B4=EF=BC=8Ctree?= =?UTF-8?q?=E8=A7=86=E5=9B=BE=E7=8A=B6=E6=80=81=E5=AD=97=E6=AE=B5=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E8=83=8C=E6=99=AF=E9=A2=9C=E8=89=B2=EF=BC=8C=E5=8F=98?= =?UTF-8?q?=E6=9B=B4=E7=AD=9B=E9=80=89=E6=9D=A1=E4=BB=B6=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_tool_management/models/base.py | 98 ++++++++++++-- sf_tool_management/views/tool_base_views.xml | 132 ++++++++++--------- 2 files changed, 156 insertions(+), 74 deletions(-) diff --git a/sf_tool_management/models/base.py b/sf_tool_management/models/base.py index 2255f68f..c5d8d831 100644 --- a/sf_tool_management/models/base.py +++ b/sf_tool_management/models/base.py @@ -349,9 +349,42 @@ class CAMWorkOrderProgramKnifePlan(models.Model): class FunctionalToolAssembly(models.Model): _name = 'sf.functional.tool.assembly' - _inherit = ['mail.thread'] + _inherit = ['mail.thread', 'barcodes.barcode_events_mixin'] _description = '功能刀具组装' - _order = 'assemble_status, use_tool_time asc' + _order = 'tool_loading_time desc, use_tool_time asc' + + def on_barcode_scanned(self, barcode): + """ + 智能工厂组装单处扫码校验刀具物料 + """ + for record in self: + lot_ids = self.env['stock.lot'].sudo().search([('rfid', '=', barcode)]) + if lot_ids: + for lot_id in lot_ids: + if lot_id.tool_material_status != '可用': + raise ValidationError(f'Rfid为【{barcode}】的刀柄已被占用,请重新扫描!!') + if lot_id.product_id == record.handle_product_id: + record.handle_code_id = lot_id.id + record.handle_verify = True + else: + raise ValidationError('刀具选择错误,请重新确认!!!') + else: + location = self.env['sf.shelf.location'].sudo().search([('barcode', '=', barcode)]) + if location: + if location == record.integral_freight_barcode_id: + record.integral_verify = True + elif location == record.blade_freight_barcode_id: + record.blade_verify = True + elif location == record.bar_freight_barcode_id: + record.bar_verify = True + elif location == record.pad_freight_barcode_id: + record.pad_verify = True + elif location == record.chuck_freight_barcode_id: + record.chuck_verify = True + else: + raise ValidationError('刀具选择错误,请重新确认!') + else: + raise ValidationError(f'扫描为【{barcode}】的刀具不存在,请重新扫描!') @api.depends('functional_tool_name') def _compute_name(self): @@ -390,6 +423,8 @@ class FunctionalToolAssembly(models.Model): 'tool_inventory_id.extension', 'tool_inventory_id.life_span') def _compute_inventory_num(self): for item in self: + if item.assemble_status != '01': + return True if item.tool_inventory_id: item.functional_tool_type_id = item.tool_inventory_id.functional_cutting_tool_model_id.id item.tool_groups_id = item.tool_inventory_id.tool_groups_id.id # 刀具组 @@ -397,7 +432,6 @@ class FunctionalToolAssembly(models.Model): item.after_assembly_functional_tool_diameter = item.tool_inventory_id.diameter # 直径 item.after_assembly_knife_tip_r_angle = item.tool_inventory_id.angle # R角 item.after_assembly_tool_loading_length = item.tool_inventory_id.tool_length # 总长度 - item.after_assembly_functional_tool_length = item.tool_inventory_id.extension # 伸出长度 item.after_assembly_max_lifetime_value = item.tool_inventory_id.life_span # 最大寿命 functional_tool_type_id = fields.Many2one('sf.functional.cutting.tool.model', string='功能刀具类型', @@ -451,6 +485,7 @@ class FunctionalToolAssembly(models.Model): related='integral_product_id.specification_id') sf_tool_brand_id_1 = fields.Many2one('sf.machine.brand', string='整体式刀具品牌', related='integral_product_id.brand_id') + integral_verify = fields.Boolean('整体刀校验', default=False) @api.onchange('integral_freight_barcode_id') def _onchange_integral_freight_barcode_id(self): @@ -478,6 +513,7 @@ class FunctionalToolAssembly(models.Model): blade_specification_id = fields.Many2one('sf.tool.materials.basic.parameters', string='刀片规格', related='blade_product_id.specification_id') sf_tool_brand_id_2 = fields.Many2one('sf.machine.brand', '刀片品牌', related='blade_product_id.brand_id') + blade_verify = fields.Boolean('刀片校验', default=False) @api.onchange('blade_freight_barcode_id') def _onchange_blade_freight_barcode_id(self): @@ -505,6 +541,7 @@ class FunctionalToolAssembly(models.Model): bar_specification_id = fields.Many2one('sf.tool.materials.basic.parameters', string='刀杆规格', related='bar_product_id.specification_id') sf_tool_brand_id_3 = fields.Many2one('sf.machine.brand', '刀杆品牌', related='bar_product_id.brand_id') + brand_verify = fields.Boolean('刀杆校验', default=False) @api.onchange('bar_freight_barcode_id') def _onchange_bar_freight_barcode_id(self): @@ -532,6 +569,7 @@ class FunctionalToolAssembly(models.Model): pad_specification_id = fields.Many2one('sf.tool.materials.basic.parameters', string='刀盘规格', related='pad_product_id.specification_id') sf_tool_brand_id_4 = fields.Many2one('sf.machine.brand', '刀盘品牌', related='pad_product_id.brand_id') + pad_verify = fields.Boolean('刀盘校验', default=False) @api.onchange('pad_freight_barcode_id') def _onchange_pad_freight_barcode_id(self): @@ -558,6 +596,7 @@ class FunctionalToolAssembly(models.Model): handle_specification_id = fields.Many2one('sf.tool.materials.basic.parameters', string='刀柄规格', related='handle_product_id.specification_id') sf_tool_brand_id_5 = fields.Many2one('sf.machine.brand', '刀柄品牌', related='handle_product_id.brand_id') + handle_verify = fields.Boolean('刀柄校验', default=False) @api.depends('handle_code_id') def _compute_handle_product_id(self): @@ -584,6 +623,7 @@ class FunctionalToolAssembly(models.Model): chuck_specification_id = fields.Many2one('sf.tool.materials.basic.parameters', string='夹头规格', related='chuck_product_id.specification_id') sf_tool_brand_id_6 = fields.Many2one('sf.machine.brand', '夹头品牌', related='chuck_product_id.brand_id') + chuck_verify = fields.Boolean('夹头校验', default=False) @api.onchange('chuck_freight_barcode_id') def _onchange_chuck_freight_barcode_id(self): @@ -630,14 +670,16 @@ class FunctionalToolAssembly(models.Model): compute='_compute_inventory_num') after_assembly_knife_tip_r_angle = fields.Float(string='组装后刀尖R角(mm)', digits=(10, 3), store=True, compute='_compute_inventory_num') - after_assembly_new_former = fields.Selection([('0', '新'), ('1', '旧')], string='组装后新/旧', default='0') + after_assembly_new_former = fields.Selection([('0', '新'), ('1', '旧')], string='组装后新/旧', default='0', + store=True, compute='_compute_rota_tive') cut_time = fields.Integer(string='已切削时间(min)', readonly=True) cut_length = fields.Float(string='已切削长度(mm)', readonly=True) cut_number = fields.Integer(string='已切削次数', readonly=True) after_assembly_whether_standard_knife = fields.Boolean(string='组装后是否标准刀', default=True, readonly=True) - after_assembly_coarse_middle_thin = fields.Selection([("1", "粗"), ('2', '中'), ('3', '精')], - string='组装后粗/中/精', default='3') + after_assembly_coarse_middle_thin = fields.Selection([("1", "粗"), ('2', '中'), ('3', '精')], store=True, + string='组装后粗/中/精', default='3', + compute='_compute_rota_tive') after_assembly_max_lifetime_value = fields.Integer(string='组装后最大寿命值(min)', store=True, compute='_compute_inventory_num') after_assembly_alarm_value = fields.Integer(string='组装后报警值(min)') @@ -645,7 +687,7 @@ class FunctionalToolAssembly(models.Model): compute='_compute_inventory_num') after_assembly_handle_length = fields.Float(string='组装后刀柄长度(mm)', digits=(10, 3)) after_assembly_functional_tool_length = fields.Float(string='组装后伸出长(mm)', digits=(10, 3), store=True, - compute='_compute_inventory_num') + compute='_compute_length') after_assembly_effective_length = fields.Float(string='组装后有效长(mm)', readonly=True) L_D_number = fields.Float(string='L/D值(mm)', readonly=True) hiding_length = fields.Float(string='避空长(mm)', readonly=True) @@ -659,12 +701,44 @@ class FunctionalToolAssembly(models.Model): sf_machine_table_tool_changing_apply_id = fields.Many2one('sf.machine.table.tool.changing.apply', '机床换刀申请', readonly=True) sf_cam_work_order_program_knife_plan_id = fields.Many2one('sf.cam.work.order.program.knife.plan', - 'CAM工单程序用刀计划', readonly=True, ) + 'CAM工单程序用刀计划', readonly=True) active = fields.Boolean(string='已归档', default=True) code = fields.Char('功能刀具编码', compute='_compute_code') + @api.depends('after_assembly_tool_loading_length', 'after_assembly_handle_length') + def _compute_length(self): + for item in self: + if item.assemble_status != '01': + return True + if item.after_assembly_tool_loading_length == 0: + raise ValidationError('【总长度】值为0,请重新测量!') + elif item.after_assembly_tool_loading_length > item.after_assembly_handle_length: + item.after_assembly_functional_tool_length = ( + item.after_assembly_tool_loading_length - item.after_assembly_handle_length) + elif item.after_assembly_tool_loading_length < item.after_assembly_handle_length: + raise ValidationError('【总长度】不能小于【刀柄长度】') + + @api.depends('integral_freight_barcode_id', 'blade_freight_barcode_id') + def _compute_rota_tive(self): + for item in self: + rota_tive_boolean = False + if item.integral_freight_barcode_id: + # 整体刀 + if item.integral_freight_barcode_id.rotative_Boolean: + rota_tive_boolean = True + elif item.blade_freight_barcode_id: + # 刀片 + if item.blade_freight_barcode_id.rotative_Boolean: + rota_tive_boolean = True + if rota_tive_boolean: + item.after_assembly_coarse_middle_thin = '1' + item.after_assembly_new_former = '1' + else: + item.after_assembly_coarse_middle_thin = '3' + item.after_assembly_new_former = '0' + @api.onchange('handle_product_id') def _onchange_after_assembly_handle_length(self): for item in self: @@ -724,7 +798,7 @@ class FunctionalToolAssembly(models.Model): def functional_tool_assembly(self): """ - 功能刀具组装 + 功能刀具确认组装 :return: """ logging.info('功能刀具开始组装!') @@ -777,6 +851,8 @@ class FunctionalToolAssembly(models.Model): """ 功能刀具组装必填判断 """ + # 物料准确性校验 + # 物料必填校验 if not self.handle_code_id: raise ValidationError('缺少【刀柄】物料信息!') @@ -790,8 +866,8 @@ class FunctionalToolAssembly(models.Model): raise ValidationError('组装参数信息【伸出长】不能为0!') if self.after_assembly_max_lifetime_value == 0: raise ValidationError('组装参数信息【最大寿命值】不能为0!') - if self.after_assembly_alarm_value == 0: - raise ValidationError('组装参数信息【报警值】不能为0!') + # if self.after_assembly_alarm_value == 0: + # raise ValidationError('组装参数信息【报警值】不能为0!') # if self.after_assembly_effective_length == 0: # raise ValidationError('组装参数信息【有效长】不能为0!!!') # if self.hiding_length == 0: diff --git a/sf_tool_management/views/tool_base_views.xml b/sf_tool_management/views/tool_base_views.xml index 8a3c3a73..87ddeec6 100644 --- a/sf_tool_management/views/tool_base_views.xml +++ b/sf_tool_management/views/tool_base_views.xml @@ -448,7 +448,11 @@ - + @@ -513,54 +517,7 @@
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
@@ -641,17 +598,15 @@
- - - - - - - - - + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -734,10 +742,8 @@ - + - From 9b7c22c35e85af02497784fcbae0f5912eb8c09d Mon Sep 17 00:00:00 2001 From: yuxianghui <3437689193@qq.com> Date: Mon, 9 Sep 2024 17:54:10 +0800 Subject: [PATCH 04/14] =?UTF-8?q?1=E3=80=81=E5=AF=B9=E7=BB=84=E8=A3=85?= =?UTF-8?q?=E5=8D=95=E7=89=A9=E6=96=99=E6=89=B9=E6=AC=A1=E5=8F=B7=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E9=80=BB=E8=BE=91=E8=BF=9B=E8=A1=8C=E4=BC=98=E5=8C=96?= =?UTF-8?q?=EF=BC=8C=E6=9B=B4=E6=94=B9form=E8=A7=86=E5=9B=BE=E6=89=B9?= =?UTF-8?q?=E6=AC=A1=E5=AD=97=E6=AE=B5=E6=98=BE=E7=A4=BA=E6=9D=A1=E4=BB=B6?= =?UTF-8?q?=EF=BC=9B2=E3=80=81=E5=BC=80=E5=8F=91=20=20=20=E5=AF=BF?= =?UTF-8?q?=E5=91=BD=E5=88=B0=E6=9C=9F=E5=8A=9F=E8=83=BD=E5=88=80=E5=85=B7?= =?UTF-8?q?=E5=AE=8C=E6=88=90=E6=8B=86=E8=A7=A3=E5=90=8E=E5=85=B3=E8=81=94?= =?UTF-8?q?=E7=94=9F=E6=88=90=E5=B9=B6=E8=B7=B3=E8=BD=AC=E5=88=B0=E7=BB=84?= =?UTF-8?q?=E8=A3=85=E5=8D=95=E7=9A=84=E9=9C=80=E6=B1=82=20=20=E9=9C=80?= =?UTF-8?q?=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_tool_management/models/base.py | 96 +++++++++++++++++--- sf_tool_management/views/tool_base_views.xml | 33 ++++--- 2 files changed, 101 insertions(+), 28 deletions(-) diff --git a/sf_tool_management/models/base.py b/sf_tool_management/models/base.py index c5d8d831..4c61bfe4 100644 --- a/sf_tool_management/models/base.py +++ b/sf_tool_management/models/base.py @@ -476,7 +476,8 @@ class FunctionalToolAssembly(models.Model): domain="[('product_id.cutting_tool_material_id.name', '=', '整体式刀具'),('product_num', '>', 0)]") integral_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='整体式刀具批次', domain="[('shelf_location_id', '=', integral_freight_barcode_id)]") - integral_lot_id = fields.Many2one('stock.lot', string='整体式刀具批次', related='integral_freight_lot_id.lot_id') + integral_lot_id = fields.Many2one('stock.lot', string='整体式刀具批次', compute='_compute_integral_lot_id', + store=True) integral_product_id = fields.Many2one('product.product', string='整体式刀具名称', compute='_compute_integral_product_id', store=True) cutting_tool_integral_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='整体式刀具型号', @@ -492,6 +493,12 @@ class FunctionalToolAssembly(models.Model): for item in self: item.integral_freight_lot_id = False + @api.depends('integral_freight_lot_id') + def _compute_integral_lot_id(self): + for item in self: + if item.integral_freight_lot_id: + item.integral_lot_id = item.integral_freight_lot_id.lot_id.id + @api.depends('integral_lot_id') def _compute_integral_product_id(self): for item in self: @@ -505,7 +512,7 @@ class FunctionalToolAssembly(models.Model): domain="[('product_id.cutting_tool_material_id.name', '=', '刀片'),('product_num', '>', 0)]") blade_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='刀片批次', domain="[('shelf_location_id', '=', blade_freight_barcode_id)]") - blade_lot_id = fields.Many2one('stock.lot', string='刀片批次', related='blade_freight_lot_id.lot_id') + blade_lot_id = fields.Many2one('stock.lot', string='刀片批次', compute='blade_freight_lot_id.lot_id', store=True) blade_product_id = fields.Many2one('product.product', string='刀片名称', compute='_compute_blade_product_id', store=True) cutting_tool_blade_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀片型号', @@ -520,6 +527,12 @@ class FunctionalToolAssembly(models.Model): for item in self: item.blade_freight_lot_id = False + @api.depends('blade_freight_lot_id') + def _compute_blade_lot_id(self): + for item in self: + if item.blade_freight_lot_id: + item.blade_lot_id = item.blade_freight_lot_id.lot_id.id + @api.depends('blade_lot_id') def _compute_blade_product_id(self): for item in self: @@ -533,7 +546,7 @@ class FunctionalToolAssembly(models.Model): domain="[('product_id.cutting_tool_material_id.name', '=', '刀杆'),('product_num', '>', 0)]") bar_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='刀杆批次', domain="[('shelf_location_id', '=', bar_freight_barcode_id)]") - bar_lot_id = fields.Many2one('stock.lot', string='刀杆批次', related='bar_freight_lot_id.lot_id') + bar_lot_id = fields.Many2one('stock.lot', string='刀杆批次', compute='_compute_bar_lot_id', store=True) bar_product_id = fields.Many2one('product.product', string='刀杆名称', compute='_compute_bar_product_id', store=True) cutting_tool_cutterbar_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀杆型号', @@ -548,6 +561,12 @@ class FunctionalToolAssembly(models.Model): for item in self: item.bar_freight_lot_id = False + @api.depends('bar_freight_lot_id') + def _compute_bar_lot_id(self): + for item in self: + if item.bar_freight_lot_id: + item.bar_lot_id = item.bar_freight_lot_id.lot_id.id + @api.depends('bar_lot_id') def _compute_bar_product_id(self): for item in self: @@ -561,7 +580,7 @@ class FunctionalToolAssembly(models.Model): domain="[('product_id.cutting_tool_material_id.name', '=', '刀盘'),('product_num', '>', 0)]") pad_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='刀盘批次', domain="[('shelf_location_id', '=', pad_freight_barcode_id)]") - pad_lot_id = fields.Many2one('stock.lot', string='刀盘批次', related='pad_freight_lot_id.lot_id') + pad_lot_id = fields.Many2one('stock.lot', string='刀盘批次', compute='_compute_pad_lot_id', store=True) pad_product_id = fields.Many2one('product.product', string='刀盘名称', compute='_compute_pad_product_id', store=True) cutting_tool_cutterpad_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀盘型号', @@ -576,6 +595,12 @@ class FunctionalToolAssembly(models.Model): for item in self: item.pad_freight_lot_id = False + @api.depends('pad_freight_lot_id') + def _compute_pad_lot_id(self): + for item in self: + if item.pad_freight_lot_id: + item.pad_lot_id = item.pad_freight_lot_id.lot_id.id + @api.depends('pad_lot_id') def _compute_pad_product_id(self): for item in self: @@ -615,7 +640,7 @@ class FunctionalToolAssembly(models.Model): domain="[('product_id.cutting_tool_material_id.name', '=', '夹头'),('product_num', '>', 0)]") chuck_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='夹头批次', domain="[('shelf_location_id', '=', chuck_freight_barcode_id)]") - chuck_lot_id = fields.Many2one('stock.lot', string='夹头批次', related='chuck_freight_lot_id.lot_id') + chuck_lot_id = fields.Many2one('stock.lot', string='夹头批次', compute='_compute_chuck_lot_id', store=True) chuck_product_id = fields.Many2one('product.product', string='夹头名称', compute='_compute_chuck_product_id', store=True) cutting_tool_cutterhead_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='夹头型号', @@ -630,6 +655,12 @@ class FunctionalToolAssembly(models.Model): for item in self: item.chuck_freight_lot_id = False + @api.depends('chuck_freight_lot_id') + def _compute_chuck_lot_id(self): + for item in self: + if item.chuck_freight_lot_id: + item.chuck_lot_id = item.chuck_freight_lot_id.lot_id.id + @api.depends('chuck_lot_id') def _compute_chuck_product_id(self): for item in self: @@ -710,15 +741,9 @@ class FunctionalToolAssembly(models.Model): @api.depends('after_assembly_tool_loading_length', 'after_assembly_handle_length') def _compute_length(self): for item in self: - if item.assemble_status != '01': - return True - if item.after_assembly_tool_loading_length == 0: - raise ValidationError('【总长度】值为0,请重新测量!') - elif item.after_assembly_tool_loading_length > item.after_assembly_handle_length: + if item.after_assembly_tool_loading_length > item.after_assembly_handle_length: item.after_assembly_functional_tool_length = ( item.after_assembly_tool_loading_length - item.after_assembly_handle_length) - elif item.after_assembly_tool_loading_length < item.after_assembly_handle_length: - raise ValidationError('【总长度】不能小于【刀柄长度】') @api.depends('integral_freight_barcode_id', 'blade_freight_barcode_id') def _compute_rota_tive(self): @@ -872,8 +897,8 @@ class FunctionalToolAssembly(models.Model): # raise ValidationError('组装参数信息【有效长】不能为0!!!') # if self.hiding_length == 0: # raise ValidationError('组装参数信息【避空长】不能为0!!!') - if self.after_assembly_functional_tool_diameter == 0: - raise ValidationError('组装参数信息【刀具直径】不能为0!') + if self.after_assembly_functional_tool_diameter <= 0: + raise ValidationError('组装参数信息【刀具直径】不能小于等于0!') if self.after_assembly_tool_loading_length == 0: raise ValidationError('组装参数信息【总长度】不能为0!!!') if self.after_assembly_handle_length == 0: @@ -1379,6 +1404,49 @@ class FunctionalToolDismantle(models.Model): }) logging.info('【%s】刀具拆解成功!' % self.name) + # ==================根据条件创建功能刀具组装单======================= + # 如果报废原因为【寿命到期报废】并且刀柄不报废时, 创建功能刀具组装单 + if self.dismantle_cause in ['寿命到期报废'] and not self.scrap_boolean: + # 创建组装单 + assembly_id = self.env['sf.functional.tool.assembly'].sudo().create({ + 'functional_tool_name': self.functional_tool_id.name, + 'handle_code_id': self.handle_lot_id.id, + 'loading_task_source': '3', + 'reason_for_applying': '刀具寿命到期' + }) + action = self.env.ref('sf_tool_management.sf_functional_tool_assembly_form') + + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'title': '组装单创建完成', + 'message': '请组装同名称的功能刀具', + 'type': 'info', + 'links': [{ + 'label': '组装单', + 'url': f'#action={action.id}&id={assembly_id.id}&model=sf.functional.tool.assembly', + }], + }, + } + # { + # 'type': 'ir.actions.act_window', + # 'res_model': 'sf.functional.tool.assembly', + # 'view_type': 'form', + # 'view_mode': 'form', + # 'res_id': assembly_id.id, + # } + + # 'params': { + # 'title': _('The following replenishment order has been generated'), + # 'message': '%s', + # 'links': [{ + # 'label': order.display_name, + # 'url': f'#action={action.id}&id={order.id}&model=purchase.order', + # }], + # 'sticky': False, + # } + def create_tool_picking_scrap(self, datas): scrap_data = datas['scrap'] picking_data = datas['picking'] diff --git a/sf_tool_management/views/tool_base_views.xml b/sf_tool_management/views/tool_base_views.xml index 87ddeec6..46f557d7 100644 --- a/sf_tool_management/views/tool_base_views.xml +++ b/sf_tool_management/views/tool_base_views.xml @@ -544,8 +544,9 @@ - + attrs="{'invisible': [('assemble_status', 'in', ['1','2'])]}"/> + @@ -557,7 +558,7 @@ + attrs="{'invisible': [('integral_lot_id', '=', False),'|','|','|', ('blade_lot_id', '!=', False),('bar_lot_id', '!=', False),('pad_lot_id', '!=', False),('assemble_status', 'not in', ['0','01'])]}">
@@ -565,8 +566,9 @@ - + attrs="{'invisible': [('assemble_status', 'in', ['1','2'])]}"/> + @@ -574,7 +576,7 @@
+ attrs="{'invisible': [('blade_lot_id', '=', False),'|', ('integral_lot_id', '!=', False),('assemble_status', 'not in', ['0','01'])]}">
@@ -582,8 +584,9 @@ - + attrs="{'invisible': [('assemble_status', 'in', ['1','2'])]}"/> + @@ -593,7 +596,7 @@
+ attrs="{'invisible': [('bar_lot_id', '=', False),'|','|',('integral_lot_id', '!=', False),('pad_lot_id', '!=', False),('assemble_status', 'not in', ['0','01'])]}">
@@ -601,8 +604,9 @@ - + attrs="{'invisible': [('assemble_status', 'in', ['1','2'])]}"/> + @@ -610,7 +614,7 @@
+ attrs="{'invisible': [('pad_lot_id', '=', False),'|','|',('integral_lot_id', '!=', False),('bar_lot_id', '!=', False),('assemble_status', 'not in', ['0','01'])]}">
@@ -619,8 +623,9 @@ - + attrs="{'invisible': [('assemble_status', 'in', ['1','2'])]}"/> + From e2d741937e9eff81683aefa5b19e559833c250fc Mon Sep 17 00:00:00 2001 From: yuxianghui <3437689193@qq.com> Date: Tue, 10 Sep 2024 17:52:40 +0800 Subject: [PATCH 05/14] =?UTF-8?q?1=E3=80=81=E5=AE=9E=E7=8E=B0=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E5=88=80=E5=85=B7=E7=82=B9=E5=87=BB=E5=BC=80=E5=A7=8B?= =?UTF-8?q?=E7=BB=84=E8=A3=85=E6=97=B6=EF=BC=8C=E8=87=AA=E5=8A=A8=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E5=8A=9F=E8=83=BD=E5=88=80=E5=85=B7=E6=B8=85=E5=8D=95?= =?UTF-8?q?BOM=E4=BF=A1=E6=81=AF=EF=BC=8C=E5=B9=B6=E6=A0=B9=E6=8D=AE?= =?UTF-8?q?=E8=A7=84=E5=88=99=E5=8C=B9=E9=85=8D=E5=88=80=E5=85=B7=E7=89=A9?= =?UTF-8?q?=E6=96=99=E4=BF=A1=E6=81=AF=E8=BF=9B=E8=A1=8C=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=EF=BC=9B2=E3=80=81=E5=AF=B9?= =?UTF-8?q?=E7=BB=84=E8=A3=85=E5=8D=95form=E7=95=8C=E9=9D=A2=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E8=B0=83=E6=95=B4=EF=BC=8C=E5=B9=B6=E9=9A=90=E8=97=8F?= =?UTF-8?q?=E5=A4=B9=E5=A4=B4=E7=89=A9=E6=96=99=E7=9A=84=E6=89=80=E4=BB=A5?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_tool_management/models/base.py | 118 +++++++++++++++- sf_tool_management/views/tool_base_views.xml | 136 +++++++++---------- 2 files changed, 179 insertions(+), 75 deletions(-) diff --git a/sf_tool_management/models/base.py b/sf_tool_management/models/base.py index 4c61bfe4..4d7821ac 100644 --- a/sf_tool_management/models/base.py +++ b/sf_tool_management/models/base.py @@ -493,11 +493,13 @@ class FunctionalToolAssembly(models.Model): for item in self: item.integral_freight_lot_id = False - @api.depends('integral_freight_lot_id') + @api.depends('integral_freight_lot_id', 'integral_freight_barcode_id') def _compute_integral_lot_id(self): for item in self: if item.integral_freight_lot_id: item.integral_lot_id = item.integral_freight_lot_id.lot_id.id + elif not item.integral_freight_barcode_id: + item.integral_lot_id = False @api.depends('integral_lot_id') def _compute_integral_product_id(self): @@ -527,11 +529,13 @@ class FunctionalToolAssembly(models.Model): for item in self: item.blade_freight_lot_id = False - @api.depends('blade_freight_lot_id') + @api.depends('blade_freight_lot_id', 'blade_freight_barcode_id') def _compute_blade_lot_id(self): for item in self: if item.blade_freight_lot_id: item.blade_lot_id = item.blade_freight_lot_id.lot_id.id + elif not item.blade_freight_barcode_id: + item.blade_lot_id = False @api.depends('blade_lot_id') def _compute_blade_product_id(self): @@ -561,11 +565,13 @@ class FunctionalToolAssembly(models.Model): for item in self: item.bar_freight_lot_id = False - @api.depends('bar_freight_lot_id') + @api.depends('bar_freight_lot_id', 'bar_freight_barcode_id') def _compute_bar_lot_id(self): for item in self: if item.bar_freight_lot_id: item.bar_lot_id = item.bar_freight_lot_id.lot_id.id + elif not item.bar_freight_barcode_id: + item.bar_lot_id = False @api.depends('bar_lot_id') def _compute_bar_product_id(self): @@ -595,11 +601,13 @@ class FunctionalToolAssembly(models.Model): for item in self: item.pad_freight_lot_id = False - @api.depends('pad_freight_lot_id') + @api.depends('pad_freight_lot_id', 'pad_freight_barcode_id') def _compute_pad_lot_id(self): for item in self: if item.pad_freight_lot_id: item.pad_lot_id = item.pad_freight_lot_id.lot_id.id + elif not item.pad_freight_barcode_id: + item.pad_lot_id = False @api.depends('pad_lot_id') def _compute_pad_product_id(self): @@ -655,11 +663,13 @@ class FunctionalToolAssembly(models.Model): for item in self: item.chuck_freight_lot_id = False - @api.depends('chuck_freight_lot_id') + @api.depends('chuck_freight_lot_id', 'chuck_freight_barcode_id') def _compute_chuck_lot_id(self): for item in self: if item.chuck_freight_lot_id: item.chuck_lot_id = item.chuck_freight_lot_id.lot_id.id + elif not item.chuck_freight_barcode_id: + item.chuck_lot_id = False @api.depends('chuck_lot_id') def _compute_chuck_product_id(self): @@ -819,7 +829,103 @@ class FunctionalToolAssembly(models.Model): self.after_assembly_coarse_middle_thin = '3' self.after_assembly_new_former = '0' - # todo 调用功能刀具名称对应的清单的BOM获取对应刀具物料信息 + # 调用功能刀具名称对应的清单的BOM获取对应刀具物料信息 + bom = self._get_inventory_bom(self.tool_inventory_id) + # 根据BOM自动配置物料的值 + self._set_tool_material(bom) + logging.info('功能刀具开始组装初始化值成功!') + + def _set_tool_material(self, bom): + """根据BOM对刀具物料进行初始配置""" + options = bom.get('options') + # 配置刀柄信息 + for handle_id in bom.get('handle_ids'): + if handle_id: + self.handle_product_id = handle_id.id + break + + # 刀柄之外的物料配置 + if options == '刀柄+整体式刀具': + # 配置整体式刀具 + integra_lot_id = self._get_old_tool_material_lot(bom.get('integral_ids')) + integra_location_lot_id = self._get_shelf_location_lot(integra_lot_id) + self.integral_freight_barcode_id = integra_location_lot_id.shelf_location_id.id + self.integral_freight_lot_id = integra_location_lot_id.id + else: + # 配置刀片 + blade_lot_id = self._get_old_tool_material_lot(bom.get('blade_ids')) + blade_location_lot_id = self._get_shelf_location_lot(blade_lot_id) + self.blade_freight_barcode_id = blade_location_lot_id.shelf_location_id.id + self.blade_freight_lot_id = blade_location_lot_id.id + + if options == '刀柄+刀杆+刀片': + # 配置刀杆 + bar_lot_id = self._get_old_tool_material_lot(bom.get('bar_ids')) + bar_location_lot_id = self._get_shelf_location_lot(bar_lot_id) + self.bar_freight_barcode_id = bar_location_lot_id.shelf_location_id.id + self.bar_freight_lot_id = bar_location_lot_id.id + elif options == '刀柄+刀盘+刀片': + # 配置刀盘 + pad_lot_id = self._get_old_tool_material_lot(bom.get('pad_ids')) + pad_location_lot_id = self._get_shelf_location_lot(pad_lot_id) + self.pad_freight_barcode_id = pad_location_lot_id.shelf_location_id.id + self.pad_freight_lot_id = pad_location_lot_id.id + + def _get_old_tool_material_lot(self, material_ids): + """ 根据先进先出原则选择物料批次 """ + location_id = self.env['stock.location'].search([('name', '=', '刀具房')]) + stock_quant = self.env['stock.quant'].sudo().search( + [('location_id', '=', location_id.id), ('product_id', 'in', material_ids.ids), ('quantity', '>', '0')], + order='lot_id', limit=1) + if stock_quant: + return stock_quant.lot_id + else: + raise ValidationError(f'【{material_ids[0].cutting_tool_material_id.name}】物料库存不足,请先进行盘点或采购') + + def _get_shelf_location_lot(self, lot_id): + """根据所给的刀具物料批次号,返回一个刀具物料货位、批次信息""" + location_lots = self.env['sf.shelf.location.lot'].sudo().search([('lot_id', '=', lot_id.id)]) + if not location_lots: + raise ValidationError(f'没有查询到批次为【{lot_id.name}】物料的货位信息!') + else: + return location_lots[0] + + def _get_inventory_bom(self, inventory_id): + """获取BOM的刀具物料产品信息""" + product_ids = inventory_id.jikimo_bom_ids.product_ids # BOM配置的物料产品 + options = inventory_id.jikimo_bom_ids.options # BOM产品组装类型 + + if not product_ids or not options: + raise ValidationError('功能刀具清单的BOM未进行配置,请先配置BOM再开始组装!') + handle_ids = product_ids.filtered(lambda a: a.cutting_tool_material_id.name == '刀柄') + integral_ids = product_ids.filtered(lambda a: a.cutting_tool_material_id.name == '整体式刀具') + blade_ids = product_ids.filtered(lambda a: a.cutting_tool_material_id.name == '刀片') + bar_ids = product_ids.filtered(lambda a: a.cutting_tool_material_id.name == '刀杆') + pad_ids = product_ids.filtered(lambda a: a.cutting_tool_material_id.name == '刀盘') + + if not handle_ids: + raise ValidationError('功能刀具清单的BOM未配置[刀柄]信息,请先配置BOM再开始组装!') + + if options == '刀柄+整体式刀具': + if not integral_ids: + raise ValidationError('功能刀具清单的BOM未配置[刀柄]信息,请先配置BOM再开始组装!') + return {'options': options, 'handle_ids': handle_ids, 'integral_ids': integral_ids} + elif options == '刀柄+刀杆+刀片': + if not blade_ids: + raise ValidationError('功能刀具清单的BOM未配置[刀片]信息,请先配置BOM再开始组装!') + if not bar_ids: + raise ValidationError('功能刀具清单的BOM未配置[刀杆]信息,请先配置BOM再开始组装!') + return {'options': options, 'handle_ids': handle_ids, 'blade_ids': blade_ids, 'bar_ids': bar_ids} + elif options == '刀柄+刀盘+刀片': + if not blade_ids: + raise ValidationError('功能刀具清单的BOM未配置[刀片]信息,请先配置BOM再开始组装!') + if not pad_ids: + raise ValidationError('功能刀具清单的BOM未配置[刀盘]信息,请先配置BOM再开始组装!') + return {'options': options, 'handle_ids': handle_ids, 'blade_ids': blade_ids, 'pad_ids': pad_ids} + else: + raise ValidationError(f'功能刀具清单BOM的组装方式错误:【{options}】') + + # def set_ def functional_tool_assembly(self): """ diff --git a/sf_tool_management/views/tool_base_views.xml b/sf_tool_management/views/tool_base_views.xml index 46f557d7..bd4d949c 100644 --- a/sf_tool_management/views/tool_base_views.xml +++ b/sf_tool_management/views/tool_base_views.xml @@ -520,81 +520,21 @@ -
- -
- - - - - - - - -
- -
- -
- - - - - - - - - - - -
-
- - - +
- +
- - - - - - - + + + + +
- -
- -
- - - - - - - - - -
-
-
@@ -634,6 +574,64 @@ + + +
+ +
+ + + + + + + + + +
+ +
+ +
+ + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + From da5e322229c4110981f8a2d50d66072971e6f68c Mon Sep 17 00:00:00 2001 From: yuxianghui <3437689193@qq.com> Date: Wed, 11 Sep 2024 17:49:43 +0800 Subject: [PATCH 06/14] =?UTF-8?q?1=E3=80=81=E7=BB=84=E8=A3=85=E5=8D=95?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BA=94=E7=A7=8D=E7=89=A9=E6=96=99=E7=9A=84?= =?UTF-8?q?=E3=80=90=E6=9B=B4=E5=A4=9A=E3=80=91=E6=8C=89=E9=92=AE=EF=BC=8C?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E6=8C=89=E9=92=AE=E8=B7=B3=E8=BD=AC=E8=87=B3?= =?UTF-8?q?=E6=96=B0=E7=9A=84=E5=BC=B9=E7=AA=97=E7=95=8C=E9=9D=A2=EF=BC=8C?= =?UTF-8?q?=E6=A0=B9=E6=8D=AE=E5=8A=9F=E8=83=BD=E5=88=80=E5=85=B7=E6=B8=85?= =?UTF-8?q?=E5=8D=95BOM=E7=9A=84=E9=85=8D=E7=BD=AE=EF=BC=8C=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E5=87=BA=E5=85=A8=E9=83=A8=E6=BB=A1=E8=B6=B3=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6=E7=9A=84=E5=88=80=E6=9F=84=E4=BA=A7=E5=93=81=E6=88=96?= =?UTF-8?q?=E8=80=85=E5=85=B6=E4=BB=96=E5=88=80=E5=85=B7=E7=89=A9=E6=96=99?= =?UTF-8?q?=E5=AF=B9=E5=BA=94=E7=9A=84=E6=89=B9=E6=AC=A1=E3=80=81=E8=B4=A7?= =?UTF-8?q?=E4=BD=8D=EF=BC=8C=E4=BD=BF=E7=94=A8tree=E8=A7=86=E5=9B=BE?= =?UTF-8?q?=E6=8F=90=E4=BE=9B=E9=80=89=E6=8B=A9=E3=80=822=E3=80=81?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BA=A7=E5=93=81tree=E3=80=81search?= =?UTF-8?q?=E8=A7=86=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_tool_management/models/base.py | 48 +++++++++++++++++++- sf_tool_management/models/stock.py | 6 +++ sf_tool_management/views/tool_base_views.xml | 21 +++++++++ 3 files changed, 74 insertions(+), 1 deletion(-) diff --git a/sf_tool_management/models/base.py b/sf_tool_management/models/base.py index 4d7821ac..518c4c0f 100644 --- a/sf_tool_management/models/base.py +++ b/sf_tool_management/models/base.py @@ -925,7 +925,53 @@ class FunctionalToolAssembly(models.Model): else: raise ValidationError(f'功能刀具清单BOM的组装方式错误:【{options}】') - # def set_ + def set_tool_lot(self): + # 获取BOM的刀具物料产品信息 + tool_data = self._get_inventory_bom(self.tool_inventory_id) + + # 获取刀具类型 + tool_type = self.env.context.get('tool_type') + + if tool_type == '刀柄': + tool_material_ids = tool_data.get('handle_ids') + elif tool_type == '整体式刀具': + tool_material_ids = self._get_all_material_location_lot(tool_data.get('integral_ids')) + elif tool_type == '刀片': + tool_material_ids = self._get_all_material_location_lot(tool_data.get('handle_ids')) + elif tool_type == '刀杆': + tool_material_ids = self._get_all_material_location_lot(tool_data.get('bar_ids')) + else: + tool_material_ids = self._get_all_material_location_lot(tool_data.get('pad_ids')) + + if tool_type == '刀柄': + return { + "type": "ir.actions.act_window", + "res_model": "product.product", + "views": [[self.env.ref('sf_tool_management.view_tool_product_tree').id, "tree"], + [self.env.ref('sf_tool_management.view_tool_product_search').id, "search"]], + "target": "new", + "domain": [('id', 'in', tool_material_ids.ids)] + } + elif tool_type in ['整体式刀具', '刀片', '刀杆', '刀盘']: + return { + "type": "ir.actions.act_window", + "res_model": "sf.shelf.location.lot", + "views": [[False, "tree"]], + "target": "new", + "domain": [('id', 'in', tool_material_ids.ids)], + "context": {'create': False} + } + + def _get_all_material_location_lot(self, material_ids): + """ 获取所有满足条件 """ + location_id = self.env['stock.location'].search([('name', '=', '刀具房')]) + stock_quant_ids = self.env['stock.quant'].sudo().search( + [('location_id', '=', location_id.id), ('product_id', 'in', material_ids.ids), ('quantity', '>', '0')]) + lot_ids = [] + for stock_quant_id in stock_quant_ids: + lot_ids.append(stock_quant_id.lot_id.id) + location_lots = self.env['sf.shelf.location.lot'].sudo().search([('lot_id', 'in', lot_ids)]) + return location_lots def functional_tool_assembly(self): """ diff --git a/sf_tool_management/models/stock.py b/sf_tool_management/models/stock.py index 22a7fa72..50218e65 100644 --- a/sf_tool_management/models/stock.py +++ b/sf_tool_management/models/stock.py @@ -247,3 +247,9 @@ class ProductProduct(models.Model): m = int(stock_lot_id.name[-3:]) + 1 num = "%03d" % m return '%s-%s' % (code, num) + + +class SfShelfLocationLot(models.Model): + _inherit = 'sf.shelf.location.lot' + + diff --git a/sf_tool_management/views/tool_base_views.xml b/sf_tool_management/views/tool_base_views.xml index bd4d949c..0c492721 100644 --- a/sf_tool_management/views/tool_base_views.xml +++ b/sf_tool_management/views/tool_base_views.xml @@ -524,6 +524,7 @@
+ +
+
@@ -552,6 +557,10 @@ +
+
@@ -572,6 +581,10 @@ +
+
@@ -592,6 +605,10 @@ +
+
@@ -610,6 +627,10 @@ +
+
From c050e2f11adb9930e26310485c4a181414f1b458 Mon Sep 17 00:00:00 2001 From: guanhuan Date: Thu, 12 Sep 2024 10:14:38 +0800 Subject: [PATCH 07/14] =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E7=9A=84=E9=87=87=E8=B4=AD=E5=91=98=E5=8E=BB=E6=8E=89?= =?UTF-8?q?=E5=BF=85=E5=A1=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_sale/views/res_partner_view.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sf_sale/views/res_partner_view.xml b/sf_sale/views/res_partner_view.xml index a680bd7c..cd83e950 100644 --- a/sf_sale/views/res_partner_view.xml +++ b/sf_sale/views/res_partner_view.xml @@ -100,8 +100,7 @@ + widget="many2one_avatar_user"/> {'readonly': [('id','!=', False)]} From 988c4a460dc03fd3fb07903c3b472ae5d21d845e Mon Sep 17 00:00:00 2001 From: guanhuan Date: Thu, 12 Sep 2024 10:24:45 +0800 Subject: [PATCH 08/14] =?UTF-8?q?2D=E5=8A=A0=E5=B7=A5=E5=9B=BE=E7=BA=B8?= =?UTF-8?q?=E6=94=B9=E4=B8=BApdf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_sale/views/quick_easy_order_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sf_sale/views/quick_easy_order_view.xml b/sf_sale/views/quick_easy_order_view.xml index 232bb1a3..7d6f6133 100644 --- a/sf_sale/views/quick_easy_order_view.xml +++ b/sf_sale/views/quick_easy_order_view.xml @@ -80,7 +80,7 @@ - + From b5a3815f1fde3a0f464aee37179d6cb2de8a005a Mon Sep 17 00:00:00 2001 From: guanhuan Date: Thu, 12 Sep 2024 16:43:54 +0800 Subject: [PATCH 09/14] =?UTF-8?q?=E8=AE=BE=E5=A4=87=E7=BB=B4=E4=BF=9D?= =?UTF-8?q?=E6=A0=87=E5=87=86=E7=AD=9B=E9=80=89=E6=B7=BB=E5=8A=A0=E5=B7=B2?= =?UTF-8?q?=E5=BD=92=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_maintenance/views/equipment_maintenance_standards_views.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/sf_maintenance/views/equipment_maintenance_standards_views.xml b/sf_maintenance/views/equipment_maintenance_standards_views.xml index 1389633b..e14acada 100644 --- a/sf_maintenance/views/equipment_maintenance_standards_views.xml +++ b/sf_maintenance/views/equipment_maintenance_standards_views.xml @@ -79,6 +79,7 @@ + From 22864b966988d9f30e674581b4767f98d9712513 Mon Sep 17 00:00:00 2001 From: "jinling.yang" Date: Thu, 12 Sep 2024 17:06:16 +0800 Subject: [PATCH 10/14] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E6=8F=90=E9=86=92=E6=A8=A1=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_message/__init__.py | 1 + sf_message/__manifest__.py | 25 ++++++ sf_message/models/__init__.py | 1 + sf_message/models/sf_message_template.py | 48 ++++++++++++ sf_message/security/group_security.xml | 5 ++ sf_message/security/ir.model.access.csv | 15 ++++ sf_message/views/sf_message_template_view.xml | 76 +++++++++++++++++++ 7 files changed, 171 insertions(+) create mode 100644 sf_message/__init__.py create mode 100644 sf_message/__manifest__.py create mode 100644 sf_message/models/__init__.py create mode 100644 sf_message/models/sf_message_template.py create mode 100644 sf_message/security/group_security.xml create mode 100644 sf_message/security/ir.model.access.csv create mode 100644 sf_message/views/sf_message_template_view.xml diff --git a/sf_message/__init__.py b/sf_message/__init__.py new file mode 100644 index 00000000..9a7e03ed --- /dev/null +++ b/sf_message/__init__.py @@ -0,0 +1 @@ +from . import models \ No newline at end of file diff --git a/sf_message/__manifest__.py b/sf_message/__manifest__.py new file mode 100644 index 00000000..3a0f37d8 --- /dev/null +++ b/sf_message/__manifest__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': '机企猫智能工厂 消息提醒', + 'version': '1.0', + 'summary': '智能工厂消息提醒模块', + 'sequence': 1, + 'description': """ + + """, + 'category': 'sf', + 'website': 'https://www.sf.jikimo.com', + 'depends': ['base', 'sf_base'], + 'data': [ + 'security/ir.model.access.csv', + 'views/sf_message_template_view.xml', + ], + 'test': [ + ], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/sf_message/models/__init__.py b/sf_message/models/__init__.py new file mode 100644 index 00000000..ec5b1c2f --- /dev/null +++ b/sf_message/models/__init__.py @@ -0,0 +1 @@ +from . import sf_message_template diff --git a/sf_message/models/sf_message_template.py b/sf_message/models/sf_message_template.py new file mode 100644 index 00000000..0d41e9f0 --- /dev/null +++ b/sf_message/models/sf_message_template.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +from odoo import models, fields, api + + +class SfMessageTemplate(models.Model): + _name = "sf.message.template" + _description = u'消息模板' + + name = fields.Char(string=u"名称", required=True) + type = fields.Selection([ + ('待接单', '待接单'), + ('待排程', '待排程'), + ('坯料采购', '坯料采购'), + ('坯料发料', '坯料发料'), + ('待编程', '待编程'), + ('调拨入库', '调拨入库'), + ('功能刀具组装', '功能刀具组装'), + ('功能刀具寿命到期', '功能刀具寿命到期'), + ('程序用刀计划异常', '程序用刀计划异常'), + ('工单无CNC程序', '工单无CNC程序'), + ('生产线无功能刀具', '生产线无功能刀具'), + ('工单无定位数据', '工单无定位数据'), + ('工单FTP无文件', '工单FTP无文件'), + ('工单加工失败', '工单加工失败'), + ('设备故障及异常', '设备故障及异常'), + ('工单逾期预警', '工单逾期预警'), + ('工单已逾期', '工单已逾期'), + ('销售订单逾期', '销售订单逾期'), + ('销售订单已逾期', '销售订单已逾期'), + ('待质量判定', '待质量判定'), + ('生产完工待入库', '生产完工待入库'), + ('订单发货', '订单发货') + ], string='类型', required=True) + description = fields.Char(string=u"描述") + content = fields.Html(string=u"内容", required=True, translate=True) + msgtype = fields.Selection( + [('text', u'文字'), ('markdown', u'Markdown')], u'消息类型', + required=True, default='markdown') + notification_department_id = fields.Many2one('hr.department', u'通知部门', required=True) + notification_employee_ids = fields.Many2many('hr.employee', string=u'员工', + domain="[('department_id', '=',notification_department_id)]", + required=True) + active = fields.Boolean(string=u"是否有效", default=True) + + @api.onchange('notification_department_id') + def _clear_employee_ids(self): + if self.notification_department_id: + self.notification_employee_ids = False diff --git a/sf_message/security/group_security.xml b/sf_message/security/group_security.xml new file mode 100644 index 00000000..fdbc3ae5 --- /dev/null +++ b/sf_message/security/group_security.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/sf_message/security/ir.model.access.csv b/sf_message/security/ir.model.access.csv new file mode 100644 index 00000000..dbb2d6af --- /dev/null +++ b/sf_message/security/ir.model.access.csv @@ -0,0 +1,15 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_sf_message_template_group_sale_salemanager,sf_message_template,model_sf_message_template,sf_base.group_sale_salemanager,1,1,1,0 +access_sf_message_template_group_purchase,sf_message_template,model_sf_message_template,sf_base.group_purchase,1,1,1,0 +access_sf_message_template_group_sf_stock_user,sf_message_template,model_sf_message_template,sf_base.group_sf_stock_user,1,1,1,0 +access_sf_message_template_group_sf_order_user,sf_message_template,model_sf_message_template,sf_base.group_sf_order_user,1,1,1,0 +access_sf_message_template_group_sf_tool_user,sf_message_template,model_sf_message_template,sf_base.group_sf_tool_user,1,1,1,0 + + + + + + + + + diff --git a/sf_message/views/sf_message_template_view.xml b/sf_message/views/sf_message_template_view.xml new file mode 100644 index 00000000..30ca230d --- /dev/null +++ b/sf_message/views/sf_message_template_view.xml @@ -0,0 +1,76 @@ + + + + + + + + sf.message.template.view.form + sf.message.template + +
+ +
+
+ + + + + + + + + +
+
+
+
+ + + sf.message.template.view.tree + sf.message.template + + + + + + + + + + + + + + + + sf.message.template.search.view + sf.message.template + + + + + + + + + + + + 消息模板 + sf.message.template + tree,form + + + + + +
+
\ No newline at end of file From 2e5694cd1a311df553d407be8e55dc33e6045c02 Mon Sep 17 00:00:00 2001 From: yuxianghui <3437689193@qq.com> Date: Thu, 12 Sep 2024 17:20:58 +0800 Subject: [PATCH 11/14] =?UTF-8?q?1=E3=80=81=E4=BC=98=E5=8C=96=E7=BB=84?= =?UTF-8?q?=E8=A3=85=E5=8D=95=E6=89=AB=E6=8F=8F=E9=AA=8C=E8=AF=81=E7=89=A9?= =?UTF-8?q?=E6=96=99=E6=96=B9=E6=B3=95=EF=BC=9B2=E3=80=81=E5=AF=B9?= =?UTF-8?q?=E7=BB=84=E8=A3=85=E5=8D=95=E7=89=A9=E6=96=99=E6=89=B9=E6=AC=A1?= =?UTF-8?q?=E8=BF=9B=E8=A1=8C=E8=B0=83=E6=95=B4=EF=BC=8C=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E9=83=A8=E5=88=86=E5=AD=97=E6=AE=B5=E5=92=8C=E6=96=B9=E6=B3=95?= =?UTF-8?q?=EF=BC=9B=E4=BC=98=E5=8C=96=E8=8E=B7=E5=8F=96BOM=E5=B9=B6?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=88=9D=E5=A7=8B=E5=8C=96=E7=89=A9=E6=96=99?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=96=B9=E6=B3=95=EF=BC=9B3=E3=80=81?= =?UTF-8?q?=E8=B4=A7=E4=BD=8D=E6=89=B9=E6=AC=A1=E6=A8=A1=E5=9E=8B=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E7=89=A9=E6=96=99=E5=AD=97=E6=AE=B5=EF=BC=8C=E6=96=B0?= =?UTF-8?q?=E5=A2=9Etree=E8=A7=86=E5=9B=BE=EF=BC=8C=E5=B9=B6=E4=B8=94?= =?UTF-8?q?=E9=99=A4=E5=88=80=E6=9F=84=E5=A4=96=E7=89=A9=E6=96=99=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E3=80=90=E6=9B=B4=E5=A4=9A=E3=80=91=E6=97=B6=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=E8=87=B3=E4=B8=8D=E5=90=8C=E7=9A=84=E8=B4=A7=E4=BD=8D?= =?UTF-8?q?=E6=89=B9=E6=AC=A1=E6=A8=A1=E5=9E=8Btree=E8=A7=86=E5=9B=BE?= =?UTF-8?q?=EF=BC=9B4=E3=80=81=E6=B7=BB=E5=8A=A0=E5=88=80=E6=9F=84?= =?UTF-8?q?=E5=92=8C=E5=85=B6=E4=BB=96=E7=89=A9=E6=96=99=E5=9C=A8=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E3=80=90=E6=9B=B4=E5=A4=9A=E3=80=91=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E5=90=8E=E9=80=89=E5=8F=96=E6=96=B0=E7=89=A9=E6=96=99=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E3=80=90=E7=A1=AE=E8=AE=A4=E3=80=91=E5=90=8E=E5=9B=9E?= =?UTF-8?q?=E5=A1=AB=E7=89=A9=E6=96=99=E4=BF=A1=E6=81=AF=E5=88=B0=E7=BB=84?= =?UTF-8?q?=E8=A3=85=E5=8D=95=E5=B9=B6=E7=BB=99=E5=87=BA=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=EF=BC=9B5=E3=80=81=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E7=BB=84=E8=A3=85=E7=89=A9=E6=96=99=E4=BF=A1=E6=81=AF=E6=A0=A1?= =?UTF-8?q?=E9=AA=8C=E5=8A=9F=E8=83=BD=EF=BC=8C=E5=88=9D=E5=A7=8B=E5=8C=96?= =?UTF-8?q?=E6=88=96=E9=87=8D=E6=96=B0=E9=80=89=E5=8F=96=E7=89=A9=E6=96=99?= =?UTF-8?q?=E5=90=8E=E9=9C=80=E8=BF=9B=E8=A1=8C=E9=AA=8C=E8=AF=81=E6=89=8D?= =?UTF-8?q?=E8=83=BD=E8=BF=9B=E8=A1=8C=E7=BB=84=E8=A3=85=EF=BC=9B6?= =?UTF-8?q?=E3=80=81=E7=BB=84=E8=A3=85=E5=8D=95form=E8=A7=86=E5=9B=BE?= =?UTF-8?q?=E5=B8=83=E5=B1=80=E8=B0=83=E6=95=B4=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_tool_management/controllers/controllers.py | 3 +- sf_tool_management/models/base.py | 189 ++++++------------ sf_tool_management/models/stock.py | 106 +++++++++- sf_tool_management/views/stock.xml | 127 ++++++++++++ 4 files changed, 295 insertions(+), 130 deletions(-) diff --git a/sf_tool_management/controllers/controllers.py b/sf_tool_management/controllers/controllers.py index 4b0909dc..b3ca0224 100644 --- a/sf_tool_management/controllers/controllers.py +++ b/sf_tool_management/controllers/controllers.py @@ -122,7 +122,8 @@ class Manufacturing_Connect(http.Controller): tool_assembly.write({ 'after_assembly_tool_loading_length': float(data_list[1] or "0"), # 高度(总长度) 'after_assembly_functional_tool_diameter': float(data_list[2] or "0") * 2, # 直径 - 'after_assembly_knife_tip_r_angle': float(data_list[3] or "0") # R角 + 'after_assembly_knife_tip_r_angle': float(data_list[3] or "0"), # R角 + 'bool_preset_parameter': True }) except Exception as e: res = {'Succeed': False, 'ErrorCode': 202, 'Error': e} diff --git a/sf_tool_management/models/base.py b/sf_tool_management/models/base.py index 518c4c0f..76fb20ff 100644 --- a/sf_tool_management/models/base.py +++ b/sf_tool_management/models/base.py @@ -358,6 +358,7 @@ class FunctionalToolAssembly(models.Model): 智能工厂组装单处扫码校验刀具物料 """ for record in self: + tool_assembly_id = self.env['sf.functional.tool.assembly'].browse(self.ids) lot_ids = self.env['stock.lot'].sudo().search([('rfid', '=', barcode)]) if lot_ids: for lot_id in lot_ids: @@ -365,26 +366,31 @@ class FunctionalToolAssembly(models.Model): raise ValidationError(f'Rfid为【{barcode}】的刀柄已被占用,请重新扫描!!') if lot_id.product_id == record.handle_product_id: record.handle_code_id = lot_id.id - record.handle_verify = True + tool_assembly_id.handle_code_id = lot_id.id else: - raise ValidationError('刀具选择错误,请重新确认!!!') + raise ValidationError('刀柄选择错误,请重新确认!!!') else: location = self.env['sf.shelf.location'].sudo().search([('barcode', '=', barcode)]) if location: if location == record.integral_freight_barcode_id: + tool_assembly_id.integral_verify = True record.integral_verify = True elif location == record.blade_freight_barcode_id: + tool_assembly_id.blade_verify = True record.blade_verify = True elif location == record.bar_freight_barcode_id: + tool_assembly_id.bar_verify = True record.bar_verify = True elif location == record.pad_freight_barcode_id: + tool_assembly_id.pad_verify = True record.pad_verify = True elif location == record.chuck_freight_barcode_id: + tool_assembly_id.chuck_verify = True record.chuck_verify = True else: raise ValidationError('刀具选择错误,请重新确认!') else: - raise ValidationError(f'扫描为【{barcode}】的刀具不存在,请重新扫描!') + raise ValidationError(f'扫描为【{barcode}】的货位不存在,请重新扫描!') @api.depends('functional_tool_name') def _compute_name(self): @@ -472,12 +478,9 @@ class FunctionalToolAssembly(models.Model): # 刀具物料信息 # ==============整体式刀具型号============= - integral_freight_barcode_id = fields.Many2one('sf.shelf.location', string='整体式刀具货位', + integral_freight_barcode_id = fields.Many2one('sf.shelf.location', string='整体式刀具货位', readonly=True, domain="[('product_id.cutting_tool_material_id.name', '=', '整体式刀具'),('product_num', '>', 0)]") - integral_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='整体式刀具批次', - domain="[('shelf_location_id', '=', integral_freight_barcode_id)]") - integral_lot_id = fields.Many2one('stock.lot', string='整体式刀具批次', compute='_compute_integral_lot_id', - store=True) + integral_lot_id = fields.Many2one('stock.lot', string='整体式刀具批次', readonly=True) integral_product_id = fields.Many2one('product.product', string='整体式刀具名称', compute='_compute_integral_product_id', store=True) cutting_tool_integral_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='整体式刀具型号', @@ -488,19 +491,6 @@ class FunctionalToolAssembly(models.Model): related='integral_product_id.brand_id') integral_verify = fields.Boolean('整体刀校验', default=False) - @api.onchange('integral_freight_barcode_id') - def _onchange_integral_freight_barcode_id(self): - for item in self: - item.integral_freight_lot_id = False - - @api.depends('integral_freight_lot_id', 'integral_freight_barcode_id') - def _compute_integral_lot_id(self): - for item in self: - if item.integral_freight_lot_id: - item.integral_lot_id = item.integral_freight_lot_id.lot_id.id - elif not item.integral_freight_barcode_id: - item.integral_lot_id = False - @api.depends('integral_lot_id') def _compute_integral_product_id(self): for item in self: @@ -510,11 +500,9 @@ class FunctionalToolAssembly(models.Model): item.integral_product_id = False # =================刀片型号============= - blade_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀片货位', + blade_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀片货位', readonly=True, domain="[('product_id.cutting_tool_material_id.name', '=', '刀片'),('product_num', '>', 0)]") - blade_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='刀片批次', - domain="[('shelf_location_id', '=', blade_freight_barcode_id)]") - blade_lot_id = fields.Many2one('stock.lot', string='刀片批次', compute='blade_freight_lot_id.lot_id', store=True) + blade_lot_id = fields.Many2one('stock.lot', string='刀片批次', readonly=True) blade_product_id = fields.Many2one('product.product', string='刀片名称', compute='_compute_blade_product_id', store=True) cutting_tool_blade_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀片型号', @@ -524,19 +512,6 @@ class FunctionalToolAssembly(models.Model): sf_tool_brand_id_2 = fields.Many2one('sf.machine.brand', '刀片品牌', related='blade_product_id.brand_id') blade_verify = fields.Boolean('刀片校验', default=False) - @api.onchange('blade_freight_barcode_id') - def _onchange_blade_freight_barcode_id(self): - for item in self: - item.blade_freight_lot_id = False - - @api.depends('blade_freight_lot_id', 'blade_freight_barcode_id') - def _compute_blade_lot_id(self): - for item in self: - if item.blade_freight_lot_id: - item.blade_lot_id = item.blade_freight_lot_id.lot_id.id - elif not item.blade_freight_barcode_id: - item.blade_lot_id = False - @api.depends('blade_lot_id') def _compute_blade_product_id(self): for item in self: @@ -546,11 +521,9 @@ class FunctionalToolAssembly(models.Model): item.blade_product_id = False # ==============刀杆型号================ - bar_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀杆货位', + bar_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀杆货位', readonly=True, domain="[('product_id.cutting_tool_material_id.name', '=', '刀杆'),('product_num', '>', 0)]") - bar_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='刀杆批次', - domain="[('shelf_location_id', '=', bar_freight_barcode_id)]") - bar_lot_id = fields.Many2one('stock.lot', string='刀杆批次', compute='_compute_bar_lot_id', store=True) + bar_lot_id = fields.Many2one('stock.lot', string='刀杆批次', readonly=True) bar_product_id = fields.Many2one('product.product', string='刀杆名称', compute='_compute_bar_product_id', store=True) cutting_tool_cutterbar_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀杆型号', @@ -558,20 +531,7 @@ class FunctionalToolAssembly(models.Model): bar_specification_id = fields.Many2one('sf.tool.materials.basic.parameters', string='刀杆规格', related='bar_product_id.specification_id') sf_tool_brand_id_3 = fields.Many2one('sf.machine.brand', '刀杆品牌', related='bar_product_id.brand_id') - brand_verify = fields.Boolean('刀杆校验', default=False) - - @api.onchange('bar_freight_barcode_id') - def _onchange_bar_freight_barcode_id(self): - for item in self: - item.bar_freight_lot_id = False - - @api.depends('bar_freight_lot_id', 'bar_freight_barcode_id') - def _compute_bar_lot_id(self): - for item in self: - if item.bar_freight_lot_id: - item.bar_lot_id = item.bar_freight_lot_id.lot_id.id - elif not item.bar_freight_barcode_id: - item.bar_lot_id = False + bar_verify = fields.Boolean('刀杆校验', default=False) @api.depends('bar_lot_id') def _compute_bar_product_id(self): @@ -582,11 +542,9 @@ class FunctionalToolAssembly(models.Model): item.bar_product_id = False # =============刀盘型号================ - pad_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀盘货位', + pad_freight_barcode_id = fields.Many2one('sf.shelf.location', string='刀盘货位', readonly=True, domain="[('product_id.cutting_tool_material_id.name', '=', '刀盘'),('product_num', '>', 0)]") - pad_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='刀盘批次', - domain="[('shelf_location_id', '=', pad_freight_barcode_id)]") - pad_lot_id = fields.Many2one('stock.lot', string='刀盘批次', compute='_compute_pad_lot_id', store=True) + pad_lot_id = fields.Many2one('stock.lot', string='刀盘批次', readonly=True) pad_product_id = fields.Many2one('product.product', string='刀盘名称', compute='_compute_pad_product_id', store=True) cutting_tool_cutterpad_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀盘型号', @@ -596,19 +554,6 @@ class FunctionalToolAssembly(models.Model): sf_tool_brand_id_4 = fields.Many2one('sf.machine.brand', '刀盘品牌', related='pad_product_id.brand_id') pad_verify = fields.Boolean('刀盘校验', default=False) - @api.onchange('pad_freight_barcode_id') - def _onchange_pad_freight_barcode_id(self): - for item in self: - item.pad_freight_lot_id = False - - @api.depends('pad_freight_lot_id', 'pad_freight_barcode_id') - def _compute_pad_lot_id(self): - for item in self: - if item.pad_freight_lot_id: - item.pad_lot_id = item.pad_freight_lot_id.lot_id.id - elif not item.pad_freight_barcode_id: - item.pad_lot_id = False - @api.depends('pad_lot_id') def _compute_pad_product_id(self): for item in self: @@ -618,12 +563,10 @@ class FunctionalToolAssembly(models.Model): item.pad_product_id = False # ==============刀柄型号============== - handle_freight_rfid = fields.Char('刀柄Rfid', compute='_compute_handle_product_id', store=True) - handle_code_id = fields.Many2one('stock.lot', '刀柄序列号', - domain=[('product_id.cutting_tool_material_id.name', '=', '刀柄'), - ('tool_material_status', '=', '可用')]) - handle_product_id = fields.Many2one('product.product', string='刀柄名称', compute='_compute_handle_product_id', - store=True) + handle_code_id = fields.Many2one('stock.lot', '刀柄序列号', readonly=True, + domain="[('product_id', '=', handle_product_id)]") + handle_freight_rfid = fields.Char('刀柄Rfid', compute='_compute_handle_rfid', store=True) + handle_product_id = fields.Many2one('product.product', string='刀柄名称', readonly=True) cutting_tool_cutterhandle_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='刀柄型号', related='handle_product_id.cutting_tool_model_id') handle_specification_id = fields.Many2one('sf.tool.materials.basic.parameters', string='刀柄规格', @@ -632,23 +575,19 @@ class FunctionalToolAssembly(models.Model): handle_verify = fields.Boolean('刀柄校验', default=False) @api.depends('handle_code_id') - def _compute_handle_product_id(self): + def _compute_handle_rfid(self): for item in self: if item.handle_code_id: - item.handle_product_id = item.handle_code_id.product_id.id item.handle_freight_rfid = item.handle_code_id.rfid item.rfid = item.handle_freight_rfid else: - item.handle_product_id = False item.handle_freight_rfid = False item.rfid = False # ==============夹头型号============== - chuck_freight_barcode_id = fields.Many2one('sf.shelf.location', string='夹头货位', + chuck_freight_barcode_id = fields.Many2one('sf.shelf.location', string='夹头货位', readonly=True, domain="[('product_id.cutting_tool_material_id.name', '=', '夹头'),('product_num', '>', 0)]") - chuck_freight_lot_id = fields.Many2one('sf.shelf.location.lot', string='夹头批次', - domain="[('shelf_location_id', '=', chuck_freight_barcode_id)]") - chuck_lot_id = fields.Many2one('stock.lot', string='夹头批次', compute='_compute_chuck_lot_id', store=True) + chuck_lot_id = fields.Many2one('stock.lot', string='夹头批次', readonly=True) chuck_product_id = fields.Many2one('product.product', string='夹头名称', compute='_compute_chuck_product_id', store=True) cutting_tool_cutterhead_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='夹头型号', @@ -658,19 +597,6 @@ class FunctionalToolAssembly(models.Model): sf_tool_brand_id_6 = fields.Many2one('sf.machine.brand', '夹头品牌', related='chuck_product_id.brand_id') chuck_verify = fields.Boolean('夹头校验', default=False) - @api.onchange('chuck_freight_barcode_id') - def _onchange_chuck_freight_barcode_id(self): - for item in self: - item.chuck_freight_lot_id = False - - @api.depends('chuck_freight_lot_id', 'chuck_freight_barcode_id') - def _compute_chuck_lot_id(self): - for item in self: - if item.chuck_freight_lot_id: - item.chuck_lot_id = item.chuck_freight_lot_id.lot_id.id - elif not item.chuck_freight_barcode_id: - item.chuck_lot_id = False - @api.depends('chuck_lot_id') def _compute_chuck_product_id(self): for item in self: @@ -841,7 +767,8 @@ class FunctionalToolAssembly(models.Model): # 配置刀柄信息 for handle_id in bom.get('handle_ids'): if handle_id: - self.handle_product_id = handle_id.id + if not self.handle_product_id: + self.handle_product_id = handle_id.id break # 刀柄之外的物料配置 @@ -850,26 +777,26 @@ class FunctionalToolAssembly(models.Model): integra_lot_id = self._get_old_tool_material_lot(bom.get('integral_ids')) integra_location_lot_id = self._get_shelf_location_lot(integra_lot_id) self.integral_freight_barcode_id = integra_location_lot_id.shelf_location_id.id - self.integral_freight_lot_id = integra_location_lot_id.id + self.integral_lot_id = integra_location_lot_id.lot_id.id else: # 配置刀片 blade_lot_id = self._get_old_tool_material_lot(bom.get('blade_ids')) blade_location_lot_id = self._get_shelf_location_lot(blade_lot_id) self.blade_freight_barcode_id = blade_location_lot_id.shelf_location_id.id - self.blade_freight_lot_id = blade_location_lot_id.id + self.blade_lot_id = blade_location_lot_id.lot_id.id if options == '刀柄+刀杆+刀片': # 配置刀杆 bar_lot_id = self._get_old_tool_material_lot(bom.get('bar_ids')) bar_location_lot_id = self._get_shelf_location_lot(bar_lot_id) self.bar_freight_barcode_id = bar_location_lot_id.shelf_location_id.id - self.bar_freight_lot_id = bar_location_lot_id.id + self.bar_lot_id = bar_location_lot_id.lot_id.id elif options == '刀柄+刀盘+刀片': # 配置刀盘 pad_lot_id = self._get_old_tool_material_lot(bom.get('pad_ids')) pad_location_lot_id = self._get_shelf_location_lot(pad_lot_id) self.pad_freight_barcode_id = pad_location_lot_id.shelf_location_id.id - self.pad_freight_lot_id = pad_location_lot_id.id + self.pad_lot_id = pad_location_lot_id.lot_id.id def _get_old_tool_material_lot(self, material_ids): """ 根据先进先出原则选择物料批次 """ @@ -896,7 +823,7 @@ class FunctionalToolAssembly(models.Model): options = inventory_id.jikimo_bom_ids.options # BOM产品组装类型 if not product_ids or not options: - raise ValidationError('功能刀具清单的BOM未进行配置,请先配置BOM再开始组装!') + raise ValidationError('功能刀具清单的BOM未进行配置,请先配置BOM信息!') handle_ids = product_ids.filtered(lambda a: a.cutting_tool_material_id.name == '刀柄') integral_ids = product_ids.filtered(lambda a: a.cutting_tool_material_id.name == '整体式刀具') blade_ids = product_ids.filtered(lambda a: a.cutting_tool_material_id.name == '刀片') @@ -934,39 +861,46 @@ class FunctionalToolAssembly(models.Model): if tool_type == '刀柄': tool_material_ids = tool_data.get('handle_ids') + tool_material_tree_id = self.env.ref('sf_tool_management.view_tool_product_tree') elif tool_type == '整体式刀具': tool_material_ids = self._get_all_material_location_lot(tool_data.get('integral_ids')) + tool_material_tree_id = self.env.ref('sf_tool_management.view_shelf_location_lot_tree_1') elif tool_type == '刀片': - tool_material_ids = self._get_all_material_location_lot(tool_data.get('handle_ids')) + tool_material_ids = self._get_all_material_location_lot(tool_data.get('blade_ids')) + tool_material_tree_id = self.env.ref('sf_tool_management.view_shelf_location_lot_tree_2') elif tool_type == '刀杆': tool_material_ids = self._get_all_material_location_lot(tool_data.get('bar_ids')) + tool_material_tree_id = self.env.ref('sf_tool_management.view_shelf_location_lot_tree_3') else: tool_material_ids = self._get_all_material_location_lot(tool_data.get('pad_ids')) + tool_material_tree_id = self.env.ref('sf_tool_management.view_shelf_location_lot_tree_4') if tool_type == '刀柄': return { "type": "ir.actions.act_window", "res_model": "product.product", - "views": [[self.env.ref('sf_tool_management.view_tool_product_tree').id, "tree"], + "views": [[tool_material_tree_id.id, "tree"], [self.env.ref('sf_tool_management.view_tool_product_search').id, "search"]], "target": "new", - "domain": [('id', 'in', tool_material_ids.ids)] + "domain": [('id', 'in', tool_material_ids.ids)], + "context": {'tool_id': self.id} } elif tool_type in ['整体式刀具', '刀片', '刀杆', '刀盘']: return { "type": "ir.actions.act_window", "res_model": "sf.shelf.location.lot", - "views": [[False, "tree"]], + "views": [[tool_material_tree_id.id, "tree"]], "target": "new", "domain": [('id', 'in', tool_material_ids.ids)], - "context": {'create': False} + "context": {'tool_id': self.id} } def _get_all_material_location_lot(self, material_ids): """ 获取所有满足条件 """ location_id = self.env['stock.location'].search([('name', '=', '刀具房')]) stock_quant_ids = self.env['stock.quant'].sudo().search( - [('location_id', '=', location_id.id), ('product_id', 'in', material_ids.ids), ('quantity', '>', '0')]) + [('location_id', '=', location_id.id), ('product_id', 'in', material_ids.ids if material_ids else []), + ('quantity', '>', '0')]) lot_ids = [] for stock_quant_id in stock_quant_ids: lot_ids.append(stock_quant_id.lot_id.id) @@ -1033,22 +967,21 @@ class FunctionalToolAssembly(models.Model): # 物料必填校验 if not self.handle_code_id: raise ValidationError('缺少【刀柄】物料信息!') - if not self.integral_product_id and not self.blade_product_id: - raise ValidationError('【整体式刀具】和【刀片】必须填写一个!') - if self.blade_product_id: - if not self.bar_product_id and not self.pad_product_id: - raise ValidationError('【刀盘】和【刀杆】必须填写一个!') + if self.integral_lot_id: + if not self.integral_verify: + raise ValidationError('【整体式刀具】未进行验证!') + elif self.blade_lot_id: + if not self.blade_verify: + raise ValidationError('【刀片】未进行验证!') + if self.bar_lot_id: + if not self.bar_verify: + raise ValidationError('【刀杆】未进行验证!') + elif self.pad_lot_id: + if not self.pad_verify: + raise ValidationError('【刀盘】未进行验证!') # 组装参数必填校验 - if self.after_assembly_functional_tool_length == 0: - raise ValidationError('组装参数信息【伸出长】不能为0!') if self.after_assembly_max_lifetime_value == 0: raise ValidationError('组装参数信息【最大寿命值】不能为0!') - # if self.after_assembly_alarm_value == 0: - # raise ValidationError('组装参数信息【报警值】不能为0!') - # if self.after_assembly_effective_length == 0: - # raise ValidationError('组装参数信息【有效长】不能为0!!!') - # if self.hiding_length == 0: - # raise ValidationError('组装参数信息【避空长】不能为0!!!') if self.after_assembly_functional_tool_diameter <= 0: raise ValidationError('组装参数信息【刀具直径】不能小于等于0!') if self.after_assembly_tool_loading_length == 0: @@ -1172,6 +1105,13 @@ class FunctionalToolAssembly(models.Model): return functional_tool return False + bool_preset_parameter = fields.Boolean('', default=False) + + def get_tool_preset_parameter(self): + if not self.bool_preset_parameter: + raise ValidationError('没有获取到测量数据, 请确认刀具预调仪操作是否正确!') + return True + def assemble_single_print(self): """ todo 组装单打印 @@ -1563,6 +1503,7 @@ class FunctionalToolDismantle(models.Model): assembly_id = self.env['sf.functional.tool.assembly'].sudo().create({ 'functional_tool_name': self.functional_tool_id.name, 'handle_code_id': self.handle_lot_id.id, + 'handle_product_id': self.handle_product_id.id, 'loading_task_source': '3', 'reason_for_applying': '刀具寿命到期' }) diff --git a/sf_tool_management/models/stock.py b/sf_tool_management/models/stock.py index 50218e65..32719520 100644 --- a/sf_tool_management/models/stock.py +++ b/sf_tool_management/models/stock.py @@ -115,6 +115,13 @@ class StockPicking(models.Model): num = "%03d" % m return name + str(num) + def tool_location_num(self, freight_barcode_id, lot_id): + location_lot = self.env['sf.shelf.location.lot'].sudo().search([('lot_id', '=', lot_id.id), ( + 'shelf_location_id', '=', freight_barcode_id.id)]) + if not location_lot: + raise ValidationError( + f'[{freight_barcode_id.barcode}]货位的[{lot_id.name}]批次物料已用完,请重新选择!') + def create_tool_stocking_picking1(self, obj): """ 创建刀具物料出库单 @@ -133,25 +140,32 @@ class StockPicking(models.Model): stock_move_id = self.env['stock.move'] datas = {'data': [], 'picking_id': picking_id} if obj.handle_code_id: + if obj.handle_code_id.tool_material_status == '在用': + raise ValidationError(f'Rfid为{obj.handle_code_id.rfid}的刀柄已被使用,请重新选择!') # 修改刀柄序列号状态为【在用】 obj.handle_code_id.sudo().write({'tool_material_status': '在用'}) datas['data'].append( {'current_location_id': self.env['sf.shelf.location'], 'lot_id': obj.handle_code_id}) if obj.integral_product_id: + self.tool_location_num(obj.integral_freight_barcode_id, obj.integral_lot_id) datas['data'].append( - {'current_location_id': obj.integral_freight_barcode_id, 'lot_id': obj.integral_freight_lot_id.lot_id}) + {'current_location_id': obj.integral_freight_barcode_id, 'lot_id': obj.integral_lot_id}) if obj.blade_product_id: + self.tool_location_num(obj.blade_freight_barcode_id, obj.blade_lot_id) datas['data'].append( - {'current_location_id': obj.blade_freight_barcode_id, 'lot_id': obj.blade_freight_lot_id.lot_id}) + {'current_location_id': obj.blade_freight_barcode_id, 'lot_id': obj.blade_lot_id}) if obj.bar_product_id: + self.tool_location_num(obj.bar_freight_barcode_id, obj.bar_lot_id) datas['data'].append( - {'current_location_id': obj.bar_freight_barcode_id, 'lot_id': obj.bar_freight_lot_id.lot_id}) + {'current_location_id': obj.bar_freight_barcode_id, 'lot_id': obj.bar_lot_id}) if obj.pad_product_id: + self.tool_location_num(obj.pad_freight_barcode_id, obj.pad_lot_id) datas['data'].append( - {'current_location_id': obj.pad_freight_barcode_id, 'lot_id': obj.pad_freight_lot_id.lot_id}) + {'current_location_id': obj.pad_freight_barcode_id, 'lot_id': obj.pad_lot_id}) if obj.chuck_product_id: + self.tool_location_num(obj.chuck_freight_barcode_id, obj.chuck_lot_id) datas['data'].append( - {'current_location_id': obj.chuck_freight_barcode_id, 'lot_id': obj.chuck_freight_lot_id.lot_id}) + {'current_location_id': obj.chuck_freight_barcode_id, 'lot_id': obj.chuck_lot_id}) # 创建刀具物料出库库存移动记录 stock_move_id.create_tool_material_stock_moves(datas) # 将刀具物料出库库单的状态更改为就绪 @@ -187,6 +201,9 @@ class StockMove(models.Model): stock_move_ids = [] for res in data: if res: + if res['lot_id'].product_qty <= 0: + raise ValidationError( + f'[{res["lot_id"].product_id.name}产品的{res["lot_id"].name}]批次/序列号库存不足!') # 创建库存移动记录 stock_move_id = self.env['stock.move'].sudo().create({ 'name': picking_id.name, @@ -248,8 +265,87 @@ class ProductProduct(models.Model): num = "%03d" % m return '%s-%s' % (code, num) + def set_tool_material(self): + tool_id = self.env.context.get('tool_id') + tool_assembly_id = self.env['sf.functional.tool.assembly'].sudo().search([('id', '=', tool_id)]) + if len(self) > 1: + raise ValidationError('请不要多选') + else: + tool_assembly_id.handle_product_id = self.id + tool_assembly_id.handle_code_id = False + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'message': '刀柄信息更改成功', + 'type': 'success', + 'next': {'type': 'ir.actions.act_window_close'} + } + } + class SfShelfLocationLot(models.Model): _inherit = 'sf.shelf.location.lot' + product_id = fields.Many2one('product.product', '产品', compute='_compute_product_id', store=True) + cutting_tool_type = fields.Char(string="刀具物料类型", compute='_compute_product_id', store=True) + cutting_tool_type_id = fields.Many2one('sf.cutting.tool.type', string='类型', + related='product_id.cutting_tool_type_id') + cutting_tool_model_id = fields.Many2one('sf.cutting_tool.standard.library', string='型号名称', + related='product_id.cutting_tool_model_id') + specification_id = fields.Many2one('sf.tool.materials.basic.parameters', string='物料号', + related='product_id.specification_id') + brand_id = fields.Many2one('sf.machine.brand', '品牌', related='product_id.brand_id') + cutting_tool_blade_diameter = fields.Float('刃部直径(mm)', related='product_id.cutting_tool_blade_diameter') + cutting_tool_blade_tip_working_size = fields.Char('刀尖R角(mm)', + related='product_id.cutting_tool_blade_tip_working_size') + cutting_tool_blade_radius = fields.Char('刀尖圆弧半径(mm)', + related='product_id.cutting_tool_blade_tip_circular_arc_radius') + cutting_tool_cutter_arbor_diameter = fields.Float('刀杆直径(mm)', + related='product_id.cutting_tool_cutter_arbor_diameter') + cutting_tool_cutter_head_diameter = fields.Float('刀盘直径(mm)', + related='product_id.cutting_tool_cutter_head_diameter') + + fit_blade_shape_id = fields.Many2one('maintenance.equipment.image', '适配刀片形状', + related='product_id.fit_blade_shape_id') + + @api.depends('lot_id') + def _compute_product_id(self): + for item in self: + if item.lot_id: + item.product_id = item.lot_id.product_id.id + item.cutting_tool_type = item.lot_id.product_id.cutting_tool_type + + def set_tool_material(self): + tool_type = self.env.context.get('tool_type') + tool_id = self.env.context.get('tool_id') + tool_assembly_id = self.env['sf.functional.tool.assembly'].sudo().search([('id', '=', tool_id)]) + if len(self) > 1: + raise ValidationError('请不要多选') + if tool_type == '整体式刀具': + tool_assembly_id.integral_freight_barcode_id = self.shelf_location_id.id + tool_assembly_id.integral_lot_id = self.lot_id.id + tool_assembly_id.integral_verify = False + elif tool_type == '刀片': + tool_assembly_id.blade_freight_barcode_id = self.shelf_location_id.id + tool_assembly_id.blade_lot_id = self.lot_id.id + tool_assembly_id.blade_verify = False + elif tool_type == '刀杆': + tool_assembly_id.bar_freight_barcode_id = self.shelf_location_id.id + tool_assembly_id.bar_lot_id = self.lot_id.id + tool_assembly_id.bar_verify = False + elif tool_type == '刀盘': + tool_assembly_id.pad_freight_barcode_id = self.shelf_location_id.id + tool_assembly_id.pad_lot_id = self.lot_id.id + tool_assembly_id.pad_verify = False + + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'message': f'[{tool_type}]物料信息更改成功', + 'type': 'success', + 'next': {'type': 'ir.actions.act_window_close'} + } + } diff --git a/sf_tool_management/views/stock.xml b/sf_tool_management/views/stock.xml index 81783631..c0942282 100644 --- a/sf_tool_management/views/stock.xml +++ b/sf_tool_management/views/stock.xml @@ -11,4 +11,131 @@
+ + + 刀柄 + product.product + + +
+
+ + + + + + + + +
+
+
+ + + product.product + + + + + + + + + sf.shelf.location.lot.tree + sf.shelf.location.lot + + +
+
+ + + + + + + + + + + +
+
+
+ + + sf.shelf.location.lot.tree + sf.shelf.location.lot + + +
+
+ + + + + + + + + + + +
+
+
+ + + + sf.shelf.location.lot.tree + sf.shelf.location.lot + + +
+
+ + + + + + + + + + + +
+
+
+ + + sf.shelf.location.lot.tree + sf.shelf.location.lot + + +
+
+ + + + + + + + + + + +
+
+
\ No newline at end of file From 43a49242c5c37845a96c0c33b5f456e3d462d861 Mon Sep 17 00:00:00 2001 From: yuxianghui <3437689193@qq.com> Date: Thu, 12 Sep 2024 17:21:37 +0800 Subject: [PATCH 12/14] =?UTF-8?q?1=E3=80=81=E7=BB=84=E8=A3=85=E5=8D=95?= =?UTF-8?q?=E5=B8=83=E5=B1=80=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_tool_management/views/tool_base_views.xml | 180 +++++++++---------- 1 file changed, 87 insertions(+), 93 deletions(-) diff --git a/sf_tool_management/views/tool_base_views.xml b/sf_tool_management/views/tool_base_views.xml index 0c492721..ab4912ce 100644 --- a/sf_tool_management/views/tool_base_views.xml +++ b/sf_tool_management/views/tool_base_views.xml @@ -479,6 +479,10 @@
-
- -
- -
- - - - - - - - - -
-
-
- -
- -
- - - - - - - - - - - -
-
@@ -594,65 +551,102 @@

- - - - - - - + + + + + + + + + + +
- -
- -
+ +
+ + + +
+ +
+ - - - + + + + + + +
+
+
+ + +
+ +
+ + + + + + + + + + + + +
+
+ +
+ +
+ + + + + + + + + + + + + +
+
- - - - - - - - - - - - - - - - - - - -
From 5f5e991d33f275ad247d7f8d41956d2bc609a3d7 Mon Sep 17 00:00:00 2001 From: "jinling.yang" Date: Thu, 12 Sep 2024 17:24:01 +0800 Subject: [PATCH 13/14] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_message/models/sf_message_template.py | 2 +- sf_message/views/sf_message_template_view.xml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sf_message/models/sf_message_template.py b/sf_message/models/sf_message_template.py index 0d41e9f0..4d89cc2a 100644 --- a/sf_message/models/sf_message_template.py +++ b/sf_message/models/sf_message_template.py @@ -32,7 +32,7 @@ class SfMessageTemplate(models.Model): ('订单发货', '订单发货') ], string='类型', required=True) description = fields.Char(string=u"描述") - content = fields.Html(string=u"内容", required=True, translate=True) + content = fields.Html(string=u"内容", render_engine='qweb', translate=True, prefetch=True, sanitize=False) msgtype = fields.Selection( [('text', u'文字'), ('markdown', u'Markdown')], u'消息类型', required=True, default='markdown') diff --git a/sf_message/views/sf_message_template_view.xml b/sf_message/views/sf_message_template_view.xml index 30ca230d..ac412589 100644 --- a/sf_message/views/sf_message_template_view.xml +++ b/sf_message/views/sf_message_template_view.xml @@ -19,7 +19,8 @@

- + From 6ad2fa80f1e96c82232ee853ddf6e0556a6d03e6 Mon Sep 17 00:00:00 2001 From: hujiaying Date: Fri, 13 Sep 2024 10:15:26 +0800 Subject: [PATCH 14/14] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=94=80=E5=94=AE?= =?UTF-8?q?=EF=BC=8C=E9=87=87=E8=B4=AD=EF=BC=8C=E5=88=B6=E9=80=A0=EF=BC=8C?= =?UTF-8?q?=E4=BB=93=E5=BA=93=E4=BA=A7=E5=93=81=E8=AE=BE=E7=BD=AE=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E7=B1=BB=E5=9E=8B=E4=B8=BA=E9=BB=98=E8=AE=A4=E5=88=86?= =?UTF-8?q?=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/product_template_management_view.xml | 18 ++++++++++++------ .../views/mrp_workcenter_views.xml | 2 +- sf_sale/views/purchase_order_view.xml | 5 +++++ sf_sale/views/sale_order_view.xml | 5 +++++ sf_stock/__manifest__.py | 3 ++- sf_stock/models/stock_picking.py | 2 -- sf_stock/views/stock_picking.xml | 1 + sf_stock/views/stock_product_template.xml | 11 +++++++++++ 8 files changed, 37 insertions(+), 10 deletions(-) create mode 100644 sf_stock/views/stock_product_template.xml diff --git a/sf_dlm_management/views/product_template_management_view.xml b/sf_dlm_management/views/product_template_management_view.xml index 2cdfd1a3..caefcb34 100644 --- a/sf_dlm_management/views/product_template_management_view.xml +++ b/sf_dlm_management/views/product_template_management_view.xml @@ -1,6 +1,11 @@ + + + {"search_default_categ_id":1,"search_default_consumable": 1, 'default_detailed_type': 'product'} + + product.template.form.inherit.sf product.template @@ -88,7 +93,8 @@ - + - - - - - + + + + + diff --git a/sf_manufacturing/views/mrp_workcenter_views.xml b/sf_manufacturing/views/mrp_workcenter_views.xml index 37ff8af5..5ba5290d 100644 --- a/sf_manufacturing/views/mrp_workcenter_views.xml +++ b/sf_manufacturing/views/mrp_workcenter_views.xml @@ -43,7 +43,7 @@ + + + {"search_default_categ_id":1,"search_default_filter_to_purchase":1, "purchase_product_template": 1} + + \ No newline at end of file diff --git a/sf_sale/views/sale_order_view.xml b/sf_sale/views/sale_order_view.xml index 534d42e4..506f5b8d 100644 --- a/sf_sale/views/sale_order_view.xml +++ b/sf_sale/views/sale_order_view.xml @@ -225,5 +225,10 @@ + + {"search_default_categ_id":1, + "search_default_filter_to_sell":1,"sale_multi_pricelist_product_template": 1} + + \ No newline at end of file diff --git a/sf_stock/__manifest__.py b/sf_stock/__manifest__.py index 40f9113b..1b5f44c4 100644 --- a/sf_stock/__manifest__.py +++ b/sf_stock/__manifest__.py @@ -3,7 +3,7 @@ 'name': "sf_stock", 'summary': """ - 处理代发货业务""", + 处理仓库 -代发货业务""", 'description': """ Long description of module's purpose @@ -25,6 +25,7 @@ 'data': [ # 'security/ir.model.access.csv', 'views/stock_picking.xml', + 'views/stock_product_template.xml' ], # only loaded in demonstration mode 'demo': [ diff --git a/sf_stock/models/stock_picking.py b/sf_stock/models/stock_picking.py index 82ce7ea5..3a64f78c 100644 --- a/sf_stock/models/stock_picking.py +++ b/sf_stock/models/stock_picking.py @@ -13,8 +13,6 @@ _logger = logging.getLogger(__name__) class StockPicking(models.Model): _inherit = 'stock.picking' - cancel_backorder_ids = fields.Boolean(default=False, string='是否取消后置单据') - # 重写验证,下发发货到bfm def button_validate(self): info = super(StockPicking, self).button_validate() diff --git a/sf_stock/views/stock_picking.xml b/sf_stock/views/stock_picking.xml index 7750ca76..5bf4d40e 100644 --- a/sf_stock/views/stock_picking.xml +++ b/sf_stock/views/stock_picking.xml @@ -1,3 +1,4 @@ + diff --git a/sf_stock/views/stock_product_template.xml b/sf_stock/views/stock_product_template.xml new file mode 100644 index 00000000..2d2a2fbe --- /dev/null +++ b/sf_stock/views/stock_product_template.xml @@ -0,0 +1,11 @@ + + + + + + {"search_default_categ_id":1,"search_default_consumable": 1, 'default_detailed_type': 'product'} + + + + + \ No newline at end of file