Compare commits
21 Commits
feature/根据
...
release/re
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
20069d5336 | ||
|
|
fe8df494f9 | ||
|
|
0e7d6fac4e | ||
|
|
32cd68e15f | ||
|
|
70113cb3c5 | ||
|
|
f0e47371ed | ||
|
|
6dde814acc | ||
|
|
71ab241e94 | ||
|
|
272e424975 | ||
|
|
1fd9900e41 | ||
|
|
0a13acbb68 | ||
|
|
a68d6d4d06 | ||
|
|
c630074f4a | ||
|
|
e2ddac4fb0 | ||
|
|
e52ec3982f | ||
|
|
160bd117b7 | ||
|
|
4b026535f8 | ||
|
|
99ac89f995 | ||
|
|
35b1d648c3 | ||
|
|
fe3492ceb5 | ||
|
|
4274b9fe99 |
@@ -16,6 +16,7 @@ class PurchaseRequest(models.Model):
|
|||||||
)
|
)
|
||||||
|
|
||||||
rule_new_add = fields.Boolean('采购请求为规则创建', default=False, compute='_compute_state', store=True)
|
rule_new_add = fields.Boolean('采购请求为规则创建', default=False, compute='_compute_state', store=True)
|
||||||
|
rule_purchase_to_request = fields.Boolean('采购单根据规则创建坯料采购申请', default=False)
|
||||||
|
|
||||||
@api.depends('state')
|
@api.depends('state')
|
||||||
def _compute_state(self):
|
def _compute_state(self):
|
||||||
|
|||||||
@@ -44,4 +44,15 @@ class StockPicking(models.Model):
|
|||||||
purchase_request_lines.move_dest_ids = [
|
purchase_request_lines.move_dest_ids = [
|
||||||
(4, x.id) for x in backorder_ids.move_ids if x.product_id.id in purchase_request_lines.mapped('product_id.id')
|
(4, x.id) for x in backorder_ids.move_ids if x.product_id.id in purchase_request_lines.mapped('product_id.id')
|
||||||
]
|
]
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
def _subcontracted_produce(self, subcontract_details):
|
||||||
|
super()._subcontracted_produce(subcontract_details)
|
||||||
|
|
||||||
|
# 判断是否根据规则生成新的采购申请单据,如果生成则修改状态为 approved
|
||||||
|
if self:
|
||||||
|
pr_ids = self.env["purchase.request"].sudo().search(
|
||||||
|
[('origin', 'like', self.name), ('rule_purchase_to_request', '=', True), ('state', '=', 'draft')])
|
||||||
|
if pr_ids:
|
||||||
|
pr_ids.write({'need_validation': False})
|
||||||
|
pr_ids.write({"state": "approved", 'need_validation': True, 'rule_new_add': False})
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ class StockRule(models.Model):
|
|||||||
request_data = rule._prepare_purchase_request(
|
request_data = rule._prepare_purchase_request(
|
||||||
procurement.origin, procurement.values
|
procurement.origin, procurement.values
|
||||||
)
|
)
|
||||||
request_data.update({'rule_new_add': True})
|
request_data = self._update_request_data(procurement, request_data)
|
||||||
pr = purchase_request_model.create(request_data)
|
pr = purchase_request_model.create(request_data)
|
||||||
cache[domain] = pr
|
cache[domain] = pr
|
||||||
elif (
|
elif (
|
||||||
@@ -44,6 +44,18 @@ class StockRule(models.Model):
|
|||||||
request_line_data.update({'origin': procurement.origin})
|
request_line_data.update({'origin': procurement.origin})
|
||||||
purchase_request_line_model.create(request_line_data)
|
purchase_request_line_model.create(request_line_data)
|
||||||
|
|
||||||
|
def _update_request_data(self, procurement, request_data):
|
||||||
|
sp = self.env['stock.picking'].sudo().search([('name', '=', procurement.origin)])
|
||||||
|
if len(sp) == 1:
|
||||||
|
po = self.env['purchase.order'].sudo().search(
|
||||||
|
[('name', '=', sp.origin), ('purchase_type', '=', 'outsourcing')])
|
||||||
|
if po:
|
||||||
|
request_data.update({'rule_purchase_to_request': True})
|
||||||
|
else:
|
||||||
|
request_data.update({'rule_new_add': True})
|
||||||
|
return request_data
|
||||||
|
|
||||||
|
|
||||||
def _run_buy(self, procurements):
|
def _run_buy(self, procurements):
|
||||||
# 如果补货组相同,并且产品相同,则合并
|
# 如果补货组相同,并且产品相同,则合并
|
||||||
procurements_dict = defaultdict()
|
procurements_dict = defaultdict()
|
||||||
|
|||||||
@@ -67,6 +67,16 @@
|
|||||||
<field name="part_number"/>
|
<field name="part_number"/>
|
||||||
<field name="part_name" invisible="1"/>
|
<field name="part_name" invisible="1"/>
|
||||||
</xpath>
|
</xpath>
|
||||||
|
<xpath expr="//tree" position="inside">
|
||||||
|
<header>
|
||||||
|
<button
|
||||||
|
name="%(purchase_request.action_purchase_request_line_make_purchase_order)d"
|
||||||
|
string="创建询价单"
|
||||||
|
type="action"
|
||||||
|
class="btn-primary"
|
||||||
|
/>
|
||||||
|
</header>
|
||||||
|
</xpath>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|||||||
@@ -72,6 +72,7 @@ class SfProductionDemandPlan(models.Model):
|
|||||||
model_long = fields.Char('尺寸(mm)', compute='_compute_model_long')
|
model_long = fields.Char('尺寸(mm)', compute='_compute_model_long')
|
||||||
blank_type = fields.Selection([('圆料', '圆料'), ('方料', '方料')], string='坯料分类',
|
blank_type = fields.Selection([('圆料', '圆料'), ('方料', '方料')], string='坯料分类',
|
||||||
related='product_id.blank_type')
|
related='product_id.blank_type')
|
||||||
|
blank_precision = fields.Selection([('精坯', '精坯'), ('粗坯', '粗坯')], string='坯料类型', related='product_id.blank_precision')
|
||||||
embryo_long = fields.Char('坯料尺寸(mm)', compute='_compute_embryo_long')
|
embryo_long = fields.Char('坯料尺寸(mm)', compute='_compute_embryo_long')
|
||||||
materials_id = fields.Char('材料', compute='_compute_materials_id', store=True)
|
materials_id = fields.Char('材料', compute='_compute_materials_id', store=True)
|
||||||
model_machining_precision = fields.Selection(selection=_get_machining_precision, string='精度',
|
model_machining_precision = fields.Selection(selection=_get_machining_precision, string='精度',
|
||||||
|
|||||||
@@ -81,4 +81,9 @@
|
|||||||
input,label {
|
input,label {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th[data-name=processing_time] + th::before{
|
||||||
|
content: '待执行单据';
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
|
|||||||
@@ -4,14 +4,13 @@
|
|||||||
<field name="model">sf.production.demand.plan</field>
|
<field name="model">sf.production.demand.plan</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="需求计划" default_order="sequence desc,id desc" editable="bottom"
|
<tree string="需求计划" default_order="sequence desc,id desc" editable="bottom"
|
||||||
class="demand_plan_tree">
|
class="demand_plan_tree freeze-columns-before-part_number">
|
||||||
<header>
|
<header>
|
||||||
<button string="打印" name="button_action_print" type="object"
|
<button string="打印" name="button_action_print" type="object"
|
||||||
class="btn-primary"/>
|
class="btn-primary"/>
|
||||||
</header>
|
</header>
|
||||||
<field name="sequence" widget="handle"/>
|
<field name="sequence" widget="handle"/>
|
||||||
<field name="id" optional="hide"/>
|
<field name="id" optional="hide"/>
|
||||||
<field name="priority"/>
|
|
||||||
<field name="status"/>
|
<field name="status"/>
|
||||||
<field name="customer_name"/>
|
<field name="customer_name"/>
|
||||||
<field name="order_remark"/>
|
<field name="order_remark"/>
|
||||||
@@ -29,6 +28,7 @@
|
|||||||
<field name="qty_to_deliver"/>
|
<field name="qty_to_deliver"/>
|
||||||
<field name="model_long"/>
|
<field name="model_long"/>
|
||||||
<field name="blank_type" optional="hide"/>
|
<field name="blank_type" optional="hide"/>
|
||||||
|
<field name="blank_precision"/>
|
||||||
<field name="embryo_long"/>
|
<field name="embryo_long"/>
|
||||||
<field name="materials_id"/>
|
<field name="materials_id"/>
|
||||||
<field name="model_machining_precision"/>
|
<field name="model_machining_precision"/>
|
||||||
@@ -44,7 +44,10 @@
|
|||||||
<field name="date_order"/>
|
<field name="date_order"/>
|
||||||
<field name="contract_code"/>
|
<field name="contract_code"/>
|
||||||
<field name="plan_remark"/>
|
<field name="plan_remark"/>
|
||||||
<field name="processing_time"/>
|
<field name="priority" decoration-danger="priority == '1'"
|
||||||
|
decoration-warning="priority == '2'"
|
||||||
|
decoration-info="priority == '3'"
|
||||||
|
decoration-success="priority == '4'"/>
|
||||||
<field name="material_check" optional="hide"/>
|
<field name="material_check" optional="hide"/>
|
||||||
<field name="hide_action_open_mrp_production" invisible="1"/>
|
<field name="hide_action_open_mrp_production" invisible="1"/>
|
||||||
<field name="hide_action_purchase_orders" invisible="1"/>
|
<field name="hide_action_purchase_orders" invisible="1"/>
|
||||||
@@ -63,6 +66,7 @@
|
|||||||
<field name="planned_start_date"/>
|
<field name="planned_start_date"/>
|
||||||
<field name="actual_start_date"/>
|
<field name="actual_start_date"/>
|
||||||
<field name="actual_end_date"/>
|
<field name="actual_end_date"/>
|
||||||
|
<field name="processing_time"/>
|
||||||
<field name="create_date" optional="hide" string="创建时间"/>
|
<field name="create_date" optional="hide" string="创建时间"/>
|
||||||
<field name="create_uid" optional="hide" string="创建人"/>
|
<field name="create_uid" optional="hide" string="创建人"/>
|
||||||
<field name="write_date" string="更新时间"/>
|
<field name="write_date" string="更新时间"/>
|
||||||
@@ -92,7 +96,8 @@
|
|||||||
<group expand="0" string="Group By">
|
<group expand="0" string="Group By">
|
||||||
<filter name="group_by_priority" string="优先级" domain="[]" context="{'group_by': 'priority'}"/>
|
<filter name="group_by_priority" string="优先级" domain="[]" context="{'group_by': 'priority'}"/>
|
||||||
<filter name="group_by_status" string="状态" domain="[]" context="{'group_by': 'status'}"/>
|
<filter name="group_by_status" string="状态" domain="[]" context="{'group_by': 'status'}"/>
|
||||||
<filter name="group_by_customer_name" string="客户" domain="[]" context="{'group_by': 'customer_name'}"/>
|
<filter name="group_by_customer_name" string="客户" domain="[]"
|
||||||
|
context="{'group_by': 'customer_name'}"/>
|
||||||
<filter name="group_by_is_incoming_material" string="客供料" domain="[]"
|
<filter name="group_by_is_incoming_material" string="客供料" domain="[]"
|
||||||
context="{'group_by': 'is_incoming_material'}"/>
|
context="{'group_by': 'is_incoming_material'}"/>
|
||||||
<filter name="group_by_supply_method" string="供货方式" domain="[]"
|
<filter name="group_by_supply_method" string="供货方式" domain="[]"
|
||||||
@@ -123,4 +128,9 @@
|
|||||||
action="sf_production_demand_plan_action"
|
action="sf_production_demand_plan_action"
|
||||||
parent="sf_plan.sf_production_plan_menu"
|
parent="sf_plan.sf_production_plan_menu"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<!-- 调拨动作中屏蔽验证-->
|
||||||
|
<record id="stock.action_validate_picking" model="ir.actions.server">
|
||||||
|
<field name="binding_model_id" eval="False"/>
|
||||||
|
</record>
|
||||||
</odoo>
|
</odoo>
|
||||||
@@ -3,6 +3,7 @@ import logging
|
|||||||
|
|
||||||
import re
|
import re
|
||||||
from odoo import models, fields, api
|
from odoo import models, fields, api
|
||||||
|
from odoo.exceptions import ValidationError
|
||||||
|
|
||||||
|
|
||||||
class ResProductCategory(models.Model):
|
class ResProductCategory(models.Model):
|
||||||
@@ -47,11 +48,14 @@ class ResMrpBomMo(models.Model):
|
|||||||
item.subcontractor_name = ''
|
item.subcontractor_name = ''
|
||||||
|
|
||||||
def bom_create_line_has(self, embryo):
|
def bom_create_line_has(self, embryo):
|
||||||
|
product = self.product_tmpl_id
|
||||||
|
if product.unit_number in (0, None, False):
|
||||||
|
raise ValidationError(f'产品{product.name}单件用量的值不能为{product.unit_number}')
|
||||||
vals = {
|
vals = {
|
||||||
'bom_id': self.id,
|
'bom_id': self.id,
|
||||||
'product_id': embryo.id,
|
'product_id': embryo.id,
|
||||||
'product_tmpl_id': embryo.product_tmpl_id.id,
|
'product_tmpl_id': embryo.product_tmpl_id.id,
|
||||||
'product_qty': 1,
|
'product_qty': product.unit_number,
|
||||||
'product_uom_id': 1
|
'product_uom_id': 1
|
||||||
}
|
}
|
||||||
return self.env['mrp.bom.line'].sudo().create(vals)
|
return self.env['mrp.bom.line'].sudo().create(vals)
|
||||||
@@ -122,7 +126,7 @@ class ResMrpBomMo(models.Model):
|
|||||||
# 查bom的原材料
|
# 查bom的原材料
|
||||||
def get_raw_bom(self, product):
|
def get_raw_bom(self, product):
|
||||||
raw_bom = self.env['product.product'].search(
|
raw_bom = self.env['product.product'].search(
|
||||||
[('categ_id.type', '=', '原材料'), ('materials_type_id', '=', product.materials_type_id.id)],limit=1)
|
[('categ_id.type', '=', '原材料'), ('materials_type_id', '=', product.materials_type_id.id)], limit=1)
|
||||||
return raw_bom
|
return raw_bom
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -95,6 +95,8 @@
|
|||||||
<page string="加工参数">
|
<page string="加工参数">
|
||||||
<group>
|
<group>
|
||||||
<group string="模型">
|
<group string="模型">
|
||||||
|
<field name="blank_type" readonly="1"/>
|
||||||
|
<field name="blank_precision" readonly="1"/>
|
||||||
<label for="model_long" string="坯料尺寸[mm]"/>
|
<label for="model_long" string="坯料尺寸[mm]"/>
|
||||||
<div class="o_address_format">
|
<div class="o_address_format">
|
||||||
<label for="model_long" string="长"/>
|
<label for="model_long" string="长"/>
|
||||||
@@ -104,7 +106,7 @@
|
|||||||
<label for="model_height" string="高"/>
|
<label for="model_height" string="高"/>
|
||||||
<field name="model_height" class="o_address_zip"/>
|
<field name="model_height" class="o_address_zip"/>
|
||||||
</div>
|
</div>
|
||||||
<field name="blank_type" readonly="1"/>
|
<field name="unit_number" readonly="1"/>
|
||||||
<field name="model_volume" string="体积[mm³]"/>
|
<field name="model_volume" string="体积[mm³]"/>
|
||||||
<field name="product_model_type_id" string="模型类型"/>
|
<field name="product_model_type_id" string="模型类型"/>
|
||||||
<field name="model_processing_panel" placeholder="例如R,U" string="加工面板"
|
<field name="model_processing_panel" placeholder="例如R,U" string="加工面板"
|
||||||
|
|||||||
@@ -27,13 +27,15 @@ class ResProductMo(models.Model):
|
|||||||
categ_type = fields.Selection(string='产品的类别', related='categ_id.type', store=True)
|
categ_type = fields.Selection(string='产品的类别', related='categ_id.type', store=True)
|
||||||
model_name = fields.Char('模型名称')
|
model_name = fields.Char('模型名称')
|
||||||
blank_type = fields.Selection([('圆料', '圆料'), ('方料', '方料')], string='坯料分类')
|
blank_type = fields.Selection([('圆料', '圆料'), ('方料', '方料')], string='坯料分类')
|
||||||
|
blank_precision = fields.Selection([('精坯', '精坯'), ('粗坯', '粗坯')], string='坯料类型')
|
||||||
model_long = fields.Float('模型长(mm)', digits=(16, 3))
|
model_long = fields.Float('模型长(mm)', digits=(16, 3))
|
||||||
model_width = fields.Float('模型宽(mm)', digits=(16, 3))
|
model_width = fields.Float('模型宽(mm)', digits=(16, 3))
|
||||||
model_height = fields.Float('模型高(mm)', digits=(16, 3))
|
model_height = fields.Float('模型高(mm)', digits=(16, 3))
|
||||||
|
unit_number = fields.Float('单件用量', digits=(16, 3), default=1)
|
||||||
model_volume = fields.Float('模型体积(m³)')
|
model_volume = fields.Float('模型体积(m³)')
|
||||||
model_area = fields.Float('模型表面积(m²)')
|
model_area = fields.Float('模型表面积(m²)')
|
||||||
model_machining_precision = fields.Selection(selection=_get_machining_precision, string='加工精度')
|
model_machining_precision = fields.Selection(selection=_get_machining_precision, string='加工精度')
|
||||||
model_processing_panel = fields.Char('模型加工面板')
|
model_processing_panel = fields.Char('模型加工面板', default='')
|
||||||
model_remark = fields.Char('模型备注说明')
|
model_remark = fields.Char('模型备注说明')
|
||||||
length = fields.Float('长(mm)', digits=(16, 3))
|
length = fields.Float('长(mm)', digits=(16, 3))
|
||||||
width = fields.Float('宽(mm)', digits=(16, 3))
|
width = fields.Float('宽(mm)', digits=(16, 3))
|
||||||
@@ -901,15 +903,17 @@ class ResProductMo(models.Model):
|
|||||||
vals = {
|
vals = {
|
||||||
'name': product_name,
|
'name': product_name,
|
||||||
'blank_type': item.get('blank_type'),
|
'blank_type': item.get('blank_type'),
|
||||||
|
'blank_precision': item.get('blank_precision'),
|
||||||
'model_long': item.get('blank_length') if blank_bool else self.format_float(item['model_long'] + embryo_redundancy_id.long),
|
'model_long': item.get('blank_length') if blank_bool else self.format_float(item['model_long'] + embryo_redundancy_id.long),
|
||||||
'model_width': item.get('blank_width') if blank_bool else self.format_float(item['model_width'] + embryo_redundancy_id.width),
|
'model_width': item.get('blank_width') if blank_bool else self.format_float(item['model_width'] + embryo_redundancy_id.width),
|
||||||
'model_height': item.get('blank_height') if blank_bool else self.format_float(item['model_height'] + embryo_redundancy_id.height),
|
'model_height': item.get('blank_height') if blank_bool else self.format_float(item['model_height'] + embryo_redundancy_id.height),
|
||||||
|
'unit_number': item.get('unit_number'),
|
||||||
'model_volume': self.format_float(((item['model_long'] + embryo_redundancy_id.long) *
|
'model_volume': self.format_float(((item['model_long'] + embryo_redundancy_id.long) *
|
||||||
(item['model_width'] + embryo_redundancy_id.width) *
|
(item['model_width'] + embryo_redundancy_id.width) *
|
||||||
(item['model_height'] + embryo_redundancy_id.height))) if not blank_bool else (
|
(item['model_height'] + embryo_redundancy_id.height))) if not blank_bool else (
|
||||||
item.get('blank_length') * item.get('blank_width') * item.get('blank_height')),
|
item.get('blank_length') * item.get('blank_width') * item.get('blank_height')),
|
||||||
'product_model_type_id': model_type.id,
|
'product_model_type_id': model_type.id,
|
||||||
'model_processing_panel': item['processing_panel_detail'],
|
'model_processing_panel': item['processing_panel_detail'] if item['processing_panel_detail'] else '',
|
||||||
'model_machining_precision': item['model_machining_precision'],
|
'model_machining_precision': item['model_machining_precision'],
|
||||||
'model_code': item['barcode'],
|
'model_code': item['barcode'],
|
||||||
'length': item['model_long'],
|
'length': item['model_long'],
|
||||||
@@ -957,7 +961,7 @@ class ResProductMo(models.Model):
|
|||||||
self.attachment_update(item['quality_standard_name'], copy_product_id.product_tmpl_id.id,
|
self.attachment_update(item['quality_standard_name'], copy_product_id.product_tmpl_id.id,
|
||||||
'quality_standard', item['quality_standard_mimetype'])
|
'quality_standard', item['quality_standard_mimetype'])
|
||||||
return copy_product_id
|
return copy_product_id
|
||||||
|
|
||||||
def format_float(self, value):
|
def format_float(self, value):
|
||||||
# 将浮点数转换为字符串
|
# 将浮点数转换为字符串
|
||||||
value_str = str(value)
|
value_str = str(value)
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ from odoo.addons.sf_base.commons.common import Common
|
|||||||
from odoo.exceptions import UserError
|
from odoo.exceptions import UserError
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
from odoo.exceptions import ValidationError
|
from odoo.exceptions import ValidationError
|
||||||
|
from dateutil.relativedelta import relativedelta
|
||||||
|
|
||||||
|
|
||||||
class stockWarehouse(models.Model):
|
class stockWarehouse(models.Model):
|
||||||
@@ -727,6 +728,33 @@ class StockPicking(models.Model):
|
|||||||
production.workorder_ids.write({'back_button_display': False})
|
production.workorder_ids.write({'back_button_display': False})
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
def _prepare_subcontract_mo_vals(self, subcontract_move, bom):
|
||||||
|
subcontract_move.ensure_one()
|
||||||
|
group = self.env['procurement.group'].sudo().search([('name', '=', self.name)])
|
||||||
|
if not group:
|
||||||
|
group = self.env['procurement.group'].create({
|
||||||
|
'name': self.name,
|
||||||
|
'partner_id': self.partner_id.id,
|
||||||
|
})
|
||||||
|
product = subcontract_move.product_id
|
||||||
|
warehouse = self._get_warehouse(subcontract_move)
|
||||||
|
vals = {
|
||||||
|
'company_id': subcontract_move.company_id.id,
|
||||||
|
'procurement_group_id': group.id,
|
||||||
|
'subcontractor_id': subcontract_move.picking_id.partner_id.commercial_partner_id.id,
|
||||||
|
'picking_ids': [subcontract_move.picking_id.id],
|
||||||
|
'product_id': product.id,
|
||||||
|
'product_uom_id': subcontract_move.product_uom.id,
|
||||||
|
'bom_id': bom.id,
|
||||||
|
'location_src_id': subcontract_move.picking_id.partner_id.with_company(subcontract_move.company_id).property_stock_subcontractor.id,
|
||||||
|
'location_dest_id': subcontract_move.picking_id.partner_id.with_company(subcontract_move.company_id).property_stock_subcontractor.id,
|
||||||
|
'product_qty': subcontract_move.product_uom_qty,
|
||||||
|
'picking_type_id': warehouse.subcontracting_type_id.id,
|
||||||
|
'date_planned_start': subcontract_move.date - relativedelta(days=product.produce_delay)
|
||||||
|
}
|
||||||
|
return vals
|
||||||
|
|
||||||
|
|
||||||
# 创建 外协出库入单
|
# 创建 外协出库入单
|
||||||
def create_outcontract_picking(self, workorders, item, sorted_workorders):
|
def create_outcontract_picking(self, workorders, item, sorted_workorders):
|
||||||
production = workorders[0].production_id
|
production = workorders[0].production_id
|
||||||
|
|||||||
@@ -40,7 +40,8 @@ class StockPicking(models.Model):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
out_quality_checks = self.env['quality.check'].search(
|
out_quality_checks = self.env['quality.check'].search(
|
||||||
[('picking_id', '=', self.id), ('test_type_id.name', '=', '出厂检验报告')])
|
[('picking_id', '=', self.id), ('test_type_id.name', '=', '出厂检验报告'),
|
||||||
|
('quality_state', '=', 'pass')])
|
||||||
# out_quality_checks 可能存在多个
|
# out_quality_checks 可能存在多个
|
||||||
if out_quality_checks:
|
if out_quality_checks:
|
||||||
for out_quality_check in out_quality_checks:
|
for out_quality_check in out_quality_checks:
|
||||||
|
|||||||
Reference in New Issue
Block a user