bugix
This commit is contained in:
parent
e2ee714871
commit
6ca4e5755d
@ -2,11 +2,11 @@
|
|||||||
"tblname":"agreedetail",
|
"tblname":"agreedetail",
|
||||||
"params":{
|
"params":{
|
||||||
"browserfields": {
|
"browserfields": {
|
||||||
"exclouded": ["id"],
|
"exclouded": ["id", "agreeid"],
|
||||||
"alters": {}
|
"alters": {}
|
||||||
},
|
},
|
||||||
"editexclouded": [
|
"editexclouded": [
|
||||||
"id"
|
"id", "agreeid"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
{
|
|
||||||
"tblname":"prodpricing",
|
|
||||||
"params":{
|
|
||||||
"browserfields": {
|
|
||||||
"exclouded": ["id"],
|
|
||||||
"alters": {}
|
|
||||||
},
|
|
||||||
"editexclouded": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
@ -2,11 +2,11 @@
|
|||||||
"tblname":"prodpricingtab",
|
"tblname":"prodpricingtab",
|
||||||
"params":{
|
"params":{
|
||||||
"browserfields": {
|
"browserfields": {
|
||||||
"exclouded": ["id"],
|
"exclouded": ["id", "prodid"],
|
||||||
"alters": {}
|
"alters": {}
|
||||||
},
|
},
|
||||||
"editexclouded": [
|
"editexclouded": [
|
||||||
"id"
|
"id", "prodid"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,9 +3,42 @@
|
|||||||
"uitype":"tree",
|
"uitype":"tree",
|
||||||
"params":{
|
"params":{
|
||||||
"idField":"id",
|
"idField":"id",
|
||||||
"textField":"path",
|
"textField":"name",
|
||||||
"parentField":"parentid",
|
"parentField":"parentid",
|
||||||
"editable":true,
|
"editable":true,
|
||||||
|
"toolbar":{
|
||||||
|
"tools":[
|
||||||
|
{
|
||||||
|
"target":"PopupWindow",
|
||||||
|
"name":"spec",
|
||||||
|
"selected_data":true,
|
||||||
|
"label":"规格"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"binds":[
|
||||||
|
{
|
||||||
|
"wid":"self",
|
||||||
|
"event":"spec",
|
||||||
|
"actiontype":"urlwidget",
|
||||||
|
"target":"PopupWindow",
|
||||||
|
"popup_options":{
|
||||||
|
"width":"80%",
|
||||||
|
"height":"80%"
|
||||||
|
},
|
||||||
|
"params_mapping":{
|
||||||
|
"mapping":{
|
||||||
|
"id":"prodtypeid"
|
||||||
|
},
|
||||||
|
"need_others":false
|
||||||
|
},
|
||||||
|
"options":{
|
||||||
|
"params":{
|
||||||
|
},
|
||||||
|
"url":"/platformbiz/prodtypespec"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
"browserfields": {
|
"browserfields": {
|
||||||
"exclouded": ["id", "parentid" ],
|
"exclouded": ["id", "parentid" ],
|
||||||
"alters": {}
|
"alters": {}
|
||||||
@ -15,9 +48,9 @@
|
|||||||
],
|
],
|
||||||
"subtables":[
|
"subtables":[
|
||||||
{
|
{
|
||||||
"field":"parentid",
|
"field":"prodtypeid",
|
||||||
"title":"产品类型",
|
"title":"产品类型",
|
||||||
"subtable":"prodtype"
|
"subtable":"prodtypespec"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,24 @@
|
|||||||
{
|
{
|
||||||
"tblname":"product",
|
"tblname":"product",
|
||||||
"params":{
|
"params":{
|
||||||
"logined_userorgid":"ownerid",
|
"logined_userorgid":"orgid",
|
||||||
"browserfields": {
|
"browserfields": {
|
||||||
"exclouded": ["id"],
|
"exclouded": ["id", "orgid", "providerid", "agreeid", "providerpid" ],
|
||||||
"alters": {}
|
"alters": {
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"editexclouded": [
|
"editexclouded": [
|
||||||
"id"
|
"id", "orgid", "providerid", "agreeid", "providerpid"
|
||||||
|
],
|
||||||
|
"subtables":[
|
||||||
|
{
|
||||||
|
"field":"prodid",
|
||||||
|
"params":{
|
||||||
|
"prodtypeid":"${prodtypeid}"
|
||||||
|
},
|
||||||
|
"subtable":"prodpricingtab",
|
||||||
|
"title":"产品定价"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/bash
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
python ~/py/rbac/script/roleperm.py sage platformbiz provider sale retail_agree agreedetail agreedetailstep agreeproduct organization
|
||||||
|
python ~/py/rbac/script/roleperm.py sage platformbiz provider sale product prodpricing prodpricingtab
|
||||||
python ~/py/rbac/script/roleperm.py sage platformbiz reseller sale reseller retail_agree agreedetail agreedetailstep agreeproduct organization
|
python ~/py/rbac/script/roleperm.py sage platformbiz reseller sale reseller retail_agree agreedetail agreedetailstep agreeproduct organization
|
||||||
python ~/py/rbac/script/roleperm.py sage platformbiz reseller operator provide_agree coupontype agreedetail agreedetailstep agreeproduct organization product prodpricing prodpricingtab coupontype coupon coupon_log recharge_log resource biz_order
|
python ~/py/rbac/script/roleperm.py sage platformbiz reseller operator provide_agree coupontype agreedetail agreedetailstep agreeproduct organization product prodpricing prodpricingtab coupontype coupon coupon_log recharge_log resource biz_order
|
||||||
python ~/py/rbac/script/roleperm.py sage platformbiz owner operator paychannel prodtype
|
python ~/py/rbac/script/roleperm.py sage platformbiz owner operator paychannel prodtype
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user