From bbebc6900d8025890e77c3721fce1b49ebbed958 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Tue, 22 Feb 2022 15:02:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=88=E9=99=A4=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hb_server/apps/sam/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hb_server/apps/sam/models.py b/hb_server/apps/sam/models.py index e839950..65d230f 100644 --- a/hb_server/apps/sam/models.py +++ b/hb_server/apps/sam/models.py @@ -103,7 +103,7 @@ class SaleProduct(BaseModel): number = models.CharField('物品编号', max_length=50) iproduct = models.ForeignKey('inm.iproduct', verbose_name='关联库存产品', on_delete=models.CASCADE, related_name='sale_iproduct') remark = models.TextField('备注', null=True, blank=True) - packnum = models. + packnum = models.CharField('装箱单号', max_length=100, null=True, blank=True) class Meta: unique_together = ( ('sale','iproduct'), # 联合唯一