1
0
forked from erp-dev/erp

feat: added remark field into shipment module

This commit is contained in:
2026-01-15 20:52:51 +08:00
parent 13c440a7fe
commit 554a2c4234
7 changed files with 57 additions and 2 deletions

View File

@@ -41,6 +41,12 @@ class ExternalFinishedProduct(ModelBase):
num_of_rolls = models.PositiveIntegerField(
verbose_name='卷数',
)
remark = models.CharField(
max_length=200,
null=True,
blank=True,
verbose_name='备注',
)
created_by = models.ForeignKey(
User,
on_delete=models.SET_NULL,