优化收货人公司字段

This commit is contained in:
mgw
2023-03-08 15:24:55 +08:00
parent bebbaa2a5e
commit a4ee163aa7

View File

@@ -28,7 +28,7 @@ class JdEclp(models.Model):
receiverCityName = fields.Char(string='收件人市', compute='_truck_info')
receiverCountyName = fields.Char(string='收件人县', compute='_truck_info')
receiverTownName = fields.Char(string='收件人详细地址', compute='_truck_info')
receiverCompany = fields.Char(string='收货人公司', required=True)
receiverCompany = fields.Char(string='收货人公司', required=True, default=1)
remark = fields.Char(string='物流面单备注', default='')
grossWeight = fields.Char(string='总重量', required=True, default=0)
grossVolume = fields.Char(string='总体积', default=0)