客户设置互换天数&利息计算重置频率

This commit is contained in:
吴方海
2025-04-14 16:31:35 +08:00
parent cbe8b2dc91
commit 5250a37d08
29 changed files with 637 additions and 389 deletions
@@ -70,7 +70,7 @@ function uploadMarginRate() {
SearchClick()
} else {
main.alert("导入失败:" + data.msg);
}
}
main.confirm("确定导入?", UploadFile.bind(null, { inputId: 'openFile', url: '/MarginRateSwap/ImportMagrinRate', success: success }));
@@ -150,10 +150,17 @@ const jqgrid1Mgr = (new function () {
name: 'ClientName', label: '客户名称', index: 'ClientId'
}, {
name: 'ValueDate', label: '生效日期', index: 'ValueDate', formatter: 'date'
}, {
name: 'SwapEndDays', label: '互换默认期限', index: 'SwapEndDays', formatter: function (cellValue, options, rowObject) {
if (cellValue == null) {
return "";
}
return cellValue + "天";
}
}, {
name: 'InitMarginRate', label: '期初预付金', index: 'InitMarginRate', formatter: percentFormat
}, {
name: 'InitMarginRebateRate', label: '期初预付金利率', index: 'InitMarginRebateRate', formatter: percentFormat,
name: 'InitMarginRebateRate', label: '期初预付金利率', index: 'InitMarginRebateRate', formatter: percentFormat,
}, {
name: 'AddToMarginRebateRate', label: '追加预付金利率', index: 'AddToMarginRebateRate', formatter: percentFormat,
}, {