Merge branch 'develop' of https://e.coding.net/jikimo-hn/jikimo_sfs/jikimo_sf into develop
This commit is contained in:
@@ -45,6 +45,8 @@
|
|||||||
'sf_manufacturing/static/src/scss/kanban_change.scss',
|
'sf_manufacturing/static/src/scss/kanban_change.scss',
|
||||||
'sf_manufacturing/static/src/xml/button_show_on_tree.xml',
|
'sf_manufacturing/static/src/xml/button_show_on_tree.xml',
|
||||||
'sf_manufacturing/static/src/js/workpiece_delivery_wizard_confirm.js',
|
'sf_manufacturing/static/src/js/workpiece_delivery_wizard_confirm.js',
|
||||||
|
'sf_manufacturing/static/src/js/qr.js',
|
||||||
|
'sf_manufacturing/static/src/xml/qr.xml',
|
||||||
]
|
]
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1105,6 +1105,8 @@ class ResMrpWorkOrder(models.Model):
|
|||||||
if self.routing_type == '装夹预调':
|
if self.routing_type == '装夹预调':
|
||||||
# 判断是否有坯料的序列号信息
|
# 判断是否有坯料的序列号信息
|
||||||
boolean = False
|
boolean = False
|
||||||
|
if self.production_id.move_raw_ids:
|
||||||
|
if self.production_id.move_raw_ids[0].move_line_ids:
|
||||||
if self.production_id.move_raw_ids[0].move_line_ids:
|
if self.production_id.move_raw_ids[0].move_line_ids:
|
||||||
if self.production_id.move_raw_ids[0].move_line_ids[0].lot_id.name:
|
if self.production_id.move_raw_ids[0].move_line_ids[0].lot_id.name:
|
||||||
boolean = True
|
boolean = True
|
||||||
|
|||||||
115
sf_manufacturing/static/src/js/qr.js
Normal file
115
sf_manufacturing/static/src/js/qr.js
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
/** @odoo-module **/
|
||||||
|
import { registry } from '@web/core/registry';
|
||||||
|
import { Component } from '@odoo/owl';
|
||||||
|
|
||||||
|
class QRCodeWidget extends Component {
|
||||||
|
// 初始化组件
|
||||||
|
setup() {
|
||||||
|
console.log('QRCodeWidget setup');
|
||||||
|
this.qrCodeValue = ''; // 初始化为空字符串,用于存储条码
|
||||||
|
this.inputBuffer = ''; // 存储临时输入的字符
|
||||||
|
this.inputTimer = null; // 定时器
|
||||||
|
|
||||||
|
// 显式绑定上下文
|
||||||
|
this.onGlobalKeyDown = this.onGlobalKeyDown.bind(this);
|
||||||
|
window.addEventListener('keydown', this.onGlobalKeyDown);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 清理事件监听器,防止内存泄漏
|
||||||
|
willUnmount() {
|
||||||
|
window.removeEventListener('keydown', this.onGlobalKeyDown);
|
||||||
|
if (this.inputTimer) {
|
||||||
|
clearTimeout(this.inputTimer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 全局键盘事件监听器
|
||||||
|
onGlobalKeyDown(event) {
|
||||||
|
|
||||||
|
// 如果是Tab键,表示扫码输入结束
|
||||||
|
if (event.key === 'Tab' || event.key === 'Enter') {
|
||||||
|
this.qrCodeValue = this.inputBuffer; // 完整条码赋值
|
||||||
|
console.log('完整条码:', this.qrCodeValue);
|
||||||
|
this.onQRCodeChange(this.qrCodeValue); // 调用父组件的 onQRCodeChange 方法
|
||||||
|
this.inputBuffer = ''; // 清空临时缓冲区
|
||||||
|
event.preventDefault(); // 阻止Tab键的默认行为
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 只处理可打印字符
|
||||||
|
if (event.key.length === 1) {
|
||||||
|
this.inputBuffer += event.key; // 添加到缓冲区
|
||||||
|
// console.log('当前缓冲区:', this.inputBuffer);
|
||||||
|
|
||||||
|
// 清除之前的定时器,重新开始计时
|
||||||
|
if (this.inputTimer) {
|
||||||
|
clearTimeout(this.inputTimer);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 启动一个定时器,如果500ms内没有新的输入,则认为条码输入完成
|
||||||
|
this.inputTimer = setTimeout(() => {
|
||||||
|
this.qrCodeValue = this.inputBuffer;
|
||||||
|
// console.log('定时器触发,完整条码:', this.qrCodeValue);
|
||||||
|
this.inputBuffer = ''; // 清空缓冲区
|
||||||
|
}, 500); // 可以根据需要调整时间
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// 处理二维码输入变更
|
||||||
|
async onQRCodeChange(qrCodeValue) {
|
||||||
|
console.log('onQRCodeChange二维码输入变更', qrCodeValue); // 检查二维码的输入是否被捕获
|
||||||
|
|
||||||
|
if (qrCodeValue) {
|
||||||
|
// console.log('二维码输入变更');
|
||||||
|
try {
|
||||||
|
// 发起 RPC 请求
|
||||||
|
const result = await this.env.services.rpc('/web/dataset/call_kw', {
|
||||||
|
model: 'mrp.workorder',
|
||||||
|
method: 'search_read',
|
||||||
|
args: [
|
||||||
|
[['rfid_code', '=', qrCodeValue]], // 查询条件
|
||||||
|
['id'] // 返回的字段
|
||||||
|
],
|
||||||
|
kwargs: {}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (result.length > 0) {
|
||||||
|
console.log('该二维码对应的工单存在!');
|
||||||
|
} else {
|
||||||
|
console.log('未找到对应的工单。');
|
||||||
|
|
||||||
|
const routingTypeField = document.querySelector('[name="routing_type"]');
|
||||||
|
if (routingTypeField) {
|
||||||
|
let fieldValue = routingTypeField.querySelector('span').getAttribute('raw-value');
|
||||||
|
console.log('Routing Type Value:', fieldValue);
|
||||||
|
// 清理多余的引号
|
||||||
|
fieldValue = fieldValue ? fieldValue.replace(/["]+/g, '') : null;
|
||||||
|
console.log(fieldValue);
|
||||||
|
|
||||||
|
if (fieldValue && fieldValue === '装夹预调') {
|
||||||
|
// console.log('routing_type 为装夹预调');
|
||||||
|
|
||||||
|
// 检查 RFID 值
|
||||||
|
if (!qrCodeValue || qrCodeValue.length <= 3) return;
|
||||||
|
|
||||||
|
// 查找 name="button_start" 按钮并触发点击事件
|
||||||
|
const startButton = document.querySelector('[name="button_start"]');
|
||||||
|
if (startButton) {
|
||||||
|
startButton.click();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('查询工单时出错:', error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 返回模板名称
|
||||||
|
static template = 'sf_manufacturing.QRCodeWidgetTemplate';
|
||||||
|
}
|
||||||
|
|
||||||
|
// 将自定义字段注册到字段注册表
|
||||||
|
registry.category('fields').add('qrcode_widget', QRCodeWidget);
|
||||||
12
sf_manufacturing/static/src/xml/qr.xml
Normal file
12
sf_manufacturing/static/src/xml/qr.xml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<templates>
|
||||||
|
<t t-name="sf_manufacturing.QRCodeWidgetTemplate" owl="1">
|
||||||
|
<!-- <div> -->
|
||||||
|
<!-- <input type="text" t-att-value="props.value" placeholder="Scan QR code here" /> -->
|
||||||
|
<!-- </div> -->
|
||||||
|
<div t-esc="props.value">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
</templates>
|
||||||
|
|
||||||
@@ -125,9 +125,9 @@
|
|||||||
<field name="model">mrp.workorder</field>
|
<field name="model">mrp.workorder</field>
|
||||||
<field name="inherit_id" ref="mrp.mrp_production_workorder_form_view_inherit"/>
|
<field name="inherit_id" ref="mrp.mrp_production_workorder_form_view_inherit"/>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<xpath expr="//form" position="inside">
|
<!-- <xpath expr="//form" position="inside"> -->
|
||||||
<script src="sf_manufacturing/static/src/js/customRFID.js"/>
|
<!-- <script src="sf_manufacturing/static/src/js/customRFID.js"/> -->
|
||||||
</xpath>
|
<!-- </xpath> -->
|
||||||
<xpath expr="//header/field[@name='state']" position="replace">
|
<xpath expr="//header/field[@name='state']" position="replace">
|
||||||
<field name="state" widget="statusbar"
|
<field name="state" widget="statusbar"
|
||||||
statusbar_visible="pending,waiting,ready,progress,to be detected,done,rework"/>
|
statusbar_visible="pending,waiting,ready,progress,to be detected,done,rework"/>
|
||||||
@@ -225,6 +225,7 @@
|
|||||||
<xpath expr="//label[1]" position="before">
|
<xpath expr="//label[1]" position="before">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
<field name="production_id" invisible="0"/>
|
<field name="production_id" invisible="0"/>
|
||||||
|
<field name="routing_type" string="工单类型" readonly="1"/>
|
||||||
<field name="duration_expected" invisible="1"/>
|
<field name="duration_expected" invisible="1"/>
|
||||||
<field name="date_planned_start" invisible="1"/>
|
<field name="date_planned_start" invisible="1"/>
|
||||||
<field name="date_planned_finished" invisible="1"/>
|
<field name="date_planned_finished" invisible="1"/>
|
||||||
@@ -246,8 +247,8 @@
|
|||||||
<field name='process_state' invisible="1"/>
|
<field name='process_state' invisible="1"/>
|
||||||
<field name='tag_type' readonly="1" attrs='{"invisible": [("tag_type","=",False)]}'
|
<field name='tag_type' readonly="1" attrs='{"invisible": [("tag_type","=",False)]}'
|
||||||
decoration-danger="tag_type == '重新加工'"/>
|
decoration-danger="tag_type == '重新加工'"/>
|
||||||
<field name="rfid_code" force_save="1" readonly="0" cache="True"
|
<field name="rfid_code" force_save="1" readonly="1" cache="True"
|
||||||
attrs="{'invisible': [('rfid_code_old', '!=', False)]}"/>
|
attrs="{'invisible': [('rfid_code_old', '!=', False)]}" widget='qrcode_widget'/>
|
||||||
<field name="rfid_code_old" readonly="1" attrs="{'invisible': [('rfid_code_old', '=', False)]}"/>
|
<field name="rfid_code_old" readonly="1" attrs="{'invisible': [('rfid_code_old', '=', False)]}"/>
|
||||||
|
|
||||||
</xpath>
|
</xpath>
|
||||||
|
|||||||
Reference in New Issue
Block a user