1
0
forked from erp-dev/erp

fix: query param of api_man

This commit is contained in:
2025-12-09 16:34:46 +08:00
parent d61a644d92
commit 4188bae0fc
12 changed files with 181 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.8 on 2025-12-09 07:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('basic_info', '0020_product_mdy_image_url'),
]
operations = [
migrations.AlterField(
model_name='product',
name='unit',
field=models.IntegerField(choices=[(1, ''), (2, ''), (3, '公斤'), (4, '')], default=1, verbose_name='单位'),
),
]