This commit is contained in:
shilixia 2021-09-16 16:32:05 +08:00
parent c9f448616b
commit 64c4a4884e
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class Material(CommonAModel):
specification = models.CharField('型号', max_length=100, null=True, blank=True)
type = models.CharField('物料类型', choices= type_choices, max_length=20, default=1)
sort_str = models.CharField('排序字符', max_length=100, null=True, blank=True)
processes = models.JSONField('工艺流程', default=list, blank=True)
processes = models.JSONField('工艺流程', default=list, null=True,blank=True)
unit = models.CharField('基准计量单位', choices=unit_choices, default='', max_length=10)
class Meta: