fix: 修复产品类别创建时INSERT列数不匹配问题

This commit is contained in:
yumoqing 2026-06-25 15:33:21 +08:00
parent 47f7e8e5c1
commit 84f1453856

View File

@ -32,6 +32,17 @@ try:
data['product_type'] = ''
data['product_type_title'] = ''
# Ensure all table fields have values, filter out unknown fields
all_fields = ['id', 'parent_id', 'name', 'description', 'has_product',
'product_type', 'product_type_title', 'sort_order', 'icon',
'status', 'org_id', 'created_by', 'created_at', 'updated_at']
fields = {}
for k in all_fields:
if k in data:
fields[k] = data[k] if data[k] is not None else ''
else:
fields[k] = ''
async with DBPools().sqlorContext(dbname) as sor:
await sor.C('product_category', data)
_new_rows = await sor.sqlExe("SELECT * FROM product_category WHERE id = ${id}$", {'id': data['id']})