1
0
forked from erp-dev/erp

feat: added area field into shipments model

This commit is contained in:
2026-01-16 17:58:17 +08:00
parent 2e0b7dc335
commit c73014f69c
7 changed files with 123 additions and 1 deletions

View File

@@ -127,6 +127,14 @@ class Shipment(ModelBase):
verbose_name='出货日期',
help_text='实际出货日期'
)
area = models.CharField(
max_length=30,
blank=True,
default='',
verbose_name='地区',
help_text='出货地区(可空字符串)',
)
remark = models.TextField(
blank=True,