forked from erp-dev/erp
feat: purchase_order approve and calcel
This commit is contained in:
18
business/migrations/0008_alter_purchaseorderitem_quantity.py
Normal file
18
business/migrations/0008_alter_purchaseorderitem_quantity.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.2.7 on 2025-11-28 09:27
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('business', '0007_alter_purchaseorderitem_batch_number'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='purchaseorderitem',
|
||||
name='quantity',
|
||||
field=models.DecimalField(decimal_places=2, max_digits=10, verbose_name='数量'),
|
||||
),
|
||||
]
|
||||
18
business/migrations/0009_purchaseorderitem_spec.py
Normal file
18
business/migrations/0009_purchaseorderitem_spec.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.2.7 on 2025-11-28 09:32
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('business', '0008_alter_purchaseorderitem_quantity'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='purchaseorderitem',
|
||||
name='spec',
|
||||
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='规格'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user