accounting/wwwroot/accdetail.ui
2025-12-25 15:17:48 +08:00

54 lines
904 B
XML

{
"widgettype":"Cols",
"options":{
"data_url": "{{entire_url('accdetail.dspy')}}",
"data_params":{
"accountid":"{{params_kw.accountid}}"
},
"data_method": "GET"
{% if params_kw._is_mobile %}
"col_width": "{{params_kw.width / 2 - 5}}px",
{% else %}
"col_cwidth": 22,
{% endif %}
"record_view":{
"widgettype":"VBox",
"options":{
"width":"100%"
},
"subwidgets":[
{
"widgettype":"Text",
"options":{
"text":"${acc_date}"
}
},
{
"widgettype":"Text",
"options":{
"text":"${acc_dir}"
}
},
{
"widgettype":"Text",
"options":{
"text":"${summary}"
}
},
{
"widgettype":"Text",
"options":{
"text":"${amount}"
}
},
{
"widgettype":"Text",
"options":{
"text":"${balance}"
}
}
]
}
}
}