Template
## Summary - Closes #5 - Optional `shop`, `pos_sync`, `events`, and `shipping` apps gated by `FEATURE_*` flags - Deps match the catalog: shop/events need email + Stripe; POS/shipping need shop - Portal inventory, POS webhooks, capacity tickets, EasyPost/Pirate Ship shipping ## Test plan - [ ] `manage.py test` (152 passed locally) - [ ] Shop cart + paid order decrements stocked inventory - [ ] POS inbound webhook decrements SKU; paid order queues outbound reserve - [ ] Event capacity blocks overbook; paid order emails ticket codes - [ ] Shipping stub label + Pirate Ship CSV of unshipped paid orders - [ ] `validate-env.sh` rejects shop without email/payments, POS/shipping without shop Reviewed-on: #6
41 lines
1.8 KiB
Python
41 lines
1.8 KiB
Python
# Generated by Django 6.1 on 2026-09-06 11:17
|
|
|
|
import django.db.models.deletion
|
|
import uuid
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('shop', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Shipment',
|
|
fields=[
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
('status', models.CharField(choices=[('draft', 'Draft'), ('rated', 'Rated'), ('labeled', 'Labeled'), ('void', 'Void')], default='draft', max_length=16)),
|
|
('carrier', models.CharField(blank=True, max_length=32)),
|
|
('service', models.CharField(blank=True, max_length=64)),
|
|
('tracking_number', models.CharField(blank=True, max_length=64)),
|
|
('label_url', models.URLField(blank=True)),
|
|
('rate_amount', models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True)),
|
|
('currency', models.CharField(default='usd', max_length=8)),
|
|
('provider_shipment_id', models.CharField(blank=True, max_length=255)),
|
|
('rates', models.JSONField(blank=True, default=list)),
|
|
('weight_oz', models.PositiveIntegerField(default=16)),
|
|
('notes', models.TextField(blank=True)),
|
|
('order', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='shipments', to='shop.order')),
|
|
],
|
|
options={
|
|
'ordering': ['-created_at'],
|
|
},
|
|
),
|
|
]
|