pos device transaction list
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
# Generated by Django 5.0 on 2025-08-25 06:20
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('warehouse', '0013_inventoryquotasaletransaction_pos_device_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='inventoryquotasaletransaction',
|
||||
name='buyer_user',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='inventoryquotasaletransaction',
|
||||
name='is_active',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='inventoryquotasaletransaction',
|
||||
name='sale_status',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='inventoryquotasaletransaction',
|
||||
name='seller_user',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='inventoryquotasaletransaction',
|
||||
name='transaction_status',
|
||||
field=models.CharField(choices=[('success', 'SUCCESS'), ('waiting', 'WAITING'), ('failed', 'Failed')], max_length=25, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user