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

@@ -0,0 +1,18 @@
# Generated by Django 5.2.8 on 2026-01-15 12:14
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('shipment', '0006_add_merchant_to_shipment_and_salesitem'),
]
operations = [
migrations.AddField(
model_name='externalfinishedproduct',
name='remark',
field=models.CharField(blank=True, max_length=200, null=True, verbose_name='备注'),
),
]