1、处理销售单的依赖导致的更新报错问题;2、优化客供料单据获取销售单字段信息和成品信息方法;

This commit is contained in:
yuxianghui
2024-11-07 10:43:08 +08:00
parent 6c0d9486fc
commit 9a4d7e87ec
5 changed files with 44 additions and 29 deletions

View File

@@ -402,3 +402,11 @@ class MachiningAccuracy(models.Model):
name = fields.Char('一般公差', index=True)
standard_tolerance = fields.Char(string="标准公差")
sync_id = fields.Char('同步ID')
class ReSaleOrder(models.Model):
_inherit = 'sale.order'
person_of_delivery = fields.Char('收货人')
telephone_of_delivery = fields.Char('电话号码')
address_of_delivery = fields.Char('联系地址')