解决库存单据零件图号零件名称不对的问题
This commit is contained in:
@@ -849,7 +849,7 @@ class ReStockMove(models.Model):
|
||||
move.part_name = move.product_id.part_name
|
||||
elif move.product_id.categ_id.type == '坯料':
|
||||
product_name = ''
|
||||
match = re.search(r'(S\d{5}-\d)', move.product_id.name)
|
||||
match = re.search(r'(S\d{5}-\d+)', move.product_id.name)
|
||||
# 如果匹配成功,提取结果
|
||||
if match:
|
||||
product_name = match.group(0)
|
||||
@@ -881,7 +881,7 @@ class ReStockMove(models.Model):
|
||||
continue
|
||||
product_name = ''
|
||||
logging.info('制造订单的产品 %s', production_id.product_id.name)
|
||||
match = re.search(r'(S\d{5}-\d)', production_id.product_id.name)
|
||||
match = re.search(r'(S\d{5}-\d+)', production_id.product_id.name)
|
||||
# 如果匹配成功,提取结果
|
||||
if match:
|
||||
product_name = match.group(0)
|
||||
|
||||
Reference in New Issue
Block a user