This commit is contained in:
yumoqing 2025-01-15 11:24:03 +08:00
parent a56b15c92c
commit 3ea7a69658
15 changed files with 169 additions and 1 deletions

12
json/agreedetail.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"agreedetail",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/agreedetailstep.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"agreedetailstep",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/agreement.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"agreement",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/agreeproduct.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"agreeproduct",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/biz_order.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"biz_order",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/coupon.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"coupon",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/coupontype.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"coupontype",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/paychannel.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"paychannel",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/prodpricing.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"prodpricing",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/prodpricingtab.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"prodpricingtab",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/prodtype.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"prodtype",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/product.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"product",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/recgarge_log.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"recharge_log",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

12
json/resource.json Normal file
View File

@ -0,0 +1,12 @@
{
"tblname":"resource",
"params":{
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": [
"id"
]
}
}

View File

@ -32,7 +32,7 @@ class PlatformBizAccRecharge(PlatformBizAcc):
raise e raise e
self.recharge = recs[0] self.recharge = recs[0]
self.customerid = self.recharge.customerid self.customerid = self.recharge.customerid
self.orderid = self.recharge.orderid self.orderid = self.recharge.biz_orderid
self.userid = self.recharge.userid self.userid = self.recharge.userid
get_business_date = get_serverenv('get_business_date') get_business_date = get_serverenv('get_business_date')
self.curdate = await get_business_date(sor) self.curdate = await get_business_date(sor)