- 删除discount字段(折扣值在detail子表中) - customerid标题说明*表示全部客户 - init/data.json添加organization表的*记录(全部客户选项)
47 lines
1016 B
JSON
47 lines
1016 B
JSON
{
|
|
"organization": [
|
|
{
|
|
"id": "*",
|
|
"orgname": "全部客户"
|
|
}
|
|
],
|
|
"appcodes": [
|
|
{
|
|
"id": "promo_code_type",
|
|
"name": "促销码类型",
|
|
"hierarchy_flg": "0"
|
|
},
|
|
{
|
|
"id": "bind_type",
|
|
"name": "客户绑定方式",
|
|
"hierarchy_flg": "0"
|
|
}
|
|
],
|
|
"appcodes_kv": [
|
|
{
|
|
"id": "promo_code_type_1",
|
|
"parentid": "promo_code_type",
|
|
"k": "1",
|
|
"v": "促销码"
|
|
},
|
|
{
|
|
"id": "promo_code_type_2",
|
|
"parentid": "promo_code_type",
|
|
"k": "2",
|
|
"v": "邀请码"
|
|
},
|
|
{
|
|
"id": "bind_type_1",
|
|
"parentid": "bind_type",
|
|
"k": "1",
|
|
"v": "促销码"
|
|
},
|
|
{
|
|
"id": "bind_type_2",
|
|
"parentid": "bind_type",
|
|
"k": "2",
|
|
"v": "手动分配"
|
|
}
|
|
]
|
|
}
|