Compare commits
62 Commits
feature/67
...
feature/71
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
307e860fe0 | ||
|
|
bd27f288f7 | ||
|
|
5bb6fcd4f7 | ||
|
|
b33c992b25 | ||
|
|
788183e239 | ||
|
|
f38f60a6a8 | ||
|
|
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 |
2
jikimo_demand_plan_queue/__init__.py
Normal file
2
jikimo_demand_plan_queue/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from . import models
|
||||||
18
jikimo_demand_plan_queue/__manifest__.py
Normal file
18
jikimo_demand_plan_queue/__manifest__.py
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
{
|
||||||
|
'name': '机企猫 需求计划排程队列',
|
||||||
|
'version': '1.0',
|
||||||
|
'summary': """ 使用队列进行排程 """,
|
||||||
|
'author': 'fox',
|
||||||
|
'website': '',
|
||||||
|
'category': '',
|
||||||
|
'depends': ['queue_job_batch', 'sf_demand_plan'],
|
||||||
|
'data': [
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
'application': True,
|
||||||
|
'installable': True,
|
||||||
|
'auto_install': False,
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
}
|
||||||
2
jikimo_demand_plan_queue/models/__init__.py
Normal file
2
jikimo_demand_plan_queue/models/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from . import production_demand_plan
|
||||||
20
jikimo_demand_plan_queue/models/production_demand_plan.py
Normal file
20
jikimo_demand_plan_queue/models/production_demand_plan.py
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
from odoo import models, fields
|
||||||
|
|
||||||
|
|
||||||
|
class ProductionDemandPlan(models.Model):
|
||||||
|
_inherit = 'sf.production.demand.plan'
|
||||||
|
|
||||||
|
|
||||||
|
def _do_production_schedule(self, pro_plan_list):
|
||||||
|
"""使用队列进行排程"""
|
||||||
|
batch_size = 10
|
||||||
|
current_time = fields.Datetime.now().strftime('%Y%m%d%H%M%S')
|
||||||
|
index = 1
|
||||||
|
for i in range(0, len(pro_plan_list), batch_size):
|
||||||
|
batch = self.env['queue.job.batch'].get_new_batch('plan-%s-%s' % (current_time, index))
|
||||||
|
pro_plans = pro_plan_list[i:i+batch_size]
|
||||||
|
pro_plans.with_context(
|
||||||
|
job_batch=batch
|
||||||
|
).with_delay().do_production_schedule()
|
||||||
|
index += 1
|
||||||
|
batch.enqueue()
|
||||||
@@ -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 {
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ def _create(self, data_list):
|
|||||||
# 如果该用户组被限制创建或更新操作
|
# 如果该用户组被限制创建或更新操作
|
||||||
if rec['is_create_or_update']:
|
if rec['is_create_or_update']:
|
||||||
raise UserError(
|
raise UserError(
|
||||||
_("您没有执行此操作的权限。请联系管理员"))
|
_("您没有执行此操作(%s)的权限。请联系管理员" % group_xml_id))
|
||||||
else:
|
else:
|
||||||
# 如果 'access.right' 模型不存在,可以在这里定义备选逻辑
|
# 如果 'access.right' 模型不存在,可以在这里定义备选逻辑
|
||||||
# 例如,记录日志、发送通知或者简单地跳过这部分逻辑
|
# 例如,记录日志、发送通知或者简单地跳过这部分逻辑
|
||||||
|
|||||||
@@ -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
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
""",
|
""",
|
||||||
'category': 'sf',
|
'category': 'sf',
|
||||||
'website': 'https://www.sf.jikimo.com',
|
'website': 'https://www.sf.jikimo.com',
|
||||||
'depends': ['sf_plan', 'jikimo_printing'],
|
'depends': ['sf_plan'],
|
||||||
'data': [
|
'data': [
|
||||||
'security/ir.model.access.csv',
|
'security/ir.model.access.csv',
|
||||||
'views/demand_plan.xml',
|
'views/demand_plan.xml',
|
||||||
@@ -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,10 @@ 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')
|
||||||
|
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 +196,14 @@ 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')
|
||||||
|
def _compute_embryo_long(self):
|
||||||
|
for line in self:
|
||||||
|
if line.product_id:
|
||||||
|
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 +279,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,14 +318,18 @@ 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
|
||||||
pro_plan_list.date_planned_start = date_planned_start
|
pro_plan_list.date_planned_start = date_planned_start
|
||||||
|
self._do_production_schedule(pro_plan_list)
|
||||||
|
|
||||||
|
def _do_production_schedule(self, pro_plan_list):
|
||||||
for pro_plan in pro_plan_list:
|
for pro_plan in pro_plan_list:
|
||||||
pro_plan.do_production_schedule()
|
pro_plan.do_production_schedule()
|
||||||
|
|
||||||
|
|
||||||
def button_action_print(self):
|
def button_action_print(self):
|
||||||
return {
|
return {
|
||||||
'res_model': 'sf.demand.plan.print.wizard',
|
'res_model': 'sf.demand.plan.print.wizard',
|
||||||
@@ -503,7 +517,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,76 @@
|
|||||||
.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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
<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">
|
||||||
<header>
|
<header>
|
||||||
<button string="打印" name="button_action_print" type="object"
|
<button string="打印" name="button_action_print" type="object"
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
<field name="id" optional="hide"/>
|
<field name="id" optional="hide"/>
|
||||||
<field name="priority"/>
|
<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 +28,8 @@
|
|||||||
<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"/>
|
||||||
|
<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"/>
|
||||||
@@ -80,7 +82,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 +91,7 @@
|
|||||||
<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="[]"
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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,7 @@
|
|||||||
<page string="加工参数">
|
<page string="加工参数">
|
||||||
<group>
|
<group>
|
||||||
<group string="模型">
|
<group string="模型">
|
||||||
<label for="model_long" string="尺寸[mm]"/>
|
<label for="model_long" string="坯料尺寸[mm]"/>
|
||||||
<div class="o_address_format">
|
<div class="o_address_format">
|
||||||
<label for="model_long" string="长"/>
|
<label for="model_long" string="长"/>
|
||||||
<field name="model_long" class="o_address_zip"/>
|
<field name="model_long" class="o_address_zip"/>
|
||||||
@@ -104,6 +104,7 @@
|
|||||||
<label for="model_height" string="高"/>
|
<label for="model_height" string="高"/>
|
||||||
<field name="model_height" class="o_address_zip"/>
|
<field name="model_height" class="o_address_zip"/>
|
||||||
</div>
|
</div>
|
||||||
|
<field name="blank_type" readonly="1"/>
|
||||||
<field name="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="加工面板"
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ 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='坯料分类')
|
||||||
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))
|
||||||
@@ -893,14 +894,20 @@ 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),
|
'model_long': item.get('blank_length') if blank_bool else self.format_float(item['model_long'] + embryo_redundancy_id.long),
|
||||||
'model_height': self.format_float(item['model_height'] + embryo_redundancy_id.height),
|
'model_width': item.get('blank_width') if blank_bool else self.format_float(item['model_width'] + embryo_redundancy_id.width),
|
||||||
'model_volume': self.format_float((item['model_long'] + embryo_redundancy_id.long) * (
|
'model_height': item.get('blank_height') if blank_bool else self.format_float(item['model_height'] + embryo_redundancy_id.height),
|
||||||
item['model_width'] + embryo_redundancy_id.width) * (
|
'model_volume': self.format_float(((item['model_long'] + embryo_redundancy_id.long) *
|
||||||
item['model_height'] + embryo_redundancy_id.height)),
|
(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'],
|
||||||
|
|||||||
@@ -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'
|
||||||
|
|||||||
@@ -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;">
|
||||||
@@ -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'
|
||||||
@@ -583,6 +636,7 @@ class SfShelfLocationLot(models.Model):
|
|||||||
raise ValidationError('变更数量不能比库存数量大!!!')
|
raise ValidationError('变更数量不能比库存数量大!!!')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class SfStockMoveLine(models.Model):
|
class SfStockMoveLine(models.Model):
|
||||||
_name = 'stock.move.line'
|
_name = 'stock.move.line'
|
||||||
_inherit = ['stock.move.line', 'printing.utils']
|
_inherit = ['stock.move.line', 'printing.utils']
|
||||||
|
|||||||
@@ -1,85 +1,158 @@
|
|||||||
// 定义一个 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 {
|
&:hover {
|
||||||
transform: translateY(-1px) !important;
|
transform: translateY(-4px) !important;
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !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; // 悬停时允许交互
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.o_kanban_record_bottom {
|
// === 边界保护(智能定位)===
|
||||||
margin: 0;
|
// 左侧卡片:左对齐
|
||||||
|
&:nth-child(#{$record-count-each-row}n+1) .status-hover-bar {
|
||||||
|
left: 0;
|
||||||
|
right: auto;
|
||||||
|
&::after { left: 15px; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.oe_kanban_card.kanban_color_3,
|
// 右侧卡片:右对齐
|
||||||
.oe_kanban_card.kanban_color_1,
|
&:nth-child(#{$record-count-each-row}n) .status-hover-bar {
|
||||||
.oe_kanban_card.kanban_color_2 {
|
left: auto;
|
||||||
display: flex;
|
right: 0;
|
||||||
flex-direction: column;
|
&::after {
|
||||||
justify-content: center;
|
left: auto;
|
||||||
align-items: center;
|
right: 15px;
|
||||||
width: 100%;
|
}
|
||||||
height: 100%;
|
}
|
||||||
|
&:nth-child(#{$record-count-each-row}n + #{$record-count-each-row - 1}) .status-hover-bar {
|
||||||
.sf_kanban_custom_location_info_style {
|
left: auto;
|
||||||
display: flex !important;
|
right: 0;
|
||||||
justify-content: center !important;
|
&::after {
|
||||||
align-items: center !important;
|
left: auto;
|
||||||
width: 100%;
|
right: 15px;
|
||||||
font-size: 14px;
|
}
|
||||||
color: #000000;
|
}
|
||||||
|
// 顶部卡片:悬停条显示在下方
|
||||||
|
&: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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sf_kanban_no {
|
// === 禁用状态样式(保留原效果)===
|
||||||
display: flex !important;
|
&.kanban_color_3 {
|
||||||
justify-content: center !important;
|
opacity: 0.6;
|
||||||
align-items: center !important;
|
&:hover {
|
||||||
font-size: 18px;
|
opacity: 0.85;
|
||||||
color: #000000;
|
.status-hover-bar {
|
||||||
|
background:rgba(0, 0, 0, 0.85);
|
||||||
|
color: white !important;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.15) !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 使用 mixin 为不同的列数生成样式
|
// === 看板视图样式(完全保留)===
|
||||||
.o_kanban_view {
|
.o_kanban_view {
|
||||||
.sf_kanban_location_style {
|
// 卡片内部结构(不修改)
|
||||||
// 设置卡片样式
|
|
||||||
.o_kanban_record {
|
.o_kanban_record {
|
||||||
|
|
||||||
&:hover {
|
|
||||||
transform: translateY(-1px) !important;
|
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.o_kanban_record_bottom {
|
.o_kanban_record_bottom {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.oe_kanban_card.kanban_color_3,
|
.oe_kanban_card.kanban_color_3,
|
||||||
.oe_kanban_card.kanban_color_1,
|
.oe_kanban_card.kanban_color_1,
|
||||||
.oe_kanban_card.kanban_color_2 {
|
.oe_kanban_card.kanban_color_2 {
|
||||||
@@ -89,14 +162,14 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
.sf_kanban_custom_location_info_style {
|
.sf_kanban_custom_location_info_style {
|
||||||
display: flex !important;
|
display: flex !important;
|
||||||
justify-content: center !important;
|
justify-content: center !important;
|
||||||
align-items: center !important;
|
align-items: center !important;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-size: 14px;
|
font-size: 15px;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
|
padding:0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sf_kanban_no {
|
.sf_kanban_no {
|
||||||
@@ -108,20 +181,17 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
// 不同列数的看板样式
|
||||||
.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,10 +60,14 @@ 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');
|
||||||
|
if (shelfDomain && shelfDomain[2] && this.preproductionShelfIds && this.preproductionShelfIds.includes(shelfDomain[2])) {
|
||||||
this.onShelfChange(shelfDomain[2]);
|
this.onShelfChange(shelfDomain[2]);
|
||||||
} else {
|
} else {
|
||||||
this.setKanbanStyle('sf_kanban_location_style');
|
this.setKanbanStyle('sf_kanban_location_style');
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
this.setKanbanStyle('sf_kanban_location_style');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_handleSearchUpdate() {
|
_handleSearchUpdate() {
|
||||||
@@ -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,11 +119,19 @@ class CustomKanbanController extends KanbanController {
|
|||||||
// 添加新类
|
// 添加新类
|
||||||
if (isHave) kanbanViewEl.classList.add(style);
|
if (isHave) kanbanViewEl.classList.add(style);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获取当前的搜索域
|
||||||
|
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');
|
const ghostCards = document.querySelectorAll('.o_kanban_ghost');
|
||||||
ghostCards.forEach(card => {
|
ghostCards.forEach(card => {
|
||||||
card.remove();
|
card.remove();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
updatePagerLimit(limit) {
|
updatePagerLimit(limit) {
|
||||||
if (this.model.root.limit !== limit) {
|
if (this.model.root.limit !== limit) {
|
||||||
|
|||||||
@@ -209,9 +209,9 @@
|
|||||||
<!-- 所有情况都需要的数据 (隐藏) -->
|
<!-- 所有情况都需要的数据 (隐藏) -->
|
||||||
<div style="display:none">
|
<div style="display:none">
|
||||||
<field name="location_status"/>
|
<field name="location_status"/>
|
||||||
|
<field name="tool_name_id"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<t t-if="isBaseStyle">
|
<t t-if="isBaseStyle">
|
||||||
<div class="o_kanban_card_header">
|
<div class="o_kanban_card_header">
|
||||||
<div class="o_kanban_card_header_title">
|
<div class="o_kanban_card_header_title">
|
||||||
@@ -220,7 +220,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="o_kanban_record_bottom">
|
<div class="o_kanban_record_bottom">
|
||||||
<field name="product_sn_id"/>
|
<field name="product_sn_id"/>
|
||||||
<span>|</span>
|
|
||||||
<field name="product_id"/>
|
<field name="product_id"/>
|
||||||
</div>
|
</div>
|
||||||
</t>
|
</t>
|
||||||
@@ -229,8 +228,35 @@
|
|||||||
<div class="o_kanban_record_bottom sf_kanban_custom_location_info_style">
|
<div class="o_kanban_record_bottom sf_kanban_custom_location_info_style">
|
||||||
<field name="kanban_show_layer_info"/>
|
<field name="kanban_show_layer_info"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="o_kanban_record_bottom sf_kanban_no">
|
<!-- 添加RFID字段 -->
|
||||||
<field name="kanban_show_center_control_code"/>
|
<!-- <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>
|
</div>
|
||||||
</t>
|
</t>
|
||||||
</div>
|
</div>
|
||||||
@@ -239,7 +265,6 @@
|
|||||||
</kanban>
|
</kanban>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</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