Compare commits

..

No commits in common. "0ea31bd7fe6817baf059f8a97db4a4852075815c" and "e6b7aa0c940e2c65b70f5beb66c840e260a0d0d8" have entirely different histories.

2 changed files with 0 additions and 5 deletions

View File

@ -79,9 +79,6 @@ async def getbz_order(ns={}):
# ns['total_discount_amount'] = total_discount_amount
# ns['total_count'] = total_count[0]['total_count'] if total_count else 0
# 排除大模型订单
sql += " AND og.is_big_model = 0"
count_sql += " AND og.is_big_model = 0"
# 根据订单号搜索
if ns.get('id'):

View File

@ -362,7 +362,6 @@ async def process_user_billing(ns={}):
'originalprice': round(originalprice, 12),
'ordertype': 'prepay',
'servicename': productname,
'is_big_model': 1
}
await sor.C('bz_order', bz_ns)
@ -381,7 +380,6 @@ async def process_user_billing(ns={}):
'resourceids': '',
'resourcestarttime': now_str,
'resourceendtime': None,
'is_big_model': 1
}
await sor.C('order_goods', goods_ns)