分销商结算: - reseller_reconcile.ui: 分销商对账汇总 - reseller_detail_reconcile.ui: 明细对账 - reseller_settlement.ui: 结算处理 供应商财务: - provider_recharge.ui: 供应商充值记录 - provider_reconcile.ui: 供应商对账 - provider_detail_reconcile.ui: 供应商明细对账 - provider_settlement.ui: 供应商结算 各页面含InlineForm筛选+Tabular数据展示+统计摘要栏 后端dspy待后续创建
235 lines
9.0 KiB
XML
235 lines
9.0 KiB
XML
{
|
|
"widgettype": "VBox",
|
|
"options": {
|
|
"cheight": 40,
|
|
"width": "100%",
|
|
"padding": "16px"
|
|
},
|
|
"subwidgets": [
|
|
{
|
|
"widgettype": "Text",
|
|
"options": {
|
|
"text": "分销商对账",
|
|
"fontSize": "20px",
|
|
"fontWeight": "bold",
|
|
"color": "#F1F5F9",
|
|
"marginBottom": "16px"
|
|
}
|
|
},
|
|
{
|
|
"widgettype": "HBox",
|
|
"options": {
|
|
"bgcolor": "#1E293B",
|
|
"padding": "12px",
|
|
"borderRadius": "8px",
|
|
"marginBottom": "12px",
|
|
"gap": "16px"
|
|
},
|
|
"subwidgets": [
|
|
{
|
|
"widgettype": "Text",
|
|
"options": {
|
|
"text": "总应付款: --",
|
|
"fontSize": "14px",
|
|
"color": "#F1F5F9"
|
|
}
|
|
},
|
|
{
|
|
"widgettype": "Text",
|
|
"options": {
|
|
"text": "已结算: --",
|
|
"fontSize": "14px",
|
|
"color": "#F1F5F9"
|
|
}
|
|
},
|
|
{
|
|
"widgettype": "Text",
|
|
"options": {
|
|
"text": "未结算: --",
|
|
"fontSize": "14px",
|
|
"color": "#F1F5F9"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id": "reseller_reconcile_form",
|
|
"widgettype": "InlineForm",
|
|
"options": {
|
|
"bgcolor": "#1E293B",
|
|
"padding": "12px",
|
|
"borderRadius": "8px",
|
|
"marginBottom": "12px",
|
|
"fields": [
|
|
{
|
|
"name": "date_start",
|
|
"uitype": "date",
|
|
"label": "开始日期",
|
|
"cwidth": 10,
|
|
"value": "{{strdate_add(monthfirstday(), months=-1)}}",
|
|
"required": true
|
|
},
|
|
{
|
|
"name": "date_end",
|
|
"uitype": "date",
|
|
"label": "结束日期",
|
|
"cwidth": 10,
|
|
"value": "{{monthfirstday()}}",
|
|
"required": true
|
|
},
|
|
{
|
|
"name": "sub_reseller_id",
|
|
"uitype": "code",
|
|
"label": "二级分销商",
|
|
"cwidth": 15,
|
|
"valueField": "sub_reseller_id",
|
|
"textField": "sub_reseller_id_text",
|
|
"params": {
|
|
"dbname": "{{get_module_dbname('supplychain')}}",
|
|
"table": "sub_resellers",
|
|
"tblvalue": "id",
|
|
"tbltext": "sub_reseller_name",
|
|
"valueField": "sub_reseller_id",
|
|
"textField": "sub_reseller_id_text"
|
|
},
|
|
"dataurl": "{{entire_url('/appbase/get_code.dspy')}}"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"id": "reseller_reconcile_tbl",
|
|
"widgettype": "Tabular",
|
|
"options": {
|
|
"width": "100%",
|
|
"height": "100%",
|
|
"title": "分销商对账汇总",
|
|
"css": "card",
|
|
"bgcolor": "#1E293B",
|
|
"data_url": "{{entire_url('./get_reseller_reconcile.dspy')}}",
|
|
"data_method": "GET",
|
|
"data_params": {{json.dumps(params_kw, indent=4, ensure_ascii=False)}},
|
|
"row_options": {
|
|
"browserfields": {
|
|
"exclouded": ["id"]
|
|
},
|
|
"fields": [
|
|
{
|
|
"name": "id",
|
|
"title": "ID",
|
|
"type": "str",
|
|
"length": 32,
|
|
"nullable": "no",
|
|
"cwidth": 18,
|
|
"uitype": "str",
|
|
"datatype": "str",
|
|
"label": "ID"
|
|
},
|
|
{
|
|
"name": "sub_reseller_id",
|
|
"title": "二级分销商",
|
|
"type": "str",
|
|
"length": 32,
|
|
"label": "二级分销商",
|
|
"uitype": "code",
|
|
"valueField": "sub_reseller_id",
|
|
"textField": "sub_reseller_id_text",
|
|
"params": {
|
|
"dbname": "{{get_module_dbname('supplychain')}}",
|
|
"table": "sub_resellers",
|
|
"tblvalue": "id",
|
|
"tbltext": "sub_reseller_name",
|
|
"valueField": "sub_reseller_id",
|
|
"textField": "sub_reseller_id_text"
|
|
},
|
|
"dataurl": "{{entire_url('/appbase/get_code.dspy')}}",
|
|
"cwidth": 20
|
|
},
|
|
{
|
|
"name": "reconcile_period",
|
|
"title": "对账周期",
|
|
"type": "str",
|
|
"length": 30,
|
|
"cwidth": 15,
|
|
"uitype": "str",
|
|
"datatype": "str",
|
|
"label": "对账周期"
|
|
},
|
|
{
|
|
"name": "total_amount",
|
|
"title": "总金额",
|
|
"type": "double",
|
|
"length": 15,
|
|
"dec": 2,
|
|
"cwidth": 15,
|
|
"uitype": "float",
|
|
"datatype": "double",
|
|
"label": "总金额"
|
|
},
|
|
{
|
|
"name": "settled_amount",
|
|
"title": "已结算金额",
|
|
"type": "double",
|
|
"length": 15,
|
|
"dec": 2,
|
|
"cwidth": 15,
|
|
"uitype": "float",
|
|
"datatype": "double",
|
|
"label": "已结算金额"
|
|
},
|
|
{
|
|
"name": "unsettled_amount",
|
|
"title": "未结算金额",
|
|
"type": "double",
|
|
"length": 15,
|
|
"dec": 2,
|
|
"cwidth": 15,
|
|
"uitype": "float",
|
|
"datatype": "double",
|
|
"label": "未结算金额"
|
|
},
|
|
{
|
|
"name": "reconcile_status",
|
|
"title": "对账状态",
|
|
"type": "char",
|
|
"length": 1,
|
|
"cwidth": 8,
|
|
"uitype": "code",
|
|
"datatype": "char",
|
|
"label": "对账状态",
|
|
"data": [
|
|
{"value": "0", "text": "待对账"},
|
|
{"value": "1", "text": "已确认"},
|
|
{"value": "2", "text": "有差异"}
|
|
]
|
|
},
|
|
{
|
|
"name": "created_at",
|
|
"title": "创建时间",
|
|
"type": "datetime",
|
|
"length": 0,
|
|
"uitype": "str",
|
|
"datatype": "datetime",
|
|
"label": "创建时间"
|
|
}
|
|
]
|
|
},
|
|
"data_filter": {
|
|
"AND": [
|
|
{"field": "date_start", "op": ">=", "var": "date_start"},
|
|
{"field": "date_end", "op": "<=", "var": "date_end"},
|
|
{"field": "sub_reseller_id", "op": "=", "var": "sub_reseller_id"}
|
|
]
|
|
},
|
|
"filter_labels": {
|
|
"date_start": "开始日期",
|
|
"date_end": "结束日期",
|
|
"sub_reseller_id": "二级分销商"
|
|
},
|
|
"page_rows": 160,
|
|
"cache_limit": 5
|
|
}
|
|
}
|
|
]
|
|
}
|