1
0
forked from erp-dev/erp

feat: added mdy stagging upload to tiia, and change outgoing_date to datetime type

This commit is contained in:
2026-01-22 17:06:23 +08:00
parent 49ac17cf37
commit 7fd44c64aa
18 changed files with 661 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.8 on 2026-01-22 07:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api_v1', '0010_mdy_plate_order_staging_tiia_upload_failure'),
]
operations = [
migrations.AlterField(
model_name='datasync',
name='table_name',
field=models.CharField(choices=[('product', '产品'), ('customer', '客户'), ('plate_order', '开版(明道云)'), ('mdy_plate_order_staging_tiia_upload', '开版暂存-腾讯图库上传')], max_length=50, verbose_name='同步目标'),
),
]