| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- # Generated by Django 4.2.24 on 2025-09-21 09:39
- from django.conf import settings
- from django.db import migrations, models
- import django.db.models.deletion
- import django.utils.timezone
- class Migration(migrations.Migration):
- initial = True
- dependencies = [
- ('contenttypes', '0002_remove_content_type_name'),
- migrations.swappable_dependency(settings.AUTH_USER_MODEL),
- ('orgs', '__first__'),
- ]
- operations = [
- migrations.CreateModel(
- name='Customer',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('name', models.CharField(max_length=255)),
- ('email', models.EmailField(blank=True, max_length=254)),
- ('phone', models.CharField(blank=True, max_length=64)),
- ('billing_address', models.TextField(blank=True)),
- ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='customers', to='orgs.organization')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='CustomerSite',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('name', models.CharField(blank=True, max_length=255)),
- ('address', models.TextField()),
- ('contact_name', models.CharField(blank=True, max_length=255)),
- ('contact_phone', models.CharField(blank=True, max_length=64)),
- ('contact_email', models.EmailField(blank=True, max_length=254)),
- ('customer', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='sites', to='recycle_core.customer')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='Invoice',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('currency_code', models.CharField(default='USD', max_length=8)),
- ('total_amount', models.DecimalField(decimal_places=2, default=0, max_digits=14)),
- ('status', models.CharField(choices=[('draft', 'Draft'), ('issued', 'Issued'), ('paid', 'Paid'), ('void', 'Void')], db_index=True, default='draft', max_length=8)),
- ('issued_at', models.DateTimeField(blank=True, null=True)),
- ('due_at', models.DateTimeField(blank=True, null=True)),
- ('customer', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='invoices', to='recycle_core.customer')),
- ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='invoices', to='orgs.organization')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='Material',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('name', models.CharField(max_length=255)),
- ('code', models.CharField(blank=True, max_length=64)),
- ('default_unit', models.CharField(choices=[('kg', 'Kilogram'), ('lb', 'Pound'), ('pcs', 'Pieces')], default='kg', max_length=8)),
- ],
- ),
- migrations.CreateModel(
- name='PickupOrder',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('status', models.CharField(choices=[('requested', 'Requested'), ('scheduled', 'Scheduled'), ('en_route', 'En Route'), ('collecting', 'Collecting'), ('at_facility', 'At Facility'), ('weighed', 'Weighed'), ('invoiced', 'Invoiced'), ('completed', 'Completed'), ('canceled', 'Canceled')], db_index=True, default='requested', max_length=16)),
- ('scheduled_at', models.DateTimeField(blank=True, null=True)),
- ('completed_at', models.DateTimeField(blank=True, null=True)),
- ('notes', models.TextField(blank=True)),
- ('assigned_driver', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='assigned_pickups', to=settings.AUTH_USER_MODEL)),
- ('created_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='created_pickups', to=settings.AUTH_USER_MODEL)),
- ('customer', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='pickup_orders', to='recycle_core.customer')),
- ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='pickup_orders', to='orgs.organization')),
- ('site', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='pickup_orders', to='recycle_core.customersite')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='PriceList',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('name', models.CharField(max_length=255)),
- ('currency_code', models.CharField(default='USD', max_length=8)),
- ('effective_from', models.DateField(blank=True, null=True)),
- ('effective_to', models.DateField(blank=True, null=True)),
- ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='price_lists', to='orgs.organization')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='ScrapListing',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('title', models.CharField(max_length=255)),
- ('description', models.TextField(blank=True)),
- ('auction_type', models.CharField(choices=[('open', 'Open'), ('sealed', 'Sealed')], default='open', max_length=16)),
- ('currency_code', models.CharField(default='USD', max_length=8)),
- ('reserve_price', models.DecimalField(blank=True, decimal_places=2, max_digits=14, null=True)),
- ('min_increment', models.DecimalField(blank=True, decimal_places=2, max_digits=12, null=True)),
- ('starts_at', models.DateTimeField(blank=True, null=True)),
- ('ends_at', models.DateTimeField(blank=True, null=True)),
- ('status', models.CharField(choices=[('draft', 'Draft'), ('open', 'Open'), ('closed', 'Closed'), ('awarded', 'Awarded'), ('canceled', 'Canceled')], db_index=True, default='draft', max_length=16)),
- ('is_public', models.BooleanField(default=True)),
- ('created_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='created_listings', to=settings.AUTH_USER_MODEL)),
- ('customer', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='scrap_listings', to='recycle_core.customer')),
- ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='scrap_listings', to='orgs.organization')),
- ('site', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='scrap_listings', to='recycle_core.customersite')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='WeighTicket',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('ticket_number', models.CharField(blank=True, max_length=64)),
- ('gross_weight', models.DecimalField(decimal_places=3, max_digits=12)),
- ('tare_weight', models.DecimalField(decimal_places=3, max_digits=12)),
- ('net_weight', models.DecimalField(decimal_places=3, max_digits=12)),
- ('unit', models.CharField(choices=[('kg', 'Kilogram'), ('lb', 'Pound'), ('pcs', 'Pieces')], default='kg', max_length=8)),
- ('recorded_at', models.DateTimeField(default=django.utils.timezone.now)),
- ('pickup', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='weigh_ticket', to='recycle_core.pickuporder')),
- ('recorded_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='weigh_tickets', to=settings.AUTH_USER_MODEL)),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='WeighLine',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('quantity', models.DecimalField(decimal_places=3, max_digits=12)),
- ('unit', models.CharField(choices=[('kg', 'Kilogram'), ('lb', 'Pound'), ('pcs', 'Pieces')], default='kg', max_length=8)),
- ('material', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='recycle_core.material')),
- ('ticket', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='lines', to='recycle_core.weighticket')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='ServiceAgreement',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('valid_from', models.DateField(blank=True, null=True)),
- ('valid_to', models.DateField(blank=True, null=True)),
- ('customer', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='agreements', to='recycle_core.customer')),
- ('price_list', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='agreements', to='recycle_core.pricelist')),
- ('site', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='agreements', to='recycle_core.customersite')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='ScrapListingItem',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('quantity_estimate', models.DecimalField(decimal_places=3, max_digits=12)),
- ('unit', models.CharField(choices=[('kg', 'Kilogram'), ('lb', 'Pound'), ('pcs', 'Pieces')], default='kg', max_length=8)),
- ('listing', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='items', to='recycle_core.scraplisting')),
- ('material', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='recycle_core.material')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='ScrapBid',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('price_total', models.DecimalField(decimal_places=2, max_digits=14)),
- ('message', models.TextField(blank=True)),
- ('status', models.CharField(choices=[('active', 'Active'), ('retracted', 'Retracted'), ('accepted', 'Accepted'), ('rejected', 'Rejected')], default='active', max_length=16)),
- ('bidder_org', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='bids', to='orgs.organization')),
- ('bidder_user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='bids', to=settings.AUTH_USER_MODEL)),
- ('listing', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='bids', to='recycle_core.scraplisting')),
- ],
- ),
- migrations.CreateModel(
- name='ScrapAward',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('notes', models.TextField(blank=True)),
- ('listing', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='award', to='recycle_core.scraplisting')),
- ('pickup', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='awards', to='recycle_core.pickuporder')),
- ('winning_bid', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='awards', to='recycle_core.scrapbid')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='PriceListItem',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('unit', models.CharField(choices=[('kg', 'Kilogram'), ('lb', 'Pound'), ('pcs', 'Pieces')], default='kg', max_length=8)),
- ('unit_price', models.DecimalField(decimal_places=2, max_digits=12)),
- ('direction', models.CharField(choices=[('buy', 'Buy from customer'), ('sell', 'Sell to customer')], default='sell', max_length=8)),
- ('material', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='price_items', to='recycle_core.material')),
- ('price_list', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='items', to='recycle_core.pricelist')),
- ],
- ),
- migrations.CreateModel(
- name='PickupItem',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('estimated_qty', models.DecimalField(blank=True, decimal_places=3, max_digits=12, null=True)),
- ('unit', models.CharField(choices=[('kg', 'Kilogram'), ('lb', 'Pound'), ('pcs', 'Pieces')], default='kg', max_length=8)),
- ('material', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='recycle_core.material')),
- ('pickup', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='items', to='recycle_core.pickuporder')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='Payout',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('amount', models.DecimalField(decimal_places=2, max_digits=14)),
- ('currency_code', models.CharField(default='USD', max_length=8)),
- ('paid_at', models.DateTimeField(default=django.utils.timezone.now)),
- ('reference', models.CharField(blank=True, max_length=128)),
- ('customer', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='payouts', to='recycle_core.customer')),
- ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='payouts', to='orgs.organization')),
- ('pickup', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='payouts', to='recycle_core.pickuporder')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='Payment',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('amount', models.DecimalField(decimal_places=2, max_digits=14)),
- ('currency_code', models.CharField(default='USD', max_length=8)),
- ('received_at', models.DateTimeField(default=django.utils.timezone.now)),
- ('reference', models.CharField(blank=True, max_length=128)),
- ('invoice', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='payments', to='recycle_core.invoice')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.CreateModel(
- name='MaterialCategory',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('name', models.CharField(max_length=255)),
- ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='material_categories', to='orgs.organization')),
- ],
- ),
- migrations.AddField(
- model_name='material',
- name='category',
- field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='materials', to='recycle_core.materialcategory'),
- ),
- migrations.AddField(
- model_name='material',
- name='organization',
- field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='materials', to='orgs.organization'),
- ),
- migrations.CreateModel(
- name='InvoiceLine',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('description', models.CharField(max_length=255)),
- ('quantity', models.DecimalField(decimal_places=3, max_digits=12)),
- ('unit', models.CharField(choices=[('kg', 'Kilogram'), ('lb', 'Pound'), ('pcs', 'Pieces')], default='kg', max_length=8)),
- ('unit_price', models.DecimalField(decimal_places=2, max_digits=12)),
- ('line_total', models.DecimalField(decimal_places=2, max_digits=14)),
- ('invoice', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='lines', to='recycle_core.invoice')),
- ('material', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='recycle_core.material')),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.AddField(
- model_name='invoice',
- name='pickup',
- field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='invoices', to='recycle_core.pickuporder'),
- ),
- migrations.CreateModel(
- name='Document',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('file', models.FileField(upload_to='documents/%Y/%m/%d/')),
- ('kind', models.CharField(blank=True, max_length=64)),
- ('object_id', models.PositiveIntegerField()),
- ('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.contenttype')),
- ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='documents', to='orgs.organization')),
- ('uploaded_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL)),
- ],
- options={
- 'abstract': False,
- },
- ),
- migrations.AddField(
- model_name='customer',
- name='price_list',
- field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='customers', to='recycle_core.pricelist'),
- ),
- migrations.CreateModel(
- name='AuditLog',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('action', models.CharField(max_length=64)),
- ('object_id', models.PositiveIntegerField()),
- ('metadata', models.JSONField(blank=True, default=dict)),
- ('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.contenttype')),
- ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='audit_logs', to='orgs.organization')),
- ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL)),
- ],
- ),
- migrations.CreateModel(
- name='ScrapListingInvite',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('updated_at', models.DateTimeField(auto_now=True)),
- ('invited_org', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='listing_invites', to='orgs.organization')),
- ('invited_user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='listing_invites', to=settings.AUTH_USER_MODEL)),
- ('listing', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='invites', to='recycle_core.scraplisting')),
- ],
- options={
- 'unique_together': {('listing', 'invited_org')},
- },
- ),
- migrations.AddIndex(
- model_name='scrapbid',
- index=models.Index(fields=['listing', 'price_total'], name='recycle_cor_listing_030b96_idx'),
- ),
- migrations.AlterUniqueTogether(
- name='pricelistitem',
- unique_together={('price_list', 'material', 'unit', 'direction')},
- ),
- migrations.AlterUniqueTogether(
- name='materialcategory',
- unique_together={('organization', 'name')},
- ),
- migrations.AlterUniqueTogether(
- name='material',
- unique_together={('organization', 'name')},
- ),
- migrations.AddIndex(
- model_name='auditlog',
- index=models.Index(fields=['organization', 'created_at'], name='recycle_cor_organiz_192314_idx'),
- ),
- migrations.AddIndex(
- model_name='auditlog',
- index=models.Index(fields=['action', 'created_at'], name='recycle_cor_action_aad429_idx'),
- ),
- ]
|