tom
2024-08-16 2196260ce80dd17d96309a7cc8e5632f2e503067
module/fee/page/fee_payment.html
@@ -35,14 +35,14 @@
                        { field: "customer_code", name: "服务供应商编码", isshow: "T" ,width: "110"},
                        { field: "customer_name", name: "服务供应商", isshow: "T" ,width: "200",align:"left"},
                        { field: "amt", name: "应付金额", align:"right",isshow: "T" ,width: "100",formatter:'formatter_money'},
                        { field: "other_deduction", name: "其余扣款",align:"right", isshow: "T", align: "center", width: "100",formatter:'formatter_money' },
                        { field: "other_deduction", name: "其余扣款",align:"right", isshow: "T",  width: "100",formatter:'formatter_money' },
                        { field: "after_deduction_amt", name: "扣款后金额", isshow: "T", align: "right", width: "100",formatter:'formatter_money' },
                        { field: "applicant", name: "申请人", isshow: "T", align: "center", width: "100" },
                        { field: "apply_date", name: "申请时间", isshow: "T", align: "center", width: "100" ,formatter:'formatter_date'},
                        { field: "order_state", name: "尾款状态", isshow: "T", align: "center", width: "100" },
                        { field: "order_code", name: "关联首款单号", isshow: "T", align: "center", width: "100", isfilter: true },
                        { field: "province_order_code", name: "省级费用单号", isshow: "T", align: "center", width: "100", isfilter: true },
                        { field: "payment", name: "付款金额", isshow: "T",align:"right", align: "center", width: "100",formatter:'formatter_money' },
                        { field: "payment", name: "付款金额", isshow: "T",align:"right", width: "100",formatter:'formatter_money' },
                        { field: "payment_date", name: "付款时间", isshow: "T", align: "center", width: "100", isfilter: true ,formatter:'formatter_date'},
                        { field: "freeze", name: "冻结状态", isshow: "T", align: "center", width: "100" },
                  ],
@@ -487,9 +487,27 @@
                           val: {//有值时的点击事件
                              notclick_val: "",//不可点击的值,1、是数组["11","22"];2、以“;”分隔的字符串"111;222"
                              notclick_bindfield: [],//当该字段值等于指定字段值时不可点击["filterfield": "111"]
                              onclick: function(obj) {//数据值点击事件
                              onclick: function (obj) {//数据值点击事件
                                 //打开
                                 me.openPayment('browse');
                                 var config = {
                                    totab: true, //true: 以Tab导航的方式打开
                                    width: "1100px",
                                    height: "520px",
                                    icon: "icon-product",
                                    text: "单据信息" + (obj.row.id ? obj.row.id : ""),
                                    id: "fee_payment" + (obj.row.id ? obj.row.id : "add"),//totab: true时需设置,用于判断是否已打开此页面
                                    url: "module/fee/page/popup/popup_fee_payment.html",
                                    data: obj.row,
                                    delta: {},
                                    sceneCode: 'browse',//"refuseedit",//"approval", //"add"//"browse",
                                    callback: function (obj, callback) {
                                       me.onQuery();
                                       if (callback) {
                                          callback();
                                       }
                                    }
                                 };
                                 me.doPopupByPublic(config);
                              },
                           },
                           // defaultval: {
@@ -526,7 +544,7 @@
                  },
                  
               
                  openPayment(sceneCode){
                  openPayment(sceneCode,obj){
                     let me = this;
                     var row = {};
                     if (sceneCode == "edit" || sceneCode == "browse") {
@@ -544,7 +562,7 @@
                        width: "1100px",
                        height: "520px",
                        icon: "icon-product",
                        text: "单据信息" + (row.name ? row.name : ""),
                        text: "单据信息" + (row.id ? row.id : ""),
                        id: "fee_payment" + (row.id? row.id : "add"),//totab: true时需设置,用于判断是否已打开此页面
                        url: "module/fee/page/popup/popup_fee_payment.html",
                        data: row,