add new fields to sale item
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
# Generated by Django 5.0 on 2025-09-22 07:11
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('warehouse', '0032_rename_product_inventoryquotasaleitem_gov_product_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='inventoryquotasaleitem',
|
||||
name='additional',
|
||||
field=models.JSONField(default=dict),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='inventoryquotasaleitem',
|
||||
name='item_type',
|
||||
field=models.CharField(max_length=150, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='inventoryquotasaleitem',
|
||||
name='paid_price',
|
||||
field=models.PositiveBigIntegerField(default=0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='inventoryquotasaleitem',
|
||||
name='unit',
|
||||
field=models.CharField(max_length=50, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user