序列号去除中文(打印条形码不能带中文否则会报错)

This commit is contained in:
gqh
2023-02-22 17:14:42 +08:00
parent d81cf77bbe
commit 7ddaace1ad
5 changed files with 11 additions and 8 deletions

View File

@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
import re
from odoo import api, fields, models, _
@@ -57,11 +59,12 @@ class MrpProduction(models.Model):
def action_generate_serial(self):
self.ensure_one()
iot_code = self.env['stock.lot']._get_next_serial(self.company_id, self.product_id) or self.env['ir.sequence'].next_by_code('stock.lot.serial')
iot_code_name = re.sub('[\u4e00-\u9fa5]', "", iot_code)
self.lot_producing_id = self.env['stock.lot'].create({
'product_id': self.product_id.id,
'company_id': self.company_id.id,
'name': self.env['stock.lot']._get_next_serial(self.company_id, self.product_id) or self.env[
'ir.sequence'].next_by_code('stock.lot.serial'),
'name': iot_code_name,
})
if self.move_finished_ids.filtered(lambda m: m.product_id == self.product_id).move_line_ids:
self.move_finished_ids.filtered(
@@ -235,6 +238,7 @@ class MrpProduction(models.Model):
current_sequence += 1
if work.name == '获取CNC加工程序':
work.button_start()
#work.button_finish()
work.fetchCNC()
#创建工单并进行排序