Compare commits
77 Commits
feature/67
...
feature/72
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
22f36d095c | ||
|
|
fe8df494f9 | ||
|
|
32cd68e15f | ||
|
|
f0e47371ed | ||
|
|
6dde814acc | ||
|
|
71ab241e94 | ||
|
|
0a13acbb68 | ||
|
|
4b026535f8 | ||
|
|
99ac89f995 | ||
|
|
35b1d648c3 | ||
|
|
fe3492ceb5 | ||
|
|
4274b9fe99 | ||
|
|
4ddabdefa1 | ||
|
|
364127beb3 | ||
|
|
109ea8729d | ||
|
|
32de726164 | ||
|
|
79f89f068b | ||
|
|
52189cff72 | ||
|
|
aadccce47e | ||
|
|
abd88fd721 | ||
|
|
7d8b7048a8 | ||
|
|
bc641bde3a | ||
|
|
d73ffab9b5 | ||
|
|
4b1c0bc3b5 | ||
|
|
45730e2dd4 | ||
|
|
8903f32cf8 | ||
|
|
8bd1c8a095 | ||
|
|
abf9a0997b | ||
|
|
aec2d1c516 | ||
|
|
127efb67d7 | ||
|
|
78edf1f7eb | ||
|
|
e6e13a5970 | ||
|
|
427b548939 | ||
|
|
8c9db7e8c8 | ||
|
|
990f73ea4e | ||
|
|
b4ed65a75c | ||
|
|
53ba2ec589 | ||
|
|
566bc0e1e2 | ||
|
|
5f216684f0 | ||
|
|
e86bd59a43 | ||
|
|
e55625e4b6 | ||
|
|
790dd3dd05 | ||
|
|
84846fb3da | ||
|
|
f45a46255b | ||
|
|
fe5b005e45 | ||
|
|
fc33280509 | ||
|
|
60ed04cf77 | ||
|
|
3439b47b0c | ||
|
|
33c5d648b5 | ||
|
|
c7b50d9706 | ||
|
|
05caed1d91 | ||
|
|
8b66fda899 | ||
|
|
1456d4303b | ||
|
|
9d2f23de7c | ||
|
|
9393a48e70 | ||
|
|
749f44d6df | ||
|
|
4f000a6be4 | ||
|
|
7af7079a5c | ||
|
|
376eb9e56f | ||
|
|
531bc2e090 | ||
|
|
bc3ab21d75 | ||
|
|
d1811ea24b | ||
|
|
b426d5d505 | ||
|
|
1dfa22900d | ||
|
|
0eeebf437a | ||
|
|
397d4f29a1 | ||
|
|
33205c5d29 | ||
|
|
568f3e4f30 | ||
|
|
8c43fc2b76 | ||
|
|
8960d3d07c | ||
|
|
95b5c86242 | ||
|
|
c2000aa9c5 | ||
|
|
e29456bbf7 | ||
|
|
a2f8dc6cec | ||
|
|
fec095ca6b | ||
|
|
aed33dbb35 | ||
|
|
dbe8c95558 |
@@ -521,11 +521,6 @@ div:has(.o_required_modifier) > label::before {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 设置表格横向滚动
|
|
||||||
.o_list_renderer.o_renderer {
|
|
||||||
max-width: 100%;
|
|
||||||
overflow-x: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 设置表单页面label文本不换行
|
// 设置表单页面label文本不换行
|
||||||
.o_form_view .o_group .o_wrap_label .o_form_label {
|
.o_form_view .o_group .o_wrap_label .o_form_label {
|
||||||
|
|||||||
@@ -6,3 +6,4 @@ from . import mrp_production
|
|||||||
from . import purchase_order
|
from . import purchase_order
|
||||||
from . import stock_rule
|
from . import stock_rule
|
||||||
from . import stock_picking
|
from . import stock_picking
|
||||||
|
from . import product_product
|
||||||
|
|||||||
@@ -12,9 +12,7 @@ class MrpProduction(models.Model):
|
|||||||
if item.product_id.is_customer_provided:
|
if item.product_id.is_customer_provided:
|
||||||
item.pr_mp_count = 0
|
item.pr_mp_count = 0
|
||||||
else:
|
else:
|
||||||
# 由于采购申请合并了所有销售订单行的采购,所以不区分产品
|
pr_ids = item._get_purchase_request()
|
||||||
mrp_names = self.env['mrp.production'].search([('origin', '=', item.origin)]).mapped('name')
|
|
||||||
pr_ids = self.env['purchase.request'].sudo().search([('origin', 'in', mrp_names)])
|
|
||||||
item.pr_mp_count = len(pr_ids)
|
item.pr_mp_count = len(pr_ids)
|
||||||
# pr_ids = self.env['purchase.request'].sudo().search([('origin', 'like', item.name), ('is_subcontract', '!=', 'True')])
|
# pr_ids = self.env['purchase.request'].sudo().search([('origin', 'like', item.name), ('is_subcontract', '!=', 'True')])
|
||||||
|
|
||||||
@@ -25,8 +23,7 @@ class MrpProduction(models.Model):
|
|||||||
self.ensure_one()
|
self.ensure_one()
|
||||||
|
|
||||||
# 由于采购申请合并了所有销售订单行的采购,所以不区分产品
|
# 由于采购申请合并了所有销售订单行的采购,所以不区分产品
|
||||||
mrp_names = self.env['mrp.production'].search([('origin', '=', self.origin)]).mapped('name')
|
pr_ids = self._get_purchase_request()
|
||||||
pr_ids = self.env['purchase.request'].sudo().search([('origin', 'in', mrp_names)])
|
|
||||||
|
|
||||||
action = {
|
action = {
|
||||||
'res_model': 'purchase.request',
|
'res_model': 'purchase.request',
|
||||||
@@ -44,3 +41,12 @@ class MrpProduction(models.Model):
|
|||||||
'view_mode': 'tree,form',
|
'view_mode': 'tree,form',
|
||||||
})
|
})
|
||||||
return action
|
return action
|
||||||
|
|
||||||
|
def _get_purchase_request(self):
|
||||||
|
"""获取跟制造订单相关的采购申请单(根据采购申请单行项目的产品匹配)"""
|
||||||
|
mrp_names = self.env['mrp.production'].search([('origin', '=', self.origin)]).mapped('name')
|
||||||
|
pr_ids = self.env['purchase.request'].sudo().search([('origin', 'in', mrp_names)])
|
||||||
|
product_list = self.product_id._get_product_include_bom()
|
||||||
|
pr_line_ids = pr_ids.line_ids.filtered(lambda l: l.product_id in product_list)
|
||||||
|
return pr_line_ids.mapped('request_id')
|
||||||
|
|
||||||
17
jikimo_purchase_request/models/product_product.py
Normal file
17
jikimo_purchase_request/models/product_product.py
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
from odoo import models
|
||||||
|
|
||||||
|
|
||||||
|
class ProductProduct(models.Model):
|
||||||
|
_inherit = 'product.product'
|
||||||
|
|
||||||
|
|
||||||
|
def _get_product_include_bom(self):
|
||||||
|
"""获取产品列表(包括所有bom)"""
|
||||||
|
self.ensure_one()
|
||||||
|
product_list = [self]
|
||||||
|
bom_ids = self.bom_ids
|
||||||
|
while (bom_ids):
|
||||||
|
bom_product_ids = bom_ids.bom_line_ids.mapped('product_id')
|
||||||
|
product_list.append(bom_product_ids)
|
||||||
|
bom_ids = bom_product_ids.bom_ids
|
||||||
|
return product_list
|
||||||
@@ -42,6 +42,6 @@ class StockPicking(models.Model):
|
|||||||
purchase_request_lines = self.move_ids.move_orig_ids.purchase_line_id.purchase_request_lines
|
purchase_request_lines = self.move_ids.move_orig_ids.purchase_line_id.purchase_request_lines
|
||||||
if purchase_request_lines:
|
if purchase_request_lines:
|
||||||
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 == purchase_request_lines.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
|
||||||
@@ -23,6 +23,7 @@
|
|||||||
],
|
],
|
||||||
'web.assets_backend': [
|
'web.assets_backend': [
|
||||||
'sf_demand_plan/static/src/scss/style.css',
|
'sf_demand_plan/static/src/scss/style.css',
|
||||||
|
'sf_demand_plan/static/src/js/print_demand.js',
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
'license': 'LGPL-3',
|
'license': 'LGPL-3',
|
||||||
|
|||||||
@@ -39,11 +39,7 @@ class SfProductionDemandPlan(models.Model):
|
|||||||
company_id = fields.Many2one(
|
company_id = fields.Many2one(
|
||||||
related='sale_order_id.company_id',
|
related='sale_order_id.company_id',
|
||||||
store=True, index=True, precompute=True)
|
store=True, index=True, precompute=True)
|
||||||
partner_id = fields.Many2one(
|
customer_name = fields.Char('客户', related='sale_order_id.customer_name')
|
||||||
comodel_name='res.partner',
|
|
||||||
related='sale_order_line_id.order_partner_id',
|
|
||||||
string="客户",
|
|
||||||
store=True, index=True)
|
|
||||||
order_remark = fields.Text(related='sale_order_id.remark',
|
order_remark = fields.Text(related='sale_order_id.remark',
|
||||||
string="订单备注", store=True)
|
string="订单备注", store=True)
|
||||||
glb_url = fields.Char(related='sale_order_line_id.glb_url', string='glb文件地址')
|
glb_url = fields.Char(related='sale_order_line_id.glb_url', string='glb文件地址')
|
||||||
@@ -64,7 +60,7 @@ class SfProductionDemandPlan(models.Model):
|
|||||||
product_uom_qty = fields.Float(
|
product_uom_qty = fields.Float(
|
||||||
string="需求数量",
|
string="需求数量",
|
||||||
related='sale_order_line_id.product_uom_qty', store=True)
|
related='sale_order_line_id.product_uom_qty', store=True)
|
||||||
deadline_of_delivery = fields.Date('客户交期', related='sale_order_id.deadline_of_delivery', store=True)
|
deadline_of_delivery = fields.Date('客户交期', related='sale_order_line_id.delivery_end_date', store=True)
|
||||||
inventory_quantity_auto_apply = fields.Float(
|
inventory_quantity_auto_apply = fields.Float(
|
||||||
string="成品库存",
|
string="成品库存",
|
||||||
compute='_compute_inventory_quantity_auto_apply'
|
compute='_compute_inventory_quantity_auto_apply'
|
||||||
@@ -73,7 +69,11 @@ class SfProductionDemandPlan(models.Model):
|
|||||||
"交货数量", related='sale_order_line_id.qty_delivered')
|
"交货数量", related='sale_order_line_id.qty_delivered')
|
||||||
qty_to_deliver = fields.Float(
|
qty_to_deliver = fields.Float(
|
||||||
"待交货数量", related='sale_order_line_id.qty_to_deliver')
|
"待交货数量", related='sale_order_line_id.qty_to_deliver')
|
||||||
model_long = fields.Char('尺寸', compute='_compute_model_long')
|
model_long = fields.Char('尺寸(mm)', compute='_compute_model_long')
|
||||||
|
blank_type = fields.Selection([('圆料', '圆料'), ('方料', '方料')], string='坯料分类',
|
||||||
|
related='product_id.blank_type')
|
||||||
|
blank_precision = fields.Selection([('精坯', '精坯'), ('粗坯', '粗坯')], string='坯料类型', related='product_id.blank_precision')
|
||||||
|
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='精度',
|
||||||
related='product_id.model_machining_precision')
|
related='product_id.model_machining_precision')
|
||||||
@@ -197,6 +197,17 @@ class SfProductionDemandPlan(models.Model):
|
|||||||
else:
|
else:
|
||||||
line.model_long = None
|
line.model_long = None
|
||||||
|
|
||||||
|
@api.depends('product_id.model_long', 'product_id.model_width', 'product_id.model_height', 'product_id.blank_type')
|
||||||
|
def _compute_embryo_long(self):
|
||||||
|
for line in self:
|
||||||
|
if line.product_id:
|
||||||
|
if line.product_id.blank_type == '圆料':
|
||||||
|
line.embryo_long = f"Ø{round(line.product_id.model_width, 3)}*{round(line.product_id.model_long, 3)}"
|
||||||
|
else:
|
||||||
|
line.embryo_long = f"{round(line.product_id.model_long, 3)}*{round(line.product_id.model_width, 3)}*{round(line.product_id.model_height, 3)}"
|
||||||
|
else:
|
||||||
|
line.embryo_long = None
|
||||||
|
|
||||||
@api.depends('product_id.materials_id')
|
@api.depends('product_id.materials_id')
|
||||||
def _compute_materials_id(self):
|
def _compute_materials_id(self):
|
||||||
for line in self:
|
for line in self:
|
||||||
@@ -272,18 +283,21 @@ class SfProductionDemandPlan(models.Model):
|
|||||||
else:
|
else:
|
||||||
record.actual_end_date = None
|
record.actual_end_date = None
|
||||||
|
|
||||||
@api.depends('sale_order_id.mrp_production_ids.move_raw_ids.forecast_availability',
|
@api.depends('sale_order_id.mrp_production_ids.move_raw_ids.reserved_availability')
|
||||||
'sale_order_id.mrp_production_ids.move_raw_ids.quantity_done')
|
|
||||||
def _compute_material_check(self):
|
def _compute_material_check(self):
|
||||||
for record in self:
|
for record in self:
|
||||||
if record.sale_order_id and record.sale_order_id.mrp_production_ids:
|
if record.sale_order_id and record.sale_order_id.mrp_production_ids:
|
||||||
manufacturing_orders = record.sale_order_id.mrp_production_ids.filtered(
|
manufacturing_orders = record.sale_order_id.mrp_production_ids.filtered(
|
||||||
lambda mo: mo.product_id == record.product_id)
|
lambda mo: mo.product_id == record.product_id)
|
||||||
|
|
||||||
if manufacturing_orders and manufacturing_orders.move_raw_ids:
|
if manufacturing_orders and manufacturing_orders.move_raw_ids:
|
||||||
total_forecast_availability = sum(manufacturing_orders.mapped('move_raw_ids.forecast_availability'))
|
# 获取完成的制造订单
|
||||||
total_quantity_done = sum(manufacturing_orders.mapped('move_raw_ids.quantity_done'))
|
done_manufacturing = manufacturing_orders.filtered(lambda mo: mo.state == 'done')
|
||||||
total_sum = total_forecast_availability + total_quantity_done
|
product_qty = sum(done_manufacturing.mapped('product_qty'))
|
||||||
if float_compare(total_sum, record.product_uom_qty,
|
# 需求数量-完成数量
|
||||||
|
product_uom_qty = record.product_uom_qty - product_qty
|
||||||
|
total_reserved_availability = sum(manufacturing_orders.mapped('move_raw_ids.reserved_availability'))
|
||||||
|
if float_compare(total_reserved_availability, product_uom_qty,
|
||||||
precision_rounding=record.product_id.uom_id.rounding) >= 0:
|
precision_rounding=record.product_id.uom_id.rounding) >= 0:
|
||||||
record.material_check = '1' # 已齐套
|
record.material_check = '1' # 已齐套
|
||||||
else:
|
else:
|
||||||
@@ -308,7 +322,7 @@ class SfProductionDemandPlan(models.Model):
|
|||||||
[('name', '=', '1#CNC自动生产线')], limit=1)
|
[('name', '=', '1#CNC自动生产线')], limit=1)
|
||||||
if sf_production_line:
|
if sf_production_line:
|
||||||
now = datetime.now()
|
now = datetime.now()
|
||||||
time_part = (now + timedelta(minutes=3)).time()
|
time_part = (now + timedelta(hours=2)).time()
|
||||||
date_part = fields.Date.from_string(self.planned_start_date)
|
date_part = fields.Date.from_string(self.planned_start_date)
|
||||||
date_planned_start = datetime.combine(date_part, time_part)
|
date_planned_start = datetime.combine(date_part, time_part)
|
||||||
pro_plan_list.production_line_id = sf_production_line.id
|
pro_plan_list.production_line_id = sf_production_line.id
|
||||||
@@ -389,29 +403,30 @@ class SfProductionDemandPlan(models.Model):
|
|||||||
outsourcing_purchase_request.extend(pr_ids.ids)
|
outsourcing_purchase_request.extend(pr_ids.ids)
|
||||||
if record.supply_method == 'outsourcing' and not record.sale_order_line_id.is_incoming_material:
|
if record.supply_method == 'outsourcing' and not record.sale_order_line_id.is_incoming_material:
|
||||||
bom_line_ids = record.product_id.bom_ids.bom_line_ids
|
bom_line_ids = record.product_id.bom_ids.bom_line_ids
|
||||||
# BOM_数量
|
if bom_line_ids:
|
||||||
total_product_qty = sum(line.product_qty for line in bom_line_ids)
|
# BOM_数量
|
||||||
bom_product_ids = bom_line_ids.mapped('product_id')
|
total_product_qty = sum(line.product_qty for line in bom_line_ids)
|
||||||
product_purchase_orders = self.env['purchase.order'].sudo().search([
|
bom_product_ids = bom_line_ids.mapped('product_id')
|
||||||
('state', 'in', ('purchase', 'done')),
|
product_purchase_orders = self.env['purchase.order'].sudo().search([
|
||||||
('order_line.product_id', 'in', bom_product_ids.ids)
|
('state', 'in', ('purchase', 'done')),
|
||||||
])
|
('order_line.product_id', 'in', bom_product_ids.ids)
|
||||||
# 购订单_数量
|
])
|
||||||
total_outsourcing_purchase_quantity = sum(
|
# 购订单_数量
|
||||||
sum(
|
total_outsourcing_purchase_quantity = sum(
|
||||||
order.order_line.filtered(
|
sum(
|
||||||
lambda line: line.product_id in bom_product_ids
|
order.order_line.filtered(
|
||||||
).mapped('product_qty')
|
lambda line: line.product_id in bom_product_ids
|
||||||
|
).mapped('product_qty')
|
||||||
|
)
|
||||||
|
for order in product_purchase_orders
|
||||||
)
|
)
|
||||||
for order in product_purchase_orders
|
quantity = total_outsourcing_purchase_quantity / total_product_qty
|
||||||
)
|
if float_compare(quantity, record.product_uom_qty,
|
||||||
quantity = total_outsourcing_purchase_quantity / total_product_qty
|
precision_rounding=record.product_id.uom_id.rounding) == -1:
|
||||||
if float_compare(quantity, record.product_uom_qty,
|
purchase_request = self.env['purchase.request'].sudo().search(
|
||||||
precision_rounding=record.product_id.uom_id.rounding) == -1:
|
[('line_ids.product_id', 'in', bom_product_ids.ids),
|
||||||
purchase_request = self.env['purchase.request'].sudo().search(
|
('line_ids.purchase_state', 'not in', ('purchase', 'done')), ('state', '!=', 'done')])
|
||||||
[('line_ids.product_id', 'in', bom_product_ids.ids),
|
outsourcing_purchase_request.extend(purchase_request.ids)
|
||||||
('line_ids.purchase_state', 'not in', ('purchase', 'done')), ('state', '!=', 'done')])
|
|
||||||
outsourcing_purchase_request.extend(purchase_request.ids)
|
|
||||||
record.outsourcing_purchase_request = json.dumps(outsourcing_purchase_request)
|
record.outsourcing_purchase_request = json.dumps(outsourcing_purchase_request)
|
||||||
if outsourcing_purchase_request:
|
if outsourcing_purchase_request:
|
||||||
record.hide_action_purchase_orders = True
|
record.hide_action_purchase_orders = True
|
||||||
@@ -503,7 +518,10 @@ class SfProductionDemandPlan(models.Model):
|
|||||||
action = self.env["ir.actions.actions"]._for_xml_id("stock.action_picking_tree_all")
|
action = self.env["ir.actions.actions"]._for_xml_id("stock.action_picking_tree_all")
|
||||||
picking_ids = None
|
picking_ids = None
|
||||||
if self.supply_method in ('automation', 'manual'):
|
if self.supply_method in ('automation', 'manual'):
|
||||||
picking_ids = self.sale_order_id.mrp_production_ids.mapped('picking_ids').filtered(
|
mrp_production_ids = self.sale_order_id.mrp_production_ids.filtered(
|
||||||
|
lambda p: p.product_id.id == self.product_id.id
|
||||||
|
)
|
||||||
|
picking_ids = mrp_production_ids.mapped('picking_ids').filtered(
|
||||||
lambda p: p.state == 'assigned')
|
lambda p: p.state == 'assigned')
|
||||||
elif self.supply_method in ('purchase', 'outsourcing'):
|
elif self.supply_method in ('purchase', 'outsourcing'):
|
||||||
picking_ids = self.sale_order_id.picking_ids.filtered(
|
picking_ids = self.sale_order_id.picking_ids.filtered(
|
||||||
|
|||||||
256
sf_demand_plan/static/src/js/print_demand.js
Normal file
256
sf_demand_plan/static/src/js/print_demand.js
Normal file
@@ -0,0 +1,256 @@
|
|||||||
|
odoo.define('sf_demand.print_demand', function (require) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var ListController = require('web.ListController');
|
||||||
|
var ListRenderer = require('web.ListRenderer');
|
||||||
|
var ListView = require('web.ListView');
|
||||||
|
var viewRegistry = require('web.view_registry');
|
||||||
|
var { url } = require("@web/core/utils/urls")
|
||||||
|
|
||||||
|
var CustomListRenderer = ListRenderer.extend({
|
||||||
|
_render: function () {
|
||||||
|
var self = this;
|
||||||
|
this.getParent()?.$buttons.hide();
|
||||||
|
|
||||||
|
return this._super.apply(this, arguments).then(function () {
|
||||||
|
if(!self.state.data || !self.state.data.length) return
|
||||||
|
// 添加图片预览容器到页面左侧
|
||||||
|
if (!$('.table-image-preview-container').length) {
|
||||||
|
self.$el.parent().addClass('custom-table-image-container')
|
||||||
|
self.$el.before(
|
||||||
|
`<div class="custom-preview-container">
|
||||||
|
<img class="table-image-preview-container" src="" />
|
||||||
|
<iframe class="table-image-preview-container" src=""/>
|
||||||
|
</div>`
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!$('.denmand_set').length) {
|
||||||
|
|
||||||
|
const checked = self.getParent().radioCheck || 'all'
|
||||||
|
|
||||||
|
self.$el.prepend(`
|
||||||
|
<form class="denmand_set">
|
||||||
|
<span>更多设置:</span>
|
||||||
|
<input type="radio" id="male" name="set" value="图纸">
|
||||||
|
<label for="male">图纸</label>
|
||||||
|
<input type="radio" id="female" name="set" value="程序单">
|
||||||
|
<label for="female">程序单</label>
|
||||||
|
<input type="radio" id="other" name="set" value="all" >
|
||||||
|
<label for="other">图纸/程序单</label>
|
||||||
|
</form>
|
||||||
|
`)
|
||||||
|
setTimeout(() => {
|
||||||
|
$(`input[name=set][value=${checked}]`).prop('checked', true)
|
||||||
|
$('.denmand_set').trigger('click')
|
||||||
|
}, 100);
|
||||||
|
self.$el.prepend(`
|
||||||
|
<div class="print-button-container" style="margin-bottom:10px;">
|
||||||
|
<button class="btn btn-primary o_print_custom">
|
||||||
|
<i class="fa fa-print"></i> 打印
|
||||||
|
</button>
|
||||||
|
<button class="btn btn-secondary o_cancel_custom">
|
||||||
|
取消
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
start: function() {
|
||||||
|
setTimeout(() => {
|
||||||
|
this.$el.find('.o_data_row').eq(0).trigger('click')
|
||||||
|
this.getParent().$el?.find('.o_cp_top_right,.o_cp_bottom').hide()
|
||||||
|
}, 500);
|
||||||
|
return this._super();
|
||||||
|
},
|
||||||
|
events: _.extend({}, ListRenderer.prototype.events, {
|
||||||
|
'click .o_data_row': '_onCustomRowClick',
|
||||||
|
'click .o_print_custom': '_onPrintClick',
|
||||||
|
'click .o_cancel_custom': '_onCancelClick',
|
||||||
|
'click .denmand_set': '_onDenmandChange',
|
||||||
|
}),
|
||||||
|
_onCancelClick() {
|
||||||
|
this.getParent()?.getParent()?.dialogs.closeAll()
|
||||||
|
},
|
||||||
|
_onCustomRowClick: async function (ev) {
|
||||||
|
var self = this;
|
||||||
|
var $row = $(ev.currentTarget);
|
||||||
|
var index = $row.index();
|
||||||
|
var data = this.state.data[index];
|
||||||
|
if(data.fileData?.fileUrl) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
data.fileData = { }
|
||||||
|
if(data.res_id) {
|
||||||
|
// 正确获取 ORM 服务的方式
|
||||||
|
// var orm = this.getParent().getParent().env.services
|
||||||
|
const key = data.data.type == 1 ? 'machining_drawings' : 'cnc_worksheet'
|
||||||
|
const attachment = await this._rpc({
|
||||||
|
model: 'ir.binary',
|
||||||
|
method: 'attachment_info',
|
||||||
|
args: [
|
||||||
|
data.model,
|
||||||
|
data.res_id,
|
||||||
|
key
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
|
if (attachment) {
|
||||||
|
Object.assign(data.fileData, attachment)
|
||||||
|
this._getTypeInfo(attachment.mimetype, data.fileData)
|
||||||
|
}
|
||||||
|
const fileUrl = this.getFileUrl(data.fileData.attachment_type, data, key)
|
||||||
|
data.fileData.fileUrl = fileUrl
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$('.table-image-preview-container').hide()
|
||||||
|
if(data.fileData.attachment_type == 'iframe') {
|
||||||
|
|
||||||
|
$('iframe.table-image-preview-container').attr('src', decodeURIComponent(data.fileData.fileUrl) ).show()
|
||||||
|
} else {
|
||||||
|
$('img.table-image-preview-container').attr('src', data.fileData.fileUrl).show()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getSelectedIds: function() {
|
||||||
|
return this.state.data.filter(_ => !_.hide).map(_ => {
|
||||||
|
return _.data.id
|
||||||
|
})
|
||||||
|
},
|
||||||
|
_onPrintClick(e) {
|
||||||
|
var print_ids = this.getSelectedIds();
|
||||||
|
this._rpc({
|
||||||
|
model: 'sf.demand.plan.print.wizard',
|
||||||
|
method: 'demand_plan_print',
|
||||||
|
args: [ print_ids ] ,
|
||||||
|
// context: this.state.getContext()
|
||||||
|
}).then((e) => {
|
||||||
|
|
||||||
|
this.getParent()?.getParent()?.env.services?.notification.notify( {
|
||||||
|
type: 'info',
|
||||||
|
message: e.message,
|
||||||
|
})
|
||||||
|
// self.do_notify("成功", "打印任务已发送到打印机");
|
||||||
|
}).catch(function(error) {
|
||||||
|
console.error("打印错误:", error);
|
||||||
|
// self.do_warn("打印失败", error.data.message || "未知错误");
|
||||||
|
}).finally(e => {
|
||||||
|
this.getParent().reload()
|
||||||
|
})
|
||||||
|
|
||||||
|
},
|
||||||
|
_onDenmandChange(e) {
|
||||||
|
const isChecked = $(e.currentTarget).find('input:checked').val()
|
||||||
|
this.getParent().radioCheck = isChecked
|
||||||
|
this.$el.find('tbody').find('.o_data_row').show()
|
||||||
|
|
||||||
|
this.state.data.forEach(_ => {
|
||||||
|
_.hide = false
|
||||||
|
})
|
||||||
|
const self = this
|
||||||
|
if(!isChecked || isChecked == 'all') return
|
||||||
|
this.$el.find('tbody').children('.o_data_row').each(function() {
|
||||||
|
if($(this).find('td[name=type]').text() != isChecked) {
|
||||||
|
const i = $(this).index()
|
||||||
|
|
||||||
|
self.state.data[i].hide = true
|
||||||
|
$(this).hide()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
getFileUrl(attachment_type, data, key) {
|
||||||
|
let fileUrl
|
||||||
|
switch (attachment_type) {
|
||||||
|
case 'image':
|
||||||
|
const timer = +new Date()
|
||||||
|
fileUrl = url("/web/image", {
|
||||||
|
model: data.model,
|
||||||
|
id: data.res_id,
|
||||||
|
field: key,
|
||||||
|
unique: '',
|
||||||
|
timer
|
||||||
|
});
|
||||||
|
|
||||||
|
break;
|
||||||
|
case 'iframe':
|
||||||
|
|
||||||
|
const iframe_file_url = encodeURIComponent(
|
||||||
|
url("/web/content", {
|
||||||
|
model: data.model,
|
||||||
|
id: data.res_id,
|
||||||
|
field: key,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
fileUrl = `${this.state.attachment_base}?file=${iframe_file_url}`;
|
||||||
|
case 'unknown':
|
||||||
|
fileUrl = encodeURIComponent(
|
||||||
|
url("/web/content", {
|
||||||
|
model: data.model,
|
||||||
|
id: data.res_id,
|
||||||
|
field: key,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return fileUrl
|
||||||
|
},
|
||||||
|
_getTypeInfo(type, data) {
|
||||||
|
switch (type) {
|
||||||
|
case 'application/pdf':
|
||||||
|
data.attachment_base = `/web/static/lib/pdfjs/web/viewer.html`;
|
||||||
|
data.attachment_type = 'iframe'
|
||||||
|
break;
|
||||||
|
case 'application/vnd.openxmlformats-officedocument.wordprocessingml.document':
|
||||||
|
data.attachment_base = `/jikimo_attachment_viewer/static/lib/docxjs/viewer.html`;
|
||||||
|
data.attachment_type = 'iframe'
|
||||||
|
break;
|
||||||
|
case 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet':
|
||||||
|
data.attachment_base = `/jikimo_attachment_viewer/static/lib/exceljs/viewer.html`;
|
||||||
|
data.attachment_type = 'iframe'
|
||||||
|
break;
|
||||||
|
case 'application/vnd.openxmlformats-officedocument.presentationml.presentation':
|
||||||
|
data.attachment_base = '';
|
||||||
|
data.attachment_type = 'unknown'
|
||||||
|
break;
|
||||||
|
case 'image/png':
|
||||||
|
case 'image/jpeg':
|
||||||
|
case 'image/jpg':
|
||||||
|
data.attachment_base = ''
|
||||||
|
data.attachment_type = 'image'
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
data.attachment_base = ''
|
||||||
|
data.attachment_type = 'unknown'
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var CustomListController = ListController.extend({
|
||||||
|
// 可以保留或移除,根据是否需要处理自定义事件
|
||||||
|
// 处理打印操作
|
||||||
|
// rpc.query({
|
||||||
|
// model: 'sf.demand.plan.print.wizard',
|
||||||
|
// method: 'demand_plan_print',
|
||||||
|
// args: [recordIds]
|
||||||
|
// }).then(function(result) {
|
||||||
|
// self.do_notify("成功", "打印任务已发送到打印机");
|
||||||
|
// // 刷新视图显示最新状态
|
||||||
|
// self.reload();
|
||||||
|
// }).catch(function(error) {
|
||||||
|
// self.do_warn("打印失败", error.data.message || "发生未知错误");
|
||||||
|
// });
|
||||||
|
});
|
||||||
|
|
||||||
|
var PrintDemand = ListView.extend({
|
||||||
|
config: _.extend({}, ListView.prototype.config, {
|
||||||
|
Renderer: CustomListRenderer,
|
||||||
|
Controller: CustomListController,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
viewRegistry.add('print_demand', PrintDemand);
|
||||||
|
|
||||||
|
return PrintDemand;
|
||||||
|
});
|
||||||
@@ -9,3 +9,81 @@
|
|||||||
.demand_plan_tree .o_list_table_ungrouped {
|
.demand_plan_tree .o_list_table_ungrouped {
|
||||||
min-width: 1900px;
|
min-width: 1900px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.o_selected_row {
|
||||||
|
background-color: #e6f7ff !important;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-table-image-container {
|
||||||
|
display: flex;
|
||||||
|
height: calc(95vh - 254px);
|
||||||
|
gap: 20px;
|
||||||
|
position: relative;
|
||||||
|
th.o_list_record_selector, td.o_list_record_selector{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.custom-preview-container, .print_demand {
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
max-width: 49%;
|
||||||
|
tbody {
|
||||||
|
tr:not(.o_data_row) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tfoot {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.print_demand {
|
||||||
|
.table-responsive {
|
||||||
|
width: 100%;
|
||||||
|
overflow-x: auto!important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.custom-preview-container {
|
||||||
|
background-color: #dadce0;
|
||||||
|
padding: 20px;
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
max-height: 100%;
|
||||||
|
}
|
||||||
|
iframe {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.o_print_custom, .o_cancel_custom {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 20px;
|
||||||
|
right: 20px;
|
||||||
|
}
|
||||||
|
.o_print_custom {
|
||||||
|
right: 66px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.denmand_set {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
height: 50px;
|
||||||
|
> span {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
margin-left: 30px;
|
||||||
|
}
|
||||||
|
label {
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
input,label {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
th[data-name=processing_time] + th::before{
|
||||||
|
content: '待执行单据';
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
|
|||||||
@@ -3,17 +3,18 @@
|
|||||||
<field name="name">sf.production.demand.plan.tree</field>
|
<field name="name">sf.production.demand.plan.tree</field>
|
||||||
<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,create_date 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"/>
|
||||||
|
<button string="创建工艺设计任务" name="%(sf_manufacturing.action_create_technology_design_task_wizard)d"
|
||||||
|
type="action" class="btn-secondary" context="{'active_model': 'sf.production.demand.plan', 'active_ids': active_ids}"/>
|
||||||
</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="partner_id"/>
|
<field name="customer_name"/>
|
||||||
<field name="order_remark"/>
|
<field name="order_remark"/>
|
||||||
<field name="glb_url" optional="hide"/>
|
<field name="glb_url" optional="hide"/>
|
||||||
<field name="product_id"/>
|
<field name="product_id"/>
|
||||||
@@ -28,6 +29,9 @@
|
|||||||
<field name="qty_delivered"/>
|
<field name="qty_delivered"/>
|
||||||
<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_precision"/>
|
||||||
|
<field name="embryo_long"/>
|
||||||
<field name="materials_id"/>
|
<field name="materials_id"/>
|
||||||
<field name="model_machining_precision"/>
|
<field name="model_machining_precision"/>
|
||||||
<field name="model_process_parameters_ids" widget="many2many_tags"/>
|
<field name="model_process_parameters_ids" widget="many2many_tags"/>
|
||||||
@@ -41,7 +45,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"/>
|
||||||
@@ -60,6 +67,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="更新时间"/>
|
||||||
@@ -80,7 +88,7 @@
|
|||||||
<field name="product_id"/>
|
<field name="product_id"/>
|
||||||
<field name="part_name"/>
|
<field name="part_name"/>
|
||||||
<field name="part_number"/>
|
<field name="part_number"/>
|
||||||
<field name="partner_id"/>
|
<field name="customer_name"/>
|
||||||
<field name="supply_method"/>
|
<field name="supply_method"/>
|
||||||
<field name="materials_id"/>
|
<field name="materials_id"/>
|
||||||
<field name="model_process_parameters_ids"/>
|
<field name="model_process_parameters_ids"/>
|
||||||
@@ -89,7 +97,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_partner_id" string="客户" domain="[]" context="{'group_by': 'partner_id'}"/>
|
<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="[]"
|
||||||
@@ -120,4 +129,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>
|
||||||
@@ -27,11 +27,17 @@ class SfDemandPlanPrintWizard(models.TransientModel):
|
|||||||
], string='状态', default='not_start')
|
], string='状态', default='not_start')
|
||||||
machining_drawings = fields.Binary('2D加工图纸', related='product_id.machining_drawings', store=True)
|
machining_drawings = fields.Binary('2D加工图纸', related='product_id.machining_drawings', store=True)
|
||||||
|
|
||||||
workorder_id = fields.Many2one('mrp.workorder', string='工单')
|
|
||||||
cnc_worksheet = fields.Binary('程序单')
|
cnc_worksheet = fields.Binary('程序单')
|
||||||
|
|
||||||
def demand_plan_print(self):
|
@api.model
|
||||||
for record in self:
|
def demand_plan_print(self, print_ids):
|
||||||
|
plan_print_ids = self.env['sf.demand.plan.print.wizard'].sudo().search(
|
||||||
|
[('id', 'in', print_ids)])
|
||||||
|
if not plan_print_ids:
|
||||||
|
return {'message': '记录不存在'}
|
||||||
|
success_records = []
|
||||||
|
failed_records = []
|
||||||
|
for record in plan_print_ids:
|
||||||
pdf_data = record.machining_drawings if record.type == '1' else record.cnc_worksheet
|
pdf_data = record.machining_drawings if record.type == '1' else record.cnc_worksheet
|
||||||
if pdf_data:
|
if pdf_data:
|
||||||
try:
|
try:
|
||||||
@@ -46,9 +52,20 @@ class SfDemandPlanPrintWizard(models.TransientModel):
|
|||||||
elif record.type == '2':
|
elif record.type == '2':
|
||||||
c_num += 1
|
c_num += 1
|
||||||
record.demand_plan_id.print_count = f"T{t_num}C{c_num}"
|
record.demand_plan_id.print_count = f"T{t_num}C{c_num}"
|
||||||
|
success_records.append({
|
||||||
|
'filename_url': record.filename_url,
|
||||||
|
})
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
record.status = 'fail'
|
record.status = 'fail'
|
||||||
_logger.error(f"文件{record.filename_url}打印失败: {str(e)}")
|
_logger.error(f"文件{record.filename_url}打印失败: {str(e)}")
|
||||||
|
failed_records.append({
|
||||||
|
'filename_url': record.filename_url,
|
||||||
|
})
|
||||||
|
if failed_records:
|
||||||
|
message = f"成功打印 {len(success_records)} 个文件,失败 {len(failed_records)} 个"
|
||||||
|
else:
|
||||||
|
message = f"所有 {len(success_records)} 个文件打印成功"
|
||||||
|
return {'message': message}
|
||||||
|
|
||||||
|
|
||||||
class MrpWorkorder(models.Model):
|
class MrpWorkorder(models.Model):
|
||||||
@@ -59,7 +76,7 @@ class MrpWorkorder(models.Model):
|
|||||||
for record in self:
|
for record in self:
|
||||||
if 'cnc_worksheet' in vals:
|
if 'cnc_worksheet' in vals:
|
||||||
demand_plan_print = self.env['sf.demand.plan.print.wizard'].sudo().search(
|
demand_plan_print = self.env['sf.demand.plan.print.wizard'].sudo().search(
|
||||||
[('workorder_id', '=', record.id)])
|
[('model_id', '=', record.model_id), ('type', '=', '2')])
|
||||||
if demand_plan_print:
|
if demand_plan_print:
|
||||||
self.env['sf.demand.plan.print.wizard'].sudo().write(
|
self.env['sf.demand.plan.print.wizard'].sudo().write(
|
||||||
{'cnc_worksheet': record.cnc_worksheet, 'filename_url': record.cnc_worksheet_name})
|
{'cnc_worksheet': record.cnc_worksheet, 'filename_url': record.cnc_worksheet_name})
|
||||||
@@ -71,7 +88,6 @@ class MrpWorkorder(models.Model):
|
|||||||
'demand_plan_id': demand_plan.id,
|
'demand_plan_id': demand_plan.id,
|
||||||
'model_id': demand_plan.model_id,
|
'model_id': demand_plan.model_id,
|
||||||
'type': '2',
|
'type': '2',
|
||||||
'workorder_id': record.id,
|
|
||||||
'cnc_worksheet': record.cnc_worksheet,
|
'cnc_worksheet': record.cnc_worksheet,
|
||||||
'filename_url': record.cnc_worksheet_name
|
'filename_url': record.cnc_worksheet_name
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,12 +4,12 @@
|
|||||||
<field name="name">sf.demand.plan.print.wizard.tree</field>
|
<field name="name">sf.demand.plan.print.wizard.tree</field>
|
||||||
<field name="model">sf.demand.plan.print.wizard</field>
|
<field name="model">sf.demand.plan.print.wizard</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="打印">
|
<tree string="打印" class="print_demand" js_class="print_demand" >
|
||||||
<field name="model_id"/>
|
<field name="model_id"/>
|
||||||
<field name="filename_url"/>
|
<field name="filename_url"/>
|
||||||
<field name="type"/>
|
<field name="type"/>
|
||||||
<field name="machining_drawings" widget="adaptive_viewer"/>
|
<field name="machining_drawings" attrs="{'column_invisible': True }"/>
|
||||||
<field name="cnc_worksheet" widget="pdf_viewer"/>
|
<field name="cnc_worksheet" attrs="{'column_invisible': True }" />
|
||||||
<field name="status"/>
|
<field name="status"/>
|
||||||
</tree>
|
</tree>
|
||||||
</field>
|
</field>
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ class ResProductTemplate(models.Model):
|
|||||||
model_name = fields.Char('模型名称')
|
model_name = fields.Char('模型名称')
|
||||||
categ_type = fields.Selection(
|
categ_type = fields.Selection(
|
||||||
[("成品", "成品"), ("胚料", "胚料"), ("原材料", "原材料")], string='产品的类别', related='categ_id.type', store=True)
|
[("成品", "成品"), ("胚料", "胚料"), ("原材料", "原材料")], string='产品的类别', related='categ_id.type', store=True)
|
||||||
|
blank_type = 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))
|
||||||
@@ -72,14 +73,20 @@ class ResProductTemplate(models.Model):
|
|||||||
copy_product_id.product_tmpl_id.active = True
|
copy_product_id.product_tmpl_id.active = True
|
||||||
model_type = self.env['sf.model.type'].search([], limit=1)
|
model_type = self.env['sf.model.type'].search([], limit=1)
|
||||||
attachment = self.attachment_create(item['model_name'], item['model_data'])
|
attachment = self.attachment_create(item['model_name'], item['model_data'])
|
||||||
|
# 判断参数中是否包含 坯料尺寸(长、宽、高)
|
||||||
|
blank_bool = any(value is not None and value != 0 for value in (
|
||||||
|
item.get('blank_length'), item.get('blank_width'), item.get('blank_height'))) if all(
|
||||||
|
key in item for key in ('blank_length', 'blank_width', 'blank_height')) else False
|
||||||
vals = {
|
vals = {
|
||||||
'name': '%s-%s-%s' % ('P', order_id.name, i),
|
'name': '%s-%s-%s' % ('P', order_id.name, i),
|
||||||
'model_long': item['model_long'] + model_type.embryo_tolerance,
|
'blank_type': item.get('blank_type'),
|
||||||
'model_width': item['model_width'] + model_type.embryo_tolerance,
|
'model_long': item.get('blank_length') if blank_bool else item['model_long'] + model_type.embryo_tolerance,
|
||||||
'model_height': item['model_height'] + model_type.embryo_tolerance,
|
'model_width': item.get('blank_width') if blank_bool else item['model_width'] + model_type.embryo_tolerance,
|
||||||
'model_volume': (item['model_long'] + model_type.embryo_tolerance) * (
|
'model_height': item.get('blank_height') if blank_bool else item['model_height'] + model_type.embryo_tolerance,
|
||||||
item['model_width'] + model_type.embryo_tolerance) * (
|
'model_volume': ((item['model_long'] + model_type.embryo_tolerance) *
|
||||||
item['model_height'] + model_type.embryo_tolerance),
|
(item['model_width'] + model_type.embryo_tolerance) *
|
||||||
|
(item['model_height'] + model_type.embryo_tolerance)) if not blank_bool else (
|
||||||
|
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': 'R',
|
'model_processing_panel': 'R',
|
||||||
'model_machining_precision': item['model_machining_precision'],
|
'model_machining_precision': item['model_machining_precision'],
|
||||||
|
|||||||
@@ -95,7 +95,9 @@
|
|||||||
<page string="加工参数">
|
<page string="加工参数">
|
||||||
<group>
|
<group>
|
||||||
<group string="模型">
|
<group string="模型">
|
||||||
<label for="model_long" string="尺寸[mm]"/>
|
<field name="blank_type" readonly="1"/>
|
||||||
|
<field name="blank_precision" readonly="1"/>
|
||||||
|
<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="长"/>
|
||||||
<field name="model_long" class="o_address_zip"/>
|
<field name="model_long" class="o_address_zip"/>
|
||||||
@@ -104,6 +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="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="加工面板"
|
||||||
|
|||||||
@@ -31,6 +31,7 @@
|
|||||||
'wizard/sf_programming_reason_views.xml',
|
'wizard/sf_programming_reason_views.xml',
|
||||||
'wizard/sale_order_cancel_views.xml',
|
'wizard/sale_order_cancel_views.xml',
|
||||||
'wizard/process_outsourcing.xml',
|
'wizard/process_outsourcing.xml',
|
||||||
|
'wizard/create_technology_design_task_wizard_views.xml',
|
||||||
'views/mrp_views_menus.xml',
|
'views/mrp_views_menus.xml',
|
||||||
'views/agv_scheduling_views.xml',
|
'views/agv_scheduling_views.xml',
|
||||||
'views/stock_lot_views.xml',
|
'views/stock_lot_views.xml',
|
||||||
@@ -48,6 +49,8 @@
|
|||||||
'views/mrp_workorder_batch_replan.xml',
|
'views/mrp_workorder_batch_replan.xml',
|
||||||
'views/purchase_order_view.xml',
|
'views/purchase_order_view.xml',
|
||||||
'views/product_template_views.xml',
|
'views/product_template_views.xml',
|
||||||
|
'views/sf_technology_design_task_views.xml',
|
||||||
|
'views/sf_technology_design_task_dashboard.xml',
|
||||||
# 'views/stock_warehouse_orderpoint.xml',
|
# 'views/stock_warehouse_orderpoint.xml',
|
||||||
],
|
],
|
||||||
'assets': {
|
'assets': {
|
||||||
|
|||||||
@@ -45,9 +45,8 @@ class JikimoSaleRoutePicking(Sf_Bf_Connect):
|
|||||||
product.product_tmpl_id.is_customer_provided = True if item['embryo_redundancy_id'] else False
|
product.product_tmpl_id.is_customer_provided = True if item['embryo_redundancy_id'] else False
|
||||||
order_id.with_user(request.env.ref("base.user_admin")).sale_order_create_line(product, item)
|
order_id.with_user(request.env.ref("base.user_admin")).sale_order_create_line(product, item)
|
||||||
i += 1
|
i += 1
|
||||||
if kw.get('contract_file_name') and kw.get('contract_file') and kw.get('contract_code'):
|
# BFM 内部下单 新增合同等内容补充
|
||||||
order_id.create_sale_documents(kw.get('contract_file_name'), kw.get('contract_file'))
|
order_id.write_sale_documents(kw)
|
||||||
order_id.write({'contract_code': kw.get('contract_code'), 'contract_date': kw.get('contract_date')})
|
|
||||||
res['factory_order_no'] = order_id.name
|
res['factory_order_no'] = order_id.name
|
||||||
order_id.confirm_to_supply_method()
|
order_id.confirm_to_supply_method()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|||||||
@@ -36,6 +36,14 @@
|
|||||||
<field name="padding">5</field>
|
<field name="padding">5</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
<record id="sequence_technology_design_task" model="ir.sequence">
|
||||||
|
<field name="name">工艺设计任务编码规则</field>
|
||||||
|
<field name="code">sf.technology.design.task</field>
|
||||||
|
<field name="prefix">TD/%(year)s%(month)s%(day)s/</field>
|
||||||
|
<field name="padding">4</field>
|
||||||
|
<field name="company_id" eval="False"/>
|
||||||
|
</record>
|
||||||
|
|
||||||
<record id="stock_location_locations_virtual_outcontract" model="stock.location">
|
<record id="stock_location_locations_virtual_outcontract" model="stock.location">
|
||||||
<field name="name">外协</field>
|
<field name="name">外协</field>
|
||||||
<field name="location_id" ref="stock.stock_location_locations_virtual"/>
|
<field name="location_id" ref="stock.stock_location_locations_virtual"/>
|
||||||
|
|||||||
@@ -18,4 +18,5 @@ from . import quick_easy_order
|
|||||||
from . import purchase_order
|
from . import purchase_order
|
||||||
from . import quality_check
|
from . import quality_check
|
||||||
from . import purchase_request_line
|
from . import purchase_request_line
|
||||||
|
from . import sf_technology_design_task
|
||||||
# from . import stock_warehouse_orderpoint
|
# from . import stock_warehouse_orderpoint
|
||||||
@@ -26,9 +26,12 @@ class ResProductMo(models.Model):
|
|||||||
model_file = fields.Binary('模型文件')
|
model_file = fields.Binary('模型文件')
|
||||||
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_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='加工精度')
|
||||||
@@ -893,14 +896,22 @@ class ResProductMo(models.Model):
|
|||||||
if not embryo_redundancy_id:
|
if not embryo_redundancy_id:
|
||||||
raise UserError('请先配置模型类型内的坯料冗余')
|
raise UserError('请先配置模型类型内的坯料冗余')
|
||||||
product_name = self.generate_product_name(order_id, item, i)
|
product_name = self.generate_product_name(order_id, item, i)
|
||||||
|
# 判断参数中是否包含 坯料尺寸(长、宽、高)
|
||||||
|
blank_bool = any(value is not None and value != 0 for value in (
|
||||||
|
item.get('blank_length'), item.get('blank_width'), item.get('blank_height'))) if all(
|
||||||
|
key in item for key in ('blank_length', 'blank_width', 'blank_height')) else False
|
||||||
vals = {
|
vals = {
|
||||||
'name': product_name,
|
'name': product_name,
|
||||||
'model_long': self.format_float(item['model_long'] + embryo_redundancy_id.long),
|
'blank_type': item.get('blank_type'),
|
||||||
'model_width': self.format_float(item['model_width'] + embryo_redundancy_id.width),
|
'blank_precision': item.get('blank_precision'),
|
||||||
'model_height': self.format_float(item['model_height'] + embryo_redundancy_id.height),
|
'model_long': item.get('blank_length') if blank_bool else self.format_float(item['model_long'] + embryo_redundancy_id.long),
|
||||||
'model_volume': 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),
|
||||||
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),
|
||||||
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) *
|
||||||
|
(item['model_width'] + embryo_redundancy_id.width) *
|
||||||
|
(item['model_height'] + embryo_redundancy_id.height))) if not blank_bool else (
|
||||||
|
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'],
|
||||||
'model_machining_precision': item['model_machining_precision'],
|
'model_machining_precision': item['model_machining_precision'],
|
||||||
@@ -950,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)
|
||||||
|
|||||||
@@ -193,6 +193,19 @@ class SaleOrder(models.Model):
|
|||||||
'target': 'new',
|
'target': 'new',
|
||||||
'res_id': wizard.id,
|
'res_id': wizard.id,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def write_sale_documents(self, kw):
|
||||||
|
"""BFM 内部下单 内容补充 """
|
||||||
|
val = {}
|
||||||
|
if kw.get('contract_file_name') and kw.get('contract_file'):
|
||||||
|
document_id = self.create_sale_documents(kw.get('contract_file_name'), kw.get('contract_file'))
|
||||||
|
val.update({'contract_document_id': document_id.id})
|
||||||
|
if kw.get('contract_code') or kw.get('contract_date'):
|
||||||
|
val.update({'contract_code': kw.get('contract_code'), 'contract_date': kw.get('contract_date')})
|
||||||
|
if kw.get('customer_name'):
|
||||||
|
val.update({'customer_name': kw.get('customer_name')})
|
||||||
|
self.write(val)
|
||||||
|
|
||||||
def create_sale_documents(self, contract_file_name, contract_file):
|
def create_sale_documents(self, contract_file_name, contract_file):
|
||||||
# 创建ir.attachment记录
|
# 创建ir.attachment记录
|
||||||
attachment = self.env['ir.attachment'].sudo().create({
|
attachment = self.env['ir.attachment'].sudo().create({
|
||||||
@@ -214,9 +227,7 @@ class SaleOrder(models.Model):
|
|||||||
'res_id': self.id,
|
'res_id': self.id,
|
||||||
})
|
})
|
||||||
|
|
||||||
self.write({
|
return document
|
||||||
'contract_document_id': document.id
|
|
||||||
})
|
|
||||||
|
|
||||||
class SaleOrderLine(models.Model):
|
class SaleOrderLine(models.Model):
|
||||||
_inherit = 'sale.order.line'
|
_inherit = 'sale.order.line'
|
||||||
|
|||||||
251
sf_manufacturing/models/sf_technology_design_task.py
Normal file
251
sf_manufacturing/models/sf_technology_design_task.py
Normal file
@@ -0,0 +1,251 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from odoo import fields, models, api, _
|
||||||
|
from odoo.exceptions import ValidationError
|
||||||
|
|
||||||
|
|
||||||
|
class SfTechnologyDesignTask(models.Model):
|
||||||
|
_name = 'sf.technology.design.task'
|
||||||
|
_description = '工艺设计任务'
|
||||||
|
_order = 'create_date desc'
|
||||||
|
_inherit = ['mail.thread', 'mail.activity.mixin']
|
||||||
|
|
||||||
|
# 基本信息
|
||||||
|
name = fields.Char('任务编号', required=True, copy=False, readonly=True,
|
||||||
|
default=lambda self: _('New'))
|
||||||
|
state = fields.Selection([
|
||||||
|
('pending', '待工艺设计'),
|
||||||
|
('in_progress', '进行中'),
|
||||||
|
('completed', '已完成'),
|
||||||
|
('cancelled', '已取消'),
|
||||||
|
], string='状态', default='pending', tracking=True)
|
||||||
|
|
||||||
|
# 关联需求计划
|
||||||
|
demand_plan_id = fields.Many2one('sf.production.demand.plan', string='需求计划', required=True, ondelete='cascade')
|
||||||
|
|
||||||
|
# 销售订单信息
|
||||||
|
sale_order_id = fields.Many2one('sale.order', string='销售订单', compute='_compute_sale_order_info', store=True)
|
||||||
|
sale_order_line_id = fields.Many2one('sale.order.line', string='销售订单明细', compute='_compute_sale_order_info', store=True)
|
||||||
|
customer_name = fields.Char('客户名称', compute='_compute_sale_order_info', store=True)
|
||||||
|
|
||||||
|
# 产品信息
|
||||||
|
product_id = fields.Many2one('product.product', string='产品名称', compute='_compute_product_info', store=True)
|
||||||
|
part_name = fields.Char('零件名称', compute='_compute_product_info', store=True)
|
||||||
|
part_number = fields.Char('零件图号', compute='_compute_product_info', store=True)
|
||||||
|
model_id = fields.Char('模型ID', compute='_compute_product_info', store=True)
|
||||||
|
|
||||||
|
# 产品类型和文件
|
||||||
|
product_type = fields.Selection([
|
||||||
|
('standard', '标准件'),
|
||||||
|
('custom', '定制件'),
|
||||||
|
('prototype', '样件'),
|
||||||
|
], string='零件类型', default='custom', store=True)
|
||||||
|
model_file = fields.Binary('模型文件', compute='_compute_model_info', store=True)
|
||||||
|
model_filename = fields.Char('模型文件名', compute='_compute_model_info', store=True)
|
||||||
|
|
||||||
|
# 材料信息
|
||||||
|
materials_id = fields.Many2one('sf.production.materials', string='材料及型号', compute='_compute_material_info', store=True)
|
||||||
|
blank_type = fields.Selection([('圆料', '圆料'), ('方料', '方料')], string='坯料分类', compute='_compute_material_info', store=True)
|
||||||
|
blank_precision = fields.Selection([('精坯', '精坯'), ('粗坯', '粗坯')], string='坯料类型', compute='_compute_material_info', store=True)
|
||||||
|
embryo_long = fields.Char('坯料尺寸', compute='_compute_embryo_long', store=True)
|
||||||
|
|
||||||
|
# 加工信息
|
||||||
|
machining_precision = fields.Selection([
|
||||||
|
('0.10', '±0.10mm'),
|
||||||
|
('0.05', '±0.05mm'),
|
||||||
|
('0.03', '±0.03mm'),
|
||||||
|
('0.02', '±0.02mm'),
|
||||||
|
('0.01', '±0.01mm')
|
||||||
|
], string='加工精度', compute='_compute_machining_info', store=True)
|
||||||
|
machining_panel = fields.Char('加工面', compute='_compute_machining_info', store=True)
|
||||||
|
|
||||||
|
# 订单信息
|
||||||
|
product_uom_qty = fields.Float('订单数量', compute='_compute_order_info', store=True)
|
||||||
|
is_incoming_material = fields.Boolean('客供料', compute='_compute_order_info', store=True)
|
||||||
|
|
||||||
|
# 工艺参数
|
||||||
|
clamping_times = fields.Integer('装夹次数', default=1)
|
||||||
|
single_clamping_duration = fields.Float('单次装夹时长(分钟)', default=30.0)
|
||||||
|
cnc_processing_duration = fields.Float('CNC加工时长(分钟)', default=0.0)
|
||||||
|
|
||||||
|
# 质量要求
|
||||||
|
customer_quality_requirements = fields.Text('客户质量要求')
|
||||||
|
processing_drawing_2d = fields.Binary('2D加工图纸')
|
||||||
|
processing_drawing_filename = fields.Char('2D图纸文件名')
|
||||||
|
|
||||||
|
# 时间信息
|
||||||
|
create_date = fields.Datetime('创建时间', default=fields.Datetime.now)
|
||||||
|
start_date = fields.Datetime('开始时间')
|
||||||
|
complete_date = fields.Datetime('完成时间')
|
||||||
|
deadline = fields.Datetime('截止时间')
|
||||||
|
|
||||||
|
# 负责人
|
||||||
|
assigned_to = fields.Many2one('res.users', string='负责人', tracking=True)
|
||||||
|
created_by = fields.Many2one('res.users', string='创建人', default=lambda self: self.env.user, readonly=True)
|
||||||
|
|
||||||
|
# 备注
|
||||||
|
notes = fields.Text('备注')
|
||||||
|
|
||||||
|
@api.depends('demand_plan_id')
|
||||||
|
def _compute_sale_order_info(self):
|
||||||
|
for record in self:
|
||||||
|
if record.demand_plan_id:
|
||||||
|
record.sale_order_id = record.demand_plan_id.sale_order_id
|
||||||
|
record.sale_order_line_id = record.demand_plan_id.sale_order_line_id
|
||||||
|
record.customer_name = record.demand_plan_id.customer_name
|
||||||
|
else:
|
||||||
|
record.sale_order_id = False
|
||||||
|
record.sale_order_line_id = False
|
||||||
|
record.customer_name = ""
|
||||||
|
|
||||||
|
@api.depends('demand_plan_id')
|
||||||
|
def _compute_product_info(self):
|
||||||
|
for record in self:
|
||||||
|
if record.demand_plan_id and record.demand_plan_id.product_id:
|
||||||
|
record.product_id = record.demand_plan_id.product_id
|
||||||
|
if record.product_id.product_tmpl_id:
|
||||||
|
record.part_name = record.product_id.product_tmpl_id.part_name
|
||||||
|
record.part_number = record.product_id.product_tmpl_id.part_number
|
||||||
|
record.model_id = record.product_id.product_tmpl_id.model_id
|
||||||
|
else:
|
||||||
|
record.part_name = ""
|
||||||
|
record.part_number = ""
|
||||||
|
record.model_id = ""
|
||||||
|
else:
|
||||||
|
record.product_id = False
|
||||||
|
record.part_name = ""
|
||||||
|
record.part_number = ""
|
||||||
|
record.model_id = ""
|
||||||
|
|
||||||
|
@api.depends('product_id')
|
||||||
|
def _compute_model_info(self):
|
||||||
|
for record in self:
|
||||||
|
if record.product_id and record.product_id.product_tmpl_id:
|
||||||
|
template = record.product_id.product_tmpl_id
|
||||||
|
record.model_file = template.model_file
|
||||||
|
record.model_filename = template.model_name
|
||||||
|
else:
|
||||||
|
record.model_file = False
|
||||||
|
record.model_filename = ""
|
||||||
|
|
||||||
|
@api.depends('product_id')
|
||||||
|
def _compute_material_info(self):
|
||||||
|
for record in self:
|
||||||
|
if record.product_id and record.product_id.product_tmpl_id:
|
||||||
|
template = record.product_id.product_tmpl_id
|
||||||
|
record.materials_id = template.materials_id
|
||||||
|
record.blank_type = template.blank_type
|
||||||
|
record.blank_precision = template.blank_precision
|
||||||
|
else:
|
||||||
|
record.materials_id = False
|
||||||
|
record.blank_type = False
|
||||||
|
record.blank_precision = False
|
||||||
|
|
||||||
|
@api.depends('product_id')
|
||||||
|
def _compute_machining_info(self):
|
||||||
|
for record in self:
|
||||||
|
if record.product_id and record.product_id.product_tmpl_id:
|
||||||
|
template = record.product_id.product_tmpl_id
|
||||||
|
record.machining_precision = template.model_machining_precision
|
||||||
|
record.machining_panel = template.model_processing_panel
|
||||||
|
else:
|
||||||
|
record.machining_precision = False
|
||||||
|
record.machining_panel = ""
|
||||||
|
|
||||||
|
@api.depends('demand_plan_id')
|
||||||
|
def _compute_order_info(self):
|
||||||
|
for record in self:
|
||||||
|
if record.demand_plan_id:
|
||||||
|
record.product_uom_qty = record.demand_plan_id.product_uom_qty
|
||||||
|
record.is_incoming_material = record.demand_plan_id.is_incoming_material
|
||||||
|
else:
|
||||||
|
record.product_uom_qty = 0.0
|
||||||
|
record.is_incoming_material = False
|
||||||
|
|
||||||
|
@api.depends('product_id')
|
||||||
|
def _compute_embryo_long(self):
|
||||||
|
for record in self:
|
||||||
|
if record.product_id and record.product_id.product_tmpl_id:
|
||||||
|
template = record.product_id.product_tmpl_id
|
||||||
|
record.embryo_long = f"{template.model_long}×{template.model_width}×{template.model_height}"
|
||||||
|
else:
|
||||||
|
record.embryo_long = ""
|
||||||
|
|
||||||
|
@api.model
|
||||||
|
def create(self, vals):
|
||||||
|
if vals.get('name', _('New')) == _('New'):
|
||||||
|
vals['name'] = self.env['ir.sequence'].next_by_code('sf.technology.design.task') or _('New')
|
||||||
|
return super(SfTechnologyDesignTask, self).create(vals)
|
||||||
|
|
||||||
|
def action_start_design(self):
|
||||||
|
"""开始工艺设计"""
|
||||||
|
self.ensure_one()
|
||||||
|
if self.state != 'pending':
|
||||||
|
raise ValidationError(_('只有待工艺设计的任务才能开始设计'))
|
||||||
|
self.write({
|
||||||
|
'state': 'in_progress',
|
||||||
|
'start_date': fields.Datetime.now(),
|
||||||
|
})
|
||||||
|
self.message_post(body=_('工艺设计任务已开始'))
|
||||||
|
|
||||||
|
def action_complete_design(self):
|
||||||
|
"""完成工艺设计"""
|
||||||
|
self.ensure_one()
|
||||||
|
if self.state != 'in_progress':
|
||||||
|
raise ValidationError(_('只有进行中的任务才能完成'))
|
||||||
|
self.write({
|
||||||
|
'state': 'completed',
|
||||||
|
'complete_date': fields.Datetime.now(),
|
||||||
|
})
|
||||||
|
self.message_post(body=_('工艺设计任务已完成'))
|
||||||
|
|
||||||
|
def action_cancel_task(self):
|
||||||
|
"""取消任务"""
|
||||||
|
self.ensure_one()
|
||||||
|
if self.state in ['completed']:
|
||||||
|
raise ValidationError(_('已完成的任务不能取消'))
|
||||||
|
self.write({
|
||||||
|
'state': 'cancelled',
|
||||||
|
})
|
||||||
|
self.message_post(body=_('工艺设计任务已取消'))
|
||||||
|
|
||||||
|
def action_reset_to_pending(self):
|
||||||
|
"""重置为待工艺设计"""
|
||||||
|
self.ensure_one()
|
||||||
|
if self.state not in ['in_progress', 'cancelled']:
|
||||||
|
raise ValidationError(_('只有进行中或已取消的任务才能重置'))
|
||||||
|
self.write({
|
||||||
|
'state': 'pending',
|
||||||
|
'start_date': False,
|
||||||
|
'complete_date': False,
|
||||||
|
})
|
||||||
|
self.message_post(body=_('工艺设计任务已重置为待设计状态'))
|
||||||
|
|
||||||
|
@api.model
|
||||||
|
def create_from_demand_plan(self, demand_plan_ids):
|
||||||
|
"""从需求计划创建工艺设计任务"""
|
||||||
|
tasks = self.env['sf.technology.design.task']
|
||||||
|
for demand_plan in demand_plan_ids:
|
||||||
|
# 检查是否已存在工艺设计任务
|
||||||
|
existing_task = self.search([
|
||||||
|
('demand_plan_id', '=', demand_plan.id),
|
||||||
|
('state', 'not in', ['cancelled'])
|
||||||
|
], limit=1)
|
||||||
|
|
||||||
|
if not existing_task:
|
||||||
|
task_vals = {
|
||||||
|
'demand_plan_id': demand_plan.id,
|
||||||
|
'deadline': fields.Datetime.now() + fields.timedelta(days=3), # 默认3天期限
|
||||||
|
}
|
||||||
|
task = self.create(task_vals)
|
||||||
|
tasks |= task
|
||||||
|
|
||||||
|
return tasks
|
||||||
|
|
||||||
|
def get_task_count_by_state(self):
|
||||||
|
"""获取各状态的任务数量"""
|
||||||
|
return {
|
||||||
|
'pending': self.search_count([('state', '=', 'pending')]),
|
||||||
|
'in_progress': self.search_count([('state', '=', 'in_progress')]),
|
||||||
|
'completed': self.search_count([('state', '=', 'completed')]),
|
||||||
|
'cancelled': self.search_count([('state', '=', 'cancelled')]),
|
||||||
|
}
|
||||||
@@ -195,4 +195,10 @@ access_sf_work_individuation_page_group_plan_dispatch,sf_work_individuation_page
|
|||||||
access_sf_sale_order_cancel_wizard,sf_sale_order_cancel_wizard,model_sf_sale_order_cancel_wizard,sf_base.group_sf_order_user,1,1,1,0
|
access_sf_sale_order_cancel_wizard,sf_sale_order_cancel_wizard,model_sf_sale_order_cancel_wizard,sf_base.group_sf_order_user,1,1,1,0
|
||||||
access_sf_sale_order_cancel_line,sf_sale_order_cancel_line,model_sf_sale_order_cancel_line,sf_base.group_sf_order_user,1,0,1,1
|
access_sf_sale_order_cancel_line,sf_sale_order_cancel_line,model_sf_sale_order_cancel_line,sf_base.group_sf_order_user,1,0,1,1
|
||||||
|
|
||||||
access_product_creation_wizard,product_creation_wizard,model_product_creation_wizard,base.group_user,1,1,1,0
|
access_product_creation_wizard,product_creation_wizard,model_product_creation_wizard,base.group_user,1,1,1,0
|
||||||
|
access_sf_technology_design_task_group_sf_mrp_user,sf_technology_design_task_group_sf_mrp_user,model_sf_technology_design_task,sf_base.group_sf_mrp_user,1,1,1,0
|
||||||
|
access_sf_technology_design_task_group_sf_mrp_manager,sf_technology_design_task_group_sf_mrp_manager,model_sf_technology_design_task,sf_base.group_sf_mrp_manager,1,1,1,1
|
||||||
|
access_sf_technology_design_task_group_plan_dispatch,sf_technology_design_task_group_plan_dispatch,model_sf_technology_design_task,sf_base.group_plan_dispatch,1,1,1,0
|
||||||
|
access_sf_technology_design_task_group_production_engineer,sf_technology_design_task_group_production_engineer,model_sf_technology_design_task,sf_base.group_production_engineer,1,1,1,0
|
||||||
|
access_sf_create_technology_design_task_wizard_group_sf_mrp_user,sf_create_technology_design_task_wizard_group_sf_mrp_user,model_sf_create_technology_design_task_wizard,sf_base.group_sf_mrp_user,1,1,1,0
|
||||||
|
access_sf_create_technology_design_task_wizard_group_sf_mrp_manager,sf_create_technology_design_task_wizard_group_sf_mrp_manager,model_sf_create_technology_design_task_wizard,sf_base.group_sf_mrp_manager,1,1,1,0
|
||||||
|
@@ -0,0 +1,76 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<!-- 工艺设计任务仪表板视图 -->
|
||||||
|
<record id="view_sf_technology_design_task_dashboard" model="ir.ui.view">
|
||||||
|
<field name="name">sf.technology.design.task.dashboard</field>
|
||||||
|
<field name="model">sf.technology.design.task</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<kanban class="o_kanban_small_column" default_group_by="state">
|
||||||
|
<field name="name"/>
|
||||||
|
<field name="state"/>
|
||||||
|
<field name="product_id"/>
|
||||||
|
<field name="part_name"/>
|
||||||
|
<field name="assigned_to"/>
|
||||||
|
<field name="deadline"/>
|
||||||
|
<field name="create_date"/>
|
||||||
|
<templates>
|
||||||
|
<t t-name="kanban-box">
|
||||||
|
<div class="oe_kanban_global_click">
|
||||||
|
<div class="oe_kanban_content">
|
||||||
|
<div class="o_kanban_record_top">
|
||||||
|
<div class="o_kanban_record_headings">
|
||||||
|
<strong class="o_kanban_record_title">
|
||||||
|
<field name="name"/>
|
||||||
|
</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="o_kanban_record_body">
|
||||||
|
<div class="o_kanban_primary_left">
|
||||||
|
<field name="product_id"/>
|
||||||
|
</div>
|
||||||
|
<div class="o_kanban_primary_right">
|
||||||
|
<field name="part_name"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="o_kanban_record_bottom">
|
||||||
|
<div class="oe_kanban_bottom_left">
|
||||||
|
<field name="assigned_to"/>
|
||||||
|
</div>
|
||||||
|
<div class="oe_kanban_bottom_right">
|
||||||
|
<field name="deadline"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
</templates>
|
||||||
|
</kanban>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<!-- 工艺设计任务仪表板动作 -->
|
||||||
|
<record id="action_sf_technology_design_task_dashboard" model="ir.actions.act_window">
|
||||||
|
<field name="name">工艺设计任务仪表板</field>
|
||||||
|
<field name="type">ir.actions.act_window</field>
|
||||||
|
<field name="res_model">sf.technology.design.task</field>
|
||||||
|
<field name="view_mode">kanban</field>
|
||||||
|
<field name="view_id" ref="view_sf_technology_design_task_dashboard"/>
|
||||||
|
<field name="context">{'search_default_filter_pending': 1}</field>
|
||||||
|
<field name="help" type="html">
|
||||||
|
<p class="o_view_nocontent_smiling_face">
|
||||||
|
创建第一个工艺设计任务
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
工艺设计任务用于管理产品工艺设计流程,包括从需求计划到工艺完成的整个过程。
|
||||||
|
</p>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<!-- 工艺设计任务仪表板菜单 -->
|
||||||
|
<menuitem id="menu_sf_technology_design_task_dashboard"
|
||||||
|
name="工艺设计仪表板"
|
||||||
|
sequence="15"
|
||||||
|
action="action_sf_technology_design_task_dashboard"
|
||||||
|
parent="mrp.menu_mrp_manufacturing"/>
|
||||||
|
|
||||||
|
</odoo>
|
||||||
280
sf_manufacturing/views/sf_technology_design_task_views.xml
Normal file
280
sf_manufacturing/views/sf_technology_design_task_views.xml
Normal file
@@ -0,0 +1,280 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<!-- 工艺设计任务列表视图 -->
|
||||||
|
<record id="view_sf_technology_design_task_tree" model="ir.ui.view">
|
||||||
|
<field name="name">sf.technology.design.task.tree</field>
|
||||||
|
<field name="model">sf.technology.design.task</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<tree string="工艺设计任务" default_order="create_date desc"
|
||||||
|
class="technology_design_task_tree freeze-columns-before-part_number">
|
||||||
|
<header>
|
||||||
|
<button string="开始设计" name="action_start_design" type="object"
|
||||||
|
class="btn-primary" attrs="{'invisible': [('state', '!=', 'pending')]}"/>
|
||||||
|
<button string="完成设计" name="action_complete_design" type="object"
|
||||||
|
class="btn-success" attrs="{'invisible': [('state', '!=', 'in_progress')]}"/>
|
||||||
|
<button string="取消任务" name="action_cancel_task" type="object"
|
||||||
|
class="btn-secondary" attrs="{'invisible': [('state', 'in', ['completed'])]}"/>
|
||||||
|
<button string="重置任务" name="action_reset_to_pending" type="object"
|
||||||
|
class="btn-warning" attrs="{'invisible': [('state', 'not in', ['in_progress', 'cancelled'])]}"/>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- 主要字段 -->
|
||||||
|
<field name="name" string="任务编号"/>
|
||||||
|
<field name="state" widget="badge"
|
||||||
|
decoration-success="state == 'completed'"
|
||||||
|
decoration-warning="state == 'in_progress'"
|
||||||
|
decoration-danger="state == 'cancelled'"/>
|
||||||
|
<field name="sale_order_id" string="销售单号"/>
|
||||||
|
<field name="product_id" string="产品名称"/>
|
||||||
|
<field name="part_name" string="零件名称"/>
|
||||||
|
<field name="part_number" string="零件图号"/>
|
||||||
|
<field name="product_type" string="零件类型"/>
|
||||||
|
<field name="model_id" string="模型ID" optional="hide"/>
|
||||||
|
<field name="model_filename" string="模型文件" optional="hide"/>
|
||||||
|
<field name="materials_id" string="材料及型号"/>
|
||||||
|
<field name="blank_type" string="坯料分类" optional="hide"/>
|
||||||
|
<field name="blank_precision" string="坯料类型" optional="hide"/>
|
||||||
|
<field name="embryo_long" string="坯料尺寸" optional="hide"/>
|
||||||
|
<field name="machining_precision" string="加工精度" optional="hide"/>
|
||||||
|
<field name="machining_panel" string="加工面" optional="hide"/>
|
||||||
|
<field name="product_uom_qty" string="订单数量"/>
|
||||||
|
<field name="is_incoming_material" string="客供料"/>
|
||||||
|
<field name="clamping_times" string="装夹次数" optional="hide"/>
|
||||||
|
<field name="single_clamping_duration" string="单次装夹时长" optional="hide"/>
|
||||||
|
<field name="cnc_processing_duration" string="CNC加工时长" optional="hide"/>
|
||||||
|
<field name="customer_quality_requirements" string="客户质量要求" optional="hide"/>
|
||||||
|
<field name="processing_drawing_filename" string="2D加工图纸" optional="hide"/>
|
||||||
|
<field name="customer_name" string="客户名称" optional="hide"/>
|
||||||
|
|
||||||
|
<!-- 时间字段 -->
|
||||||
|
<field name="create_date" string="创建时间" optional="hide"/>
|
||||||
|
<field name="start_date" string="开始时间" optional="hide"/>
|
||||||
|
<field name="complete_date" string="完成时间" optional="hide"/>
|
||||||
|
<field name="deadline" string="截止时间" optional="hide"/>
|
||||||
|
|
||||||
|
<!-- 负责人字段 -->
|
||||||
|
<field name="assigned_to" string="负责人" optional="hide"/>
|
||||||
|
<field name="created_by" string="创建人" optional="hide"/>
|
||||||
|
|
||||||
|
<!-- 备注 -->
|
||||||
|
<field name="notes" string="备注" optional="hide"/>
|
||||||
|
</tree>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<!-- 工艺设计任务搜索视图 -->
|
||||||
|
<record id="view_sf_technology_design_task_search" model="ir.ui.view">
|
||||||
|
<field name="name">sf.technology.design.task.search</field>
|
||||||
|
<field name="model">sf.technology.design.task</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<search>
|
||||||
|
<field name="name"/>
|
||||||
|
<field name="sale_order_id"/>
|
||||||
|
<field name="product_id"/>
|
||||||
|
<field name="part_name"/>
|
||||||
|
<field name="part_number"/>
|
||||||
|
<field name="customer_name"/>
|
||||||
|
<field name="materials_id"/>
|
||||||
|
<field name="assigned_to"/>
|
||||||
|
<field name="created_by"/>
|
||||||
|
|
||||||
|
<filter name="filter_pending" string="待工艺设计" domain="[('state', '=', 'pending')]"/>
|
||||||
|
<filter name="filter_in_progress" string="进行中" domain="[('state', '=', 'in_progress')]"/>
|
||||||
|
<filter name="filter_completed" string="已完成" domain="[('state', '=', 'completed')]"/>
|
||||||
|
<filter name="filter_cancelled" string="已取消" domain="[('state', '=', 'cancelled')]"/>
|
||||||
|
|
||||||
|
<separator/>
|
||||||
|
|
||||||
|
<filter name="filter_my_tasks" string="我的任务" domain="[('assigned_to', '=', uid)]"/>
|
||||||
|
<filter name="filter_overdue" string="已逾期" domain="[('deadline', '<', context_today()), ('state', 'not in', ['completed', 'cancelled'])]"/>
|
||||||
|
|
||||||
|
<group expand="0" string="Group By">
|
||||||
|
<filter name="group_by_state" string="状态" domain="[]" context="{'group_by': 'state'}"/>
|
||||||
|
<filter name="group_by_sale_order" string="销售单号" domain="[]" context="{'group_by': 'sale_order_id'}"/>
|
||||||
|
<filter name="group_by_product" string="产品" domain="[]" context="{'group_by': 'product_id'}"/>
|
||||||
|
<filter name="group_by_customer" string="客户" domain="[]" context="{'group_by': 'customer_name'}"/>
|
||||||
|
<filter name="group_by_assigned_to" string="负责人" domain="[]" context="{'group_by': 'assigned_to'}"/>
|
||||||
|
<filter name="group_by_created_by" string="创建人" domain="[]" context="{'group_by': 'created_by'}"/>
|
||||||
|
<filter name="group_by_create_date" string="创建日期" domain="[]" context="{'group_by': 'create_date:day'}"/>
|
||||||
|
<filter name="group_by_deadline" string="截止日期" domain="[]" context="{'group_by': 'deadline:day'}"/>
|
||||||
|
</group>
|
||||||
|
</search>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<!-- 工艺设计任务表单视图 -->
|
||||||
|
<record id="view_sf_technology_design_task_form" model="ir.ui.view">
|
||||||
|
<field name="name">sf.technology.design.task.form</field>
|
||||||
|
<field name="model">sf.technology.design.task</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<form string="工艺设计任务">
|
||||||
|
<header>
|
||||||
|
<button name="action_start_design" string="开始设计" type="object"
|
||||||
|
class="btn-primary" attrs="{'invisible': [('state', '!=', 'pending')]}"/>
|
||||||
|
<button name="action_complete_design" string="完成设计" type="object"
|
||||||
|
class="btn-success" attrs="{'invisible': [('state', '!=', 'in_progress')]}"/>
|
||||||
|
<button name="action_cancel_task" string="取消任务" type="object"
|
||||||
|
class="btn-secondary" attrs="{'invisible': [('state', 'in', ['completed'])]}"/>
|
||||||
|
<button name="action_reset_to_pending" string="重置任务" type="object"
|
||||||
|
class="btn-warning" attrs="{'invisible': [('state', 'not in', ['in_progress', 'cancelled'])]}"/>
|
||||||
|
<field name="state" widget="statusbar"
|
||||||
|
statusbar_visible="pending,in_progress,completed"/>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<sheet>
|
||||||
|
<div class="oe_title">
|
||||||
|
<h1>
|
||||||
|
<field name="name" readonly="1"/>
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<group>
|
||||||
|
<group string="基本信息">
|
||||||
|
<field name="demand_plan_id"/>
|
||||||
|
<field name="sale_order_id"/>
|
||||||
|
<field name="customer_name"/>
|
||||||
|
<field name="assigned_to"/>
|
||||||
|
<field name="created_by"/>
|
||||||
|
</group>
|
||||||
|
<group string="时间信息">
|
||||||
|
<field name="create_date"/>
|
||||||
|
<field name="start_date"/>
|
||||||
|
<field name="complete_date"/>
|
||||||
|
<field name="deadline"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
|
||||||
|
<notebook>
|
||||||
|
<page string="产品信息">
|
||||||
|
<group>
|
||||||
|
<group string="产品详情">
|
||||||
|
<field name="product_id"/>
|
||||||
|
<field name="part_name"/>
|
||||||
|
<field name="part_number"/>
|
||||||
|
<field name="product_type"/>
|
||||||
|
<field name="model_id"/>
|
||||||
|
<field name="model_file" filename="model_filename"/>
|
||||||
|
<field name="model_filename" invisible="1"/>
|
||||||
|
</group>
|
||||||
|
<group string="材料信息">
|
||||||
|
<field name="materials_id"/>
|
||||||
|
<field name="blank_type"/>
|
||||||
|
<field name="blank_precision"/>
|
||||||
|
<field name="embryo_long"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
</page>
|
||||||
|
|
||||||
|
<page string="加工信息">
|
||||||
|
<group>
|
||||||
|
<group string="加工参数">
|
||||||
|
<field name="machining_precision"/>
|
||||||
|
<field name="machining_panel"/>
|
||||||
|
<field name="product_uom_qty"/>
|
||||||
|
<field name="is_incoming_material"/>
|
||||||
|
</group>
|
||||||
|
<group string="工艺参数">
|
||||||
|
<field name="clamping_times"/>
|
||||||
|
<field name="single_clamping_duration"/>
|
||||||
|
<field name="cnc_processing_duration"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
</page>
|
||||||
|
|
||||||
|
<page string="质量要求">
|
||||||
|
<group>
|
||||||
|
<field name="customer_quality_requirements" nolabel="1"/>
|
||||||
|
</group>
|
||||||
|
<group string="图纸文件">
|
||||||
|
<field name="processing_drawing_2d" filename="processing_drawing_filename"/>
|
||||||
|
<field name="processing_drawing_filename" invisible="1"/>
|
||||||
|
</group>
|
||||||
|
</page>
|
||||||
|
|
||||||
|
<page string="备注">
|
||||||
|
<field name="notes" nolabel="1"/>
|
||||||
|
</page>
|
||||||
|
</notebook>
|
||||||
|
</sheet>
|
||||||
|
|
||||||
|
<div class="oe_chatter">
|
||||||
|
<field name="message_follower_ids"/>
|
||||||
|
<field name="activity_ids"/>
|
||||||
|
<field name="message_ids"/>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<!-- 工艺设计任务动作 -->
|
||||||
|
<record id="action_sf_technology_design_task" model="ir.actions.act_window">
|
||||||
|
<field name="name">工艺设计任务</field>
|
||||||
|
<field name="type">ir.actions.act_window</field>
|
||||||
|
<field name="res_model">sf.technology.design.task</field>
|
||||||
|
<field name="view_mode">tree,form</field>
|
||||||
|
<field name="context">{'search_default_filter_pending': 1}</field>
|
||||||
|
<field name="help" type="html">
|
||||||
|
<p class="o_view_nocontent_smiling_face">
|
||||||
|
创建第一个工艺设计任务
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
工艺设计任务用于管理产品工艺设计流程,包括从需求计划到工艺完成的整个过程。
|
||||||
|
</p>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<!-- 工艺设计任务菜单 -->
|
||||||
|
<menuitem id="menu_sf_technology_design_task"
|
||||||
|
name="工艺设计任务"
|
||||||
|
sequence="20"
|
||||||
|
action="action_sf_technology_design_task"
|
||||||
|
parent="mrp.menu_mrp_manufacturing"/>
|
||||||
|
|
||||||
|
<!-- 工艺设计任务看板视图 -->
|
||||||
|
<record id="view_sf_technology_design_task_kanban" model="ir.ui.view">
|
||||||
|
<field name="name">sf.technology.design.task.kanban</field>
|
||||||
|
<field name="model">sf.technology.design.task</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<kanban class="o_kanban_small_column" default_group_by="state">
|
||||||
|
<field name="name"/>
|
||||||
|
<field name="state"/>
|
||||||
|
<field name="product_id"/>
|
||||||
|
<field name="part_name"/>
|
||||||
|
<field name="assigned_to"/>
|
||||||
|
<field name="deadline"/>
|
||||||
|
<templates>
|
||||||
|
<t t-name="kanban-box">
|
||||||
|
<div class="oe_kanban_global_click">
|
||||||
|
<div class="oe_kanban_content">
|
||||||
|
<div class="o_kanban_record_top">
|
||||||
|
<div class="o_kanban_record_headings">
|
||||||
|
<strong class="o_kanban_record_title">
|
||||||
|
<field name="name"/>
|
||||||
|
</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="o_kanban_record_body">
|
||||||
|
<div class="o_kanban_primary_left">
|
||||||
|
<field name="product_id"/>
|
||||||
|
</div>
|
||||||
|
<div class="o_kanban_primary_right">
|
||||||
|
<field name="part_name"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="o_kanban_record_bottom">
|
||||||
|
<div class="oe_kanban_bottom_left">
|
||||||
|
<field name="assigned_to"/>
|
||||||
|
</div>
|
||||||
|
<div class="oe_kanban_bottom_right">
|
||||||
|
<field name="deadline"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
</templates>
|
||||||
|
</kanban>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
</odoo>
|
||||||
@@ -6,4 +6,5 @@ from . import production_technology_re_adjust_wizard
|
|||||||
from . import mrp_workorder_batch_replan_wizard
|
from . import mrp_workorder_batch_replan_wizard
|
||||||
from . import sf_programming_reason
|
from . import sf_programming_reason
|
||||||
from . import sale_order_cancel
|
from . import sale_order_cancel
|
||||||
from . import process_outsourcing
|
from . import process_outsourcing
|
||||||
|
from . import create_technology_design_task_wizard
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from odoo import fields, models, api, _
|
||||||
|
from odoo.exceptions import UserError
|
||||||
|
|
||||||
|
|
||||||
|
class CreateTechnologyDesignTaskWizard(models.TransientModel):
|
||||||
|
_name = 'sf.create.technology.design.task.wizard'
|
||||||
|
_description = '创建工艺设计任务向导'
|
||||||
|
|
||||||
|
demand_plan_ids = fields.Many2many('sf.production.demand.plan', string='需求计划', required=True)
|
||||||
|
assigned_to = fields.Many2one('res.users', string='负责人', default=lambda self: self.env.user)
|
||||||
|
deadline = fields.Datetime('截止时间', required=True)
|
||||||
|
notes = fields.Text('备注')
|
||||||
|
|
||||||
|
@api.model
|
||||||
|
def default_get(self, fields_list):
|
||||||
|
res = super(CreateTechnologyDesignTaskWizard, self).default_get(fields_list)
|
||||||
|
if self.env.context.get('active_model') == 'sf.production.demand.plan':
|
||||||
|
demand_plan_ids = self.env.context.get('active_ids', [])
|
||||||
|
res['demand_plan_ids'] = [(6, 0, demand_plan_ids)]
|
||||||
|
return res
|
||||||
|
|
||||||
|
def action_create_tasks(self):
|
||||||
|
"""创建工艺设计任务"""
|
||||||
|
if not self.demand_plan_ids:
|
||||||
|
raise UserError(_('请选择需求计划'))
|
||||||
|
|
||||||
|
# 检查是否已存在工艺设计任务
|
||||||
|
existing_tasks = self.env['sf.technology.design.task'].search([
|
||||||
|
('demand_plan_id', 'in', self.demand_plan_ids.ids),
|
||||||
|
('state', 'not in', ['cancelled'])
|
||||||
|
])
|
||||||
|
|
||||||
|
if existing_tasks:
|
||||||
|
raise UserError(_('以下需求计划已存在工艺设计任务:\n%s') %
|
||||||
|
'\n'.join([task.demand_plan_id.name for task in existing_tasks]))
|
||||||
|
|
||||||
|
# 创建工艺设计任务
|
||||||
|
tasks = self.env['sf.technology.design.task']
|
||||||
|
for demand_plan in self.demand_plan_ids:
|
||||||
|
task_vals = {
|
||||||
|
'demand_plan_id': demand_plan.id,
|
||||||
|
'assigned_to': self.assigned_to.id,
|
||||||
|
'deadline': self.deadline,
|
||||||
|
'notes': self.notes,
|
||||||
|
}
|
||||||
|
task = self.env['sf.technology.design.task'].create(task_vals)
|
||||||
|
tasks |= task
|
||||||
|
|
||||||
|
# 返回工艺设计任务列表视图
|
||||||
|
return {
|
||||||
|
'type': 'ir.actions.act_window',
|
||||||
|
'name': _('工艺设计任务'),
|
||||||
|
'res_model': 'sf.technology.design.task',
|
||||||
|
'view_mode': 'tree,form',
|
||||||
|
'domain': [('id', 'in', tasks.ids)],
|
||||||
|
'context': {'search_default_filter_pending': 1},
|
||||||
|
}
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<record id="view_create_technology_design_task_wizard_form" model="ir.ui.view">
|
||||||
|
<field name="name">sf.create.technology.design.task.wizard.form</field>
|
||||||
|
<field name="model">sf.create.technology.design.task.wizard</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<form string="创建工艺设计任务">
|
||||||
|
<group>
|
||||||
|
<field name="demand_plan_ids" widget="many2many_tags"/>
|
||||||
|
<field name="assigned_to"/>
|
||||||
|
<field name="deadline"/>
|
||||||
|
<field name="notes"/>
|
||||||
|
</group>
|
||||||
|
<footer>
|
||||||
|
<button name="action_create_tasks" string="创建任务" type="object" class="btn-primary"/>
|
||||||
|
<button string="取消" class="btn-secondary" special="cancel"/>
|
||||||
|
</footer>
|
||||||
|
</form>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<record id="action_create_technology_design_task_wizard" model="ir.actions.act_window">
|
||||||
|
<field name="name">创建工艺设计任务</field>
|
||||||
|
<field name="type">ir.actions.act_window</field>
|
||||||
|
<field name="res_model">sf.create.technology.design.task.wizard</field>
|
||||||
|
<field name="view_mode">form</field>
|
||||||
|
<field name="target">new</field>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
@@ -92,7 +92,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<div class="page" style="min-height: 800px; position: relative; padding-bottom: 250px;">
|
<div class="page" style="min-height: 800px; position: relative; padding-bottom: 250px;">
|
||||||
|
|
||||||
<table class="table table-sm o_main_table mt-4" style="border: 1px solid black;">
|
<table class="table table-sm o_main_table mt-4" style="border: 1px solid black;">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 15%; border: 1px solid black;"><strong>产品名称:</strong></td>
|
<td style="width: 15%; border: 1px solid black;"><strong>产品名称:</strong></td>
|
||||||
@@ -113,7 +113,7 @@
|
|||||||
<td style="border: 1px solid black;"><span t-field="o.check_qty"/></td>
|
<td style="border: 1px solid black;"><span t-field="o.check_qty"/></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<h4 class="text-center mt-4">检验结果</h4>
|
<h4 class="text-center mt-4">检验结果</h4>
|
||||||
<div class="" style="position: relative;">
|
<div class="" style="position: relative;">
|
||||||
<table class="table table-sm mt-2" style="border: 1px solid black;">
|
<table class="table table-sm mt-2" style="border: 1px solid black;">
|
||||||
@@ -148,7 +148,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<img src="/sf_quality/static/img/pass.png" style="width: 200px; height: 200px;position: absolute; bottom: 20px; right: 20%;"/>
|
<img src="/sf_quality/static/img/pass.png" style="width: 100px; height: 100px; position: absolute; bottom: -100px; left: 90px;"/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div style="clear: both; margin-top: 30px; padding-top: 10px;">
|
<div style="clear: both; margin-top: 30px; padding-top: 10px;">
|
||||||
@@ -182,7 +182,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row mt-4">
|
<div class="row mt-4">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<p><strong>操作员: </strong> <span t-field="o.measure_operator"/></p>
|
<p><strong>操作员: </strong> <span t-field="o.measure_operator"/></p>
|
||||||
@@ -200,7 +200,7 @@
|
|||||||
<p></p>
|
<p></p>
|
||||||
</div>
|
</div>
|
||||||
</div> -->
|
</div> -->
|
||||||
|
|
||||||
<!-- 页脚固定在底部 -->
|
<!-- 页脚固定在底部 -->
|
||||||
<!-- <div style="position: absolute; bottom: 0; left: 0; right: 0;"> -->
|
<!-- <div style="position: absolute; bottom: 0; left: 0; right: 0;"> -->
|
||||||
<t t-call="sf_quality.report_quality_footer"/>
|
<t t-call="sf_quality.report_quality_footer"/>
|
||||||
@@ -275,7 +275,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<img src="/sf_quality/static/img/pass.png" style="width: 200px; height: 200px;position: absolute; bottom: 20px; right: 20%;"/>
|
<img src="/sf_quality/static/img/pass.png" style="width: 100px; height: 100px; position: absolute; bottom: -100px; left: 90px;"/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div style="clear: both; margin-top: 30px; padding-top: 10px;">
|
<div style="clear: both; margin-top: 30px; padding-top: 10px;">
|
||||||
|
|||||||
@@ -66,7 +66,7 @@
|
|||||||
<attribute name="string">不合格</attribute>
|
<attribute name="string">不合格</attribute>
|
||||||
</xpath>
|
</xpath>
|
||||||
<xpath expr="//header//button[@name='do_fail'][2]" position="attributes">
|
<xpath expr="//header//button[@name='do_fail'][2]" position="attributes">
|
||||||
<attribute name="attrs">{'invisible': ['|',('quality_state', '!=', 'pass'),('work_state','in', ('done', 'rework'))]}</attribute>
|
<attribute name="attrs">{'invisible': ['|','|',('quality_state', '!=', 'pass'),('work_state','in', ('done', 'rework')),'&',('quality_state', '=', 'pass'), ('test_type', '=', 'factory_inspection')]}</attribute>
|
||||||
<attribute name="string">不合格</attribute>
|
<attribute name="string">不合格</attribute>
|
||||||
</xpath>
|
</xpath>
|
||||||
|
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ class ReSaleOrder(models.Model):
|
|||||||
|
|
||||||
model_display_version = fields.Char('模型展示版本', default="v1")
|
model_display_version = fields.Char('模型展示版本', default="v1")
|
||||||
|
|
||||||
|
customer_name = fields.Char('终端客户')
|
||||||
contract_code = fields.Char('合同编号')
|
contract_code = fields.Char('合同编号')
|
||||||
contract_date = fields.Date('合同日期')
|
contract_date = fields.Date('合同日期')
|
||||||
contract_document_id = fields.Many2one('documents.document', string='合同文件')
|
contract_document_id = fields.Many2one('documents.document', string='合同文件')
|
||||||
@@ -157,7 +158,7 @@ class ReSaleOrder(models.Model):
|
|||||||
'is_incoming_material': True if item.get('embryo_redundancy_id') else False,
|
'is_incoming_material': True if item.get('embryo_redundancy_id') else False,
|
||||||
'manual_quotation': item.get('manual_quotation'),
|
'manual_quotation': item.get('manual_quotation'),
|
||||||
'model_id': item['model_id'],
|
'model_id': item['model_id'],
|
||||||
'delivery_end_date': item['delivery_end_date'],
|
'delivery_end_date': item['delivery_end_date']
|
||||||
}
|
}
|
||||||
return self.env['sale.order.line'].with_context(skip_procurement=True).create(vals)
|
return self.env['sale.order.line'].with_context(skip_procurement=True).create(vals)
|
||||||
|
|
||||||
@@ -291,8 +292,7 @@ class ResaleOrderLine(models.Model):
|
|||||||
manual_quotation = fields.Boolean('人工编程', default=False)
|
manual_quotation = fields.Boolean('人工编程', default=False)
|
||||||
model_url = fields.Char('模型文件地址')
|
model_url = fields.Char('模型文件地址')
|
||||||
model_id = fields.Char('模型ID')
|
model_id = fields.Char('模型ID')
|
||||||
|
delivery_end_date = fields.Date('客户交期')
|
||||||
delivery_end_date = fields.Date('交货截止日期')
|
|
||||||
|
|
||||||
@api.depends('embryo_redundancy_id')
|
@api.depends('embryo_redundancy_id')
|
||||||
def _compute_is_incoming_material(self):
|
def _compute_is_incoming_material(self):
|
||||||
|
|||||||
@@ -90,6 +90,9 @@
|
|||||||
<field name="partner_id" position="replace">
|
<field name="partner_id" position="replace">
|
||||||
<field name="partner_id" widget="res_partner_many2one" context="{'is_customer': True }"
|
<field name="partner_id" widget="res_partner_many2one" context="{'is_customer': True }"
|
||||||
options='{"always_reload": True,"no_create": True}'/>
|
options='{"always_reload": True,"no_create": True}'/>
|
||||||
|
<field name="customer_name" readonly="1"/>
|
||||||
|
<field name="contract_code" readonly="1"/>
|
||||||
|
<field name="contract_date" readonly="1"/>
|
||||||
</field>
|
</field>
|
||||||
<field name="payment_term_id" position="attributes">
|
<field name="payment_term_id" position="attributes">
|
||||||
<attribute name="attrs">{'readonly': [('state', 'in', ['cancel','sale'])]}</attribute>
|
<attribute name="attrs">{'readonly': [('state', 'in', ['cancel','sale'])]}</attribute>
|
||||||
@@ -138,7 +141,7 @@
|
|||||||
<attribute name="optional">hide</attribute>
|
<attribute name="optional">hide</attribute>
|
||||||
</xpath>
|
</xpath>
|
||||||
<xpath expr="//field[@name='order_line']/tree/field[@name='remark']" position="before">
|
<xpath expr="//field[@name='order_line']/tree/field[@name='remark']" position="before">
|
||||||
<field name="delivery_end_date" optional="hide"/>
|
<field name="delivery_end_date" optional="show"/>
|
||||||
</xpath>
|
</xpath>
|
||||||
|
|
||||||
<field name="user_id" position="attributes">
|
<field name="user_id" position="attributes">
|
||||||
|
|||||||
@@ -818,6 +818,7 @@ class FunctionalToolAssembly(models.Model):
|
|||||||
|
|
||||||
def _get_old_tool_material_lot(self, material_ids):
|
def _get_old_tool_material_lot(self, material_ids):
|
||||||
""" 根据先进先出原则选择物料批次 """
|
""" 根据先进先出原则选择物料批次 """
|
||||||
|
material_ids = material_ids.filtered(lambda m: m.tracking != 'none')
|
||||||
location_id = self.env['stock.location'].search([('name', '=', '刀具房')])
|
location_id = self.env['stock.location'].search([('name', '=', '刀具房')])
|
||||||
stock_quant = self.env['stock.quant'].sudo().search(
|
stock_quant = 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), ('quantity', '>', '0')],
|
||||||
|
|||||||
@@ -7,8 +7,14 @@ def migrate(cr, version):
|
|||||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||||
sf_shelf_model = env["sf.shelf"]
|
sf_shelf_model = env["sf.shelf"]
|
||||||
sf_shelf_location_model = env["sf.shelf.location"]
|
sf_shelf_location_model = env["sf.shelf.location"]
|
||||||
|
|
||||||
|
preproduction_shelf_ids = sf_shelf_location_model.get_preproduction_shelf_ids()
|
||||||
|
|
||||||
shelves = sf_shelf_model.search([])
|
shelves = sf_shelf_model.search([])
|
||||||
for shelf in shelves:
|
for shelf in shelves:
|
||||||
|
if shelf.id not in preproduction_shelf_ids:
|
||||||
|
continue
|
||||||
|
|
||||||
shelf_barcode = shelf.barcode or ""
|
shelf_barcode = shelf.barcode or ""
|
||||||
if not shelf_barcode:
|
if not shelf_barcode:
|
||||||
continue
|
continue
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ from odoo import api, fields, models, _
|
|||||||
from odoo.osv import expression
|
from odoo.osv import expression
|
||||||
from odoo.exceptions import UserError, ValidationError
|
from odoo.exceptions import UserError, ValidationError
|
||||||
|
|
||||||
|
_logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
class SfLocation(models.Model):
|
class SfLocation(models.Model):
|
||||||
_inherit = 'stock.location'
|
_inherit = 'stock.location'
|
||||||
@@ -459,7 +460,40 @@ class ShelfLocation(models.Model):
|
|||||||
product_sn_ids = fields.One2many('sf.shelf.location.lot', 'shelf_location_id', string='产品批次号')
|
product_sn_ids = fields.One2many('sf.shelf.location.lot', 'shelf_location_id', string='产品批次号')
|
||||||
# 产品数量
|
# 产品数量
|
||||||
product_num = fields.Integer('总数量', compute='_compute_number', store=True)
|
product_num = fields.Integer('总数量', compute='_compute_number', store=True)
|
||||||
|
tool_rfid = fields.Char('Rfid', compute='_compute_tool', store=True)
|
||||||
|
tool_name_id = fields.Many2one('sf.functional.cutting.tool.entity', string='功能刀具名称', compute='_compute_tool', store=True)
|
||||||
|
display_rfid = fields.Char('RFID', compute='_compute_display_rfid', store=True)
|
||||||
|
@api.depends('product_sn_id')
|
||||||
|
def _compute_display_rfid(self):
|
||||||
|
"""计算显示 RFID"""
|
||||||
|
for record in self:
|
||||||
|
try:
|
||||||
|
record.display_rfid = record.product_sn_id.rfid if record.product_sn_id else ''
|
||||||
|
except Exception as e:
|
||||||
|
record.display_rfid = ''
|
||||||
|
|
||||||
|
@api.depends('product_id')
|
||||||
|
def _compute_tool(self):
|
||||||
|
"""计算工具 RFID"""
|
||||||
|
for record in self:
|
||||||
|
try:
|
||||||
|
if record.product_id:
|
||||||
|
if record.product_id.categ_id.name == '功能刀具':
|
||||||
|
# 搜索关联的功能刀具实体
|
||||||
|
tool_id = self.env['sf.functional.cutting.tool.entity'].search(
|
||||||
|
[('barcode_id', '=', record.product_sn_id.id)], limit=1
|
||||||
|
)
|
||||||
|
if tool_id:
|
||||||
|
record.tool_rfid = tool_id.rfid
|
||||||
|
record.tool_name_id = tool_id.id
|
||||||
|
continue
|
||||||
|
# 默认值
|
||||||
|
record.tool_rfid = ''
|
||||||
|
record.tool_name_id = False
|
||||||
|
except Exception as e:
|
||||||
|
record.tool_rfid = ''
|
||||||
|
record.tool_name_id = False
|
||||||
|
_logger.error(f"计算 tool_rfid 时出错: {e}")
|
||||||
@api.depends('product_num')
|
@api.depends('product_num')
|
||||||
def _compute_product_num(self):
|
def _compute_product_num(self):
|
||||||
for record in self:
|
for record in self:
|
||||||
@@ -563,8 +597,27 @@ class ShelfLocation(models.Model):
|
|||||||
else:
|
else:
|
||||||
_layer_capacity = _layer_capacity
|
_layer_capacity = _layer_capacity
|
||||||
_layer = _layer+1
|
_layer = _layer+1
|
||||||
|
_layer_capacity = f"{_layer_capacity:02d}"
|
||||||
record.kanban_show_layer_info=f"{_layer}-{_layer_capacity}"
|
record.kanban_show_layer_info=f"{_layer}-{_layer_capacity}"
|
||||||
record.kanban_show_center_control_code=f"{_cc_code}"
|
record.kanban_show_center_control_code=f"{_cc_code}"
|
||||||
|
@api.model
|
||||||
|
def get_preproduction_shelf_ids(self):
|
||||||
|
"""
|
||||||
|
获取预生产区域的货架ID列表
|
||||||
|
Returns:
|
||||||
|
list: 货架ID列表
|
||||||
|
"""
|
||||||
|
query = """
|
||||||
|
SELECT DISTINCT b.shelf_id
|
||||||
|
FROM stock_location a
|
||||||
|
LEFT JOIN sf_shelf_location b ON a.id = b.location_id
|
||||||
|
WHERE a.barcode LIKE 'WH-PREPRODUCTION'
|
||||||
|
"""
|
||||||
|
self.env.cr.execute(query)
|
||||||
|
result = self.env.cr.fetchall()
|
||||||
|
# 将结果转换为ID列表
|
||||||
|
shelf_ids = [record[0] for record in result if record[0]]
|
||||||
|
return shelf_ids
|
||||||
|
|
||||||
class SfShelfLocationLot(models.Model):
|
class SfShelfLocationLot(models.Model):
|
||||||
_name = 'sf.shelf.location.lot'
|
_name = 'sf.shelf.location.lot'
|
||||||
@@ -581,6 +634,7 @@ class SfShelfLocationLot(models.Model):
|
|||||||
for item in self:
|
for item in self:
|
||||||
if item.qty_num > item.qty:
|
if item.qty_num > item.qty:
|
||||||
raise ValidationError('变更数量不能比库存数量大!!!')
|
raise ValidationError('变更数量不能比库存数量大!!!')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class SfStockMoveLine(models.Model):
|
class SfStockMoveLine(models.Model):
|
||||||
|
|||||||
@@ -1,128 +1,198 @@
|
|||||||
// 定义一个 mixin 来处理重复的样式
|
// 定义看板公共样式的Mixin
|
||||||
@mixin kanban-common-styles($record-count-each-row,
|
@mixin kanban-common-styles($record-count-each-row, $record-gap: 16px) {
|
||||||
$record-gap: 16px,
|
|
||||||
$color-guide-width: 70px) {
|
|
||||||
$record-gap-total-width: $record-gap * ($record-count-each-row - 1);
|
$record-gap-total-width: $record-gap * ($record-count-each-row - 1);
|
||||||
|
|
||||||
display: flex !important;
|
display: flex !important;
|
||||||
flex-wrap: wrap !important;
|
flex-wrap: wrap !important;
|
||||||
overflow-x: hidden !important;
|
overflow-x: hidden !important;
|
||||||
overflow-y: auto !important;
|
overflow-y: auto !important;
|
||||||
padding: 0px !important;
|
padding: 0 !important;
|
||||||
gap: $record-gap !important;
|
gap: $record-gap !important;
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
height: 100% !important;
|
height: 100% !important;
|
||||||
|
|
||||||
// 设置卡片样式
|
// === 卡片基础样式(完全保留)===
|
||||||
.o_kanban_record {
|
.o_kanban_record {
|
||||||
flex: 0 0 calc((100% - #{$record-gap-total-width}) / #{$record-count-each-row}) !important;
|
flex: 0 0 calc((100% - #{$record-gap-total-width}) / #{$record-count-each-row}) !important;
|
||||||
height: calc((100% - #{$record-gap * 6}) / 6) !important; // 平均分配高度
|
height: calc((100% - #{$record-gap * 6}) / 6) !important;
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
padding: 0px !important;
|
padding: 0 !important;
|
||||||
background-color: white !important;
|
background-color: white !important;
|
||||||
border: 1px solid #dee2e6 !important;
|
border: 1px solid #dee2e6 !important;
|
||||||
border-radius: 4px !important;
|
border-radius: 4px !important;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
|
||||||
min-width: calc((100% - #{$record-gap-total-width}) / #{$record-count-each-row}) !important;
|
min-width: calc((100% - #{$record-gap-total-width}) / #{$record-count-each-row}) !important;
|
||||||
max-width: calc((100% - #{$record-gap-total-width}) / #{$record-count-each-row}) !important;
|
max-width: calc((100% - #{$record-gap-total-width}) / #{$record-count-each-row}) !important;
|
||||||
|
position: relative;
|
||||||
|
transition: all 0.25s ease !important;
|
||||||
|
overflow: visible !important; // 允许悬停条溢出卡片边界
|
||||||
|
|
||||||
|
// === 状态标签(保留原设计)===
|
||||||
|
.status-label {
|
||||||
|
position: absolute;
|
||||||
|
top: 8px;
|
||||||
|
right: 8px;
|
||||||
|
padding: 3px 8px;
|
||||||
|
background: rgba(255, 255, 255, 0.9);
|
||||||
|
border: 1px solid #e0e0e0;
|
||||||
|
border-radius: 3px;
|
||||||
|
font-size: 11px;
|
||||||
|
color: #424242;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// === 优化:悬停信息条(核心改动)===
|
||||||
|
.status-hover-bar {
|
||||||
|
position: absolute;
|
||||||
|
bottom: calc(100% + 8px); // 默认显示在卡片上方
|
||||||
|
left: 0;
|
||||||
|
z-index: 1000;
|
||||||
|
min-width: max-content; // 宽度自适应内容
|
||||||
|
max-width: 300px; // 防止过宽
|
||||||
|
padding: 10px 12px;
|
||||||
|
background: rgba(255, 255, 255, 0.95);
|
||||||
|
border: 1px solid #e0e0e0;
|
||||||
|
border-radius: 4px;
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||||
|
font-size: 12px;
|
||||||
|
color: #424242;
|
||||||
|
white-space: nowrap; // 强制单行显示
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none; // 避免阻挡卡片交互
|
||||||
|
transition: opacity 0.2s ease, transform 0.2s ease;
|
||||||
|
transform: translateY(10px);
|
||||||
|
|
||||||
|
// 三角形指示器
|
||||||
|
&::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
left: 15px;
|
||||||
|
border: 6px solid transparent;
|
||||||
|
border-top-color: rgba(0, 0, 0, 0.85);
|
||||||
|
}
|
||||||
|
|
||||||
|
div {
|
||||||
|
margin-bottom: 4px;
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// === 悬停触发逻辑 ===
|
||||||
|
&:hover {
|
||||||
|
transform: translateY(-4px) !important;
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
|
||||||
|
z-index: 10;
|
||||||
|
|
||||||
|
.status-hover-bar {
|
||||||
|
background: rgba(50, 50, 50, 0.9);
|
||||||
|
color: #fff !important;
|
||||||
|
font-size: 12px;
|
||||||
|
opacity: 0.9;
|
||||||
|
transform: translateY(0);
|
||||||
|
pointer-events: auto; // 悬停时允许交互
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// === 边界保护(智能定位)===
|
||||||
|
// 左侧卡片:左对齐
|
||||||
|
&:nth-child(#{$record-count-each-row}n+1) .status-hover-bar {
|
||||||
|
left: 0;
|
||||||
|
right: auto;
|
||||||
|
&::after { left: 15px; }
|
||||||
|
}
|
||||||
|
|
||||||
|
// 右侧卡片:右对齐
|
||||||
|
&:nth-child(#{$record-count-each-row}n) .status-hover-bar {
|
||||||
|
left: auto;
|
||||||
|
right: 0;
|
||||||
|
&::after {
|
||||||
|
left: auto;
|
||||||
|
right: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:nth-child(#{$record-count-each-row}n + #{$record-count-each-row - 1}) .status-hover-bar {
|
||||||
|
left: auto;
|
||||||
|
right: 0;
|
||||||
|
&::after {
|
||||||
|
left: auto;
|
||||||
|
right: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 顶部卡片:悬停条显示在下方
|
||||||
|
&:nth-child(-n+#{$record-count-each-row}) .status-hover-bar {
|
||||||
|
bottom: auto;
|
||||||
|
top: calc(100% + 8px);
|
||||||
|
&::after {
|
||||||
|
top: auto;
|
||||||
|
bottom: 100%;
|
||||||
|
border-top-color: transparent;
|
||||||
|
border-bottom-color: rgba(255, 255, 255, 0.95);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// === 禁用状态样式(保留原效果)===
|
||||||
|
&.kanban_color_3 {
|
||||||
|
opacity: 0.6;
|
||||||
&:hover {
|
&:hover {
|
||||||
transform: translateY(-1px) !important;
|
opacity: 0.85;
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
|
.status-hover-bar {
|
||||||
}
|
background:rgba(0, 0, 0, 0.85);
|
||||||
|
color: white !important;
|
||||||
.o_kanban_record_bottom {
|
border: 1px solid rgba(255, 255, 255, 0.15) !important;
|
||||||
margin: 0;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.oe_kanban_card.kanban_color_3,
|
|
||||||
.oe_kanban_card.kanban_color_1,
|
|
||||||
.oe_kanban_card.kanban_color_2 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
|
|
||||||
.sf_kanban_custom_location_info_style {
|
|
||||||
display: flex !important;
|
|
||||||
justify-content: center !important;
|
|
||||||
align-items: center !important;
|
|
||||||
width: 100%;
|
|
||||||
font-size: 14px;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sf_kanban_no {
|
|
||||||
display: flex !important;
|
|
||||||
justify-content: center !important;
|
|
||||||
align-items: center !important;
|
|
||||||
font-size: 18px;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 使用 mixin 为不同的列数生成样式
|
// === 看板视图样式(完全保留)===
|
||||||
.o_kanban_view {
|
.o_kanban_view {
|
||||||
.sf_kanban_location_style {
|
// 卡片内部结构(不修改)
|
||||||
// 设置卡片样式
|
.o_kanban_record {
|
||||||
.o_kanban_record {
|
.o_kanban_record_bottom {
|
||||||
|
margin: 0;
|
||||||
&:hover {
|
}
|
||||||
transform: translateY(-1px) !important;
|
.oe_kanban_card.kanban_color_3,
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
|
.oe_kanban_card.kanban_color_1,
|
||||||
}
|
.oe_kanban_card.kanban_color_2 {
|
||||||
|
display: flex;
|
||||||
.o_kanban_record_bottom {
|
flex-direction: column;
|
||||||
margin: 0;
|
justify-content: center;
|
||||||
}
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
.oe_kanban_card.kanban_color_3,
|
height: 100%;
|
||||||
.oe_kanban_card.kanban_color_1,
|
.sf_kanban_custom_location_info_style {
|
||||||
.oe_kanban_card.kanban_color_2 {
|
display: flex !important;
|
||||||
display: flex;
|
justify-content: center !important;
|
||||||
flex-direction: column;
|
align-items: center !important;
|
||||||
justify-content: center;
|
width: 100%;
|
||||||
align-items: center;
|
font-size: 15px;
|
||||||
width: 100%;
|
color: #000000;
|
||||||
height: 100%;
|
padding:0px;
|
||||||
|
|
||||||
.sf_kanban_custom_location_info_style {
|
|
||||||
display: flex !important;
|
|
||||||
justify-content: center !important;
|
|
||||||
align-items: center !important;
|
|
||||||
width: 100%;
|
|
||||||
font-size: 14px;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sf_kanban_no {
|
|
||||||
display: flex !important;
|
|
||||||
justify-content: center !important;
|
|
||||||
align-items: center !important;
|
|
||||||
font-size: 18px;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sf_kanban_no {
|
||||||
|
display: flex !important;
|
||||||
|
justify-content: center !important;
|
||||||
|
align-items: center !important;
|
||||||
|
font-size: 18px;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 不同列数的看板样式
|
||||||
.sf_kanban_location_style12 {
|
.sf_kanban_location_style12 {
|
||||||
@include kanban-common-styles(12);
|
@include kanban-common-styles(12);
|
||||||
}
|
}
|
||||||
|
|
||||||
.sf_kanban_location_style19 {
|
.sf_kanban_location_style19 {
|
||||||
@include kanban-common-styles(19);
|
@include kanban-common-styles(19);
|
||||||
}
|
}
|
||||||
|
|
||||||
.sf_kanban_location_style4 {
|
.sf_kanban_location_style4 {
|
||||||
@include kanban-common-styles(4);
|
@include kanban-common-styles(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.sf_kanban_location_style3 {
|
.sf_kanban_location_style3 {
|
||||||
@include kanban-common-styles(3);
|
@include kanban-common-styles(3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -28,8 +28,18 @@ class CustomKanbanController extends KanbanController {
|
|||||||
isBaseStyle: true
|
isBaseStyle: true
|
||||||
});
|
});
|
||||||
let self = this;
|
let self = this;
|
||||||
// 获取货架分层数据
|
|
||||||
onWillStart(async () => {
|
onWillStart(async () => {
|
||||||
|
try {
|
||||||
|
this.preproductionShelfIds = await this.orm.call(
|
||||||
|
'sf.shelf.location',
|
||||||
|
'get_preproduction_shelf_ids',
|
||||||
|
[]
|
||||||
|
);
|
||||||
|
} catch (error) {
|
||||||
|
this.preproductionShelfIds = [];
|
||||||
|
}
|
||||||
|
|
||||||
this.searchModel.on('update', self, self._onUpdate);
|
this.searchModel.on('update', self, self._onUpdate);
|
||||||
await this.loadShelfLayersData();
|
await this.loadShelfLayersData();
|
||||||
});
|
});
|
||||||
@@ -50,7 +60,11 @@ class CustomKanbanController extends KanbanController {
|
|||||||
let domain = this.searchModel.domain;
|
let domain = this.searchModel.domain;
|
||||||
if (domain.length > 0) {
|
if (domain.length > 0) {
|
||||||
let shelfDomain = domain.find(item => item[0] === 'shelf_id');
|
let shelfDomain = domain.find(item => item[0] === 'shelf_id');
|
||||||
this.onShelfChange(shelfDomain[2]);
|
if (shelfDomain && shelfDomain[2] && this.preproductionShelfIds && this.preproductionShelfIds.includes(shelfDomain[2])) {
|
||||||
|
this.onShelfChange(shelfDomain[2]);
|
||||||
|
} else {
|
||||||
|
this.setKanbanStyle('sf_kanban_location_style');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
this.setKanbanStyle('sf_kanban_location_style');
|
this.setKanbanStyle('sf_kanban_location_style');
|
||||||
}
|
}
|
||||||
@@ -63,8 +77,7 @@ class CustomKanbanController extends KanbanController {
|
|||||||
let shelfDomain = domain.find(item => item[0] === 'shelf_id');
|
let shelfDomain = domain.find(item => item[0] === 'shelf_id');
|
||||||
if (shelfDomain) {
|
if (shelfDomain) {
|
||||||
let shelfId = shelfDomain[2];
|
let shelfId = shelfDomain[2];
|
||||||
// 如果货架ID存在,则设置相应的样式
|
if (shelfId && this.preproductionShelfIds.includes(shelfId)) {
|
||||||
if (shelfId) {
|
|
||||||
this.onShelfChange(shelfId);
|
this.onShelfChange(shelfId);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -75,7 +88,6 @@ class CustomKanbanController extends KanbanController {
|
|||||||
this.setKanbanStyle('sf_kanban_location_style');
|
this.setKanbanStyle('sf_kanban_location_style');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 加载所有货架的层数数据
|
// 加载所有货架的层数数据
|
||||||
@@ -107,10 +119,18 @@ class CustomKanbanController extends KanbanController {
|
|||||||
// 添加新类
|
// 添加新类
|
||||||
if (isHave) kanbanViewEl.classList.add(style);
|
if (isHave) kanbanViewEl.classList.add(style);
|
||||||
}
|
}
|
||||||
const ghostCards = document.querySelectorAll('.o_kanban_ghost');
|
|
||||||
ghostCards.forEach(card => {
|
// 获取当前的搜索域
|
||||||
card.remove();
|
let domain = this.searchModel.domain;
|
||||||
});
|
let shelfDomain = domain.find(item => item[0] === 'shelf_id');
|
||||||
|
|
||||||
|
// 只有当shelf_id在preproductionShelfIds中时才删除幽灵看板
|
||||||
|
if (shelfDomain && this.preproductionShelfIds && this.preproductionShelfIds.includes(shelfDomain[2])) {
|
||||||
|
const ghostCards = document.querySelectorAll('.o_kanban_ghost');
|
||||||
|
ghostCards.forEach(card => {
|
||||||
|
card.remove();
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
updatePagerLimit(limit) {
|
updatePagerLimit(limit) {
|
||||||
|
|||||||
@@ -193,53 +193,78 @@
|
|||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<record id="shelf_location_kanban_view" model="ir.ui.view">
|
<record id="shelf_location_kanban_view" model="ir.ui.view">
|
||||||
<field name="name">shelf.location.kanban</field>
|
<field name="name">shelf.location.kanban</field>
|
||||||
<field name="model">sf.shelf.location</field>
|
<field name="model">sf.shelf.location</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<kanban class="sf_kanban_location_style" js_class="custom_kanban" create="0">
|
<kanban class="sf_kanban_location_style" js_class="custom_kanban" create="0">
|
||||||
<templates>
|
<templates>
|
||||||
<t t-name="kanban-box">
|
<t t-name="kanban-box">
|
||||||
<t t-set='isBaseStyle' t-value="user_context.isBaseStyle"/>
|
<t t-set='isBaseStyle' t-value="user_context.isBaseStyle"/>
|
||||||
<div t-attf-class="oe_kanban_card oe_kanban_global_click
|
<div t-attf-class="oe_kanban_card oe_kanban_global_click
|
||||||
#{record.location_status.raw_value == '空闲' ? 'kanban_color_1' : ''}
|
#{record.location_status.raw_value == '空闲' ? 'kanban_color_1' : ''}
|
||||||
#{record.location_status.raw_value == '占用' ? 'kanban_color_2' : ''}
|
#{record.location_status.raw_value == '占用' ? 'kanban_color_2' : ''}
|
||||||
#{record.location_status.raw_value == '禁用' ? 'kanban_color_3' : ''}">
|
#{record.location_status.raw_value == '禁用' ? 'kanban_color_3' : ''}">
|
||||||
|
|
||||||
|
<!-- 所有情况都需要的数据 (隐藏) -->
|
||||||
|
<div style="display:none">
|
||||||
|
<field name="location_status"/>
|
||||||
|
<field name="tool_name_id"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- 所有情况都需要的数据 (隐藏) -->
|
<t t-if="isBaseStyle">
|
||||||
<div style="display:none">
|
<div class="o_kanban_card_header">
|
||||||
<field name="location_status"/>
|
<div class="o_kanban_card_header_title">
|
||||||
|
<field name="name"/>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="o_kanban_record_bottom">
|
||||||
<t t-if="isBaseStyle">
|
<field name="product_sn_id"/>
|
||||||
<div class="o_kanban_card_header">
|
<field name="product_id"/>
|
||||||
<div class="o_kanban_card_header_title">
|
|
||||||
<field name="name"/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="o_kanban_record_bottom">
|
|
||||||
<field name="product_sn_id"/>
|
|
||||||
<span>|</span>
|
|
||||||
<field name="product_id"/>
|
|
||||||
</div>
|
|
||||||
</t>
|
|
||||||
|
|
||||||
<t t-else="">
|
|
||||||
<div class="o_kanban_record_bottom sf_kanban_custom_location_info_style">
|
|
||||||
<field name="kanban_show_layer_info"/>
|
|
||||||
</div>
|
|
||||||
<div class="o_kanban_record_bottom sf_kanban_no">
|
|
||||||
<field name="kanban_show_center_control_code"/>
|
|
||||||
</div>
|
|
||||||
</t>
|
|
||||||
</div>
|
</div>
|
||||||
</t>
|
</t>
|
||||||
</templates>
|
|
||||||
</kanban>
|
<t t-else="">
|
||||||
</field>
|
<div class="o_kanban_record_bottom sf_kanban_custom_location_info_style">
|
||||||
</record>
|
<field name="kanban_show_layer_info"/>
|
||||||
|
</div>
|
||||||
|
<!-- 添加RFID字段 -->
|
||||||
|
<!-- <t t-if="record.data and record.data.display_rfid">
|
||||||
|
<div class="o_kanban_record_bottom">
|
||||||
|
<field name="display_rfid"/>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
<t t-if="record.data and record.data.tool_rfid">
|
||||||
|
<div class="o_kanban_record_bottom">
|
||||||
|
<field name="tool_rfid"/>
|
||||||
|
</div>
|
||||||
|
</t> -->
|
||||||
|
<!-- 悬停时显示的详细信息 -->
|
||||||
|
<div class="status-hover-bar">
|
||||||
|
<t t-if="record.product_id.value">
|
||||||
|
<div>产品: <t t-esc="record.product_id.value"/></div>
|
||||||
|
</t>
|
||||||
|
<t t-if="record.product_sn_id.value">
|
||||||
|
<div>标签ID: <t t-esc="record.product_sn_id.value"/></div>
|
||||||
|
</t>
|
||||||
|
<!-- <t t-if="record.display_rfid.value">
|
||||||
|
<div>rfid: <t t-esc="record.display_rfid.value"/></div>
|
||||||
|
</t>
|
||||||
|
<t t-if="record.tool_rfid.value">
|
||||||
|
<div>rfid: <t t-esc="record.tool_rfid.value"/></div>
|
||||||
|
</t> -->
|
||||||
|
<t t-if="record.tool_name_id and record.tool_name_id.value">
|
||||||
|
<div>功能刀具名称: <t t-esc="record.tool_name_id.value"/></div>
|
||||||
|
</t>
|
||||||
|
<div>状态: <t t-esc="record.location_status.value"/></div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
</templates>
|
||||||
|
</kanban>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
<!-- 搜索视图 -->
|
<!-- 搜索视图 -->
|
||||||
<record id="shelf_location_search_view" model="ir.ui.view">
|
<record id="shelf_location_search_view" model="ir.ui.view">
|
||||||
<field name="name">shelf.location.search</field>
|
<field name="name">shelf.location.search</field>
|
||||||
|
|||||||
Reference in New Issue
Block a user