|
@@ -42,6 +42,11 @@
|
|
|
<input type="text" class="layui-input" id="termsPayment" placeholder="-" autocomplete="off">
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
+ <div class="layui-inline">
|
|
|
+ <label class="f12-gray4">备注:</label>
|
|
|
+ <input type="tel" name="remarks" id ="remarks" autocomplete="off" placeholder="请输入备注" class="search-select">
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</form>
|
|
|
|
|
@@ -137,6 +142,8 @@
|
|
|
,{field: 'typeDesc', title: '收付类型', width:"10%", }
|
|
|
,{field: 'priceTypeDesc', title: '费用类型', width:"10%", }
|
|
|
,{field: 'totalMoneys', title: '实际收付款金额', width:"15%",edit: 'text',style:'background-color: #C1FFC1; color: #333;'}
|
|
|
+ ,{field: 'aopAllWeight', title: '重量', width:"13%", }
|
|
|
+ ,{field: 'aopRemarks', title: '备注', width:"13%",edit: 'text',style:'background-color: #C1FFC1; color: #333;'}
|
|
|
,{field: 'buyer', title: '付款单位', width:"13%", }
|
|
|
,{field: 'seller', title: '收款单位', width:"13%"}
|
|
|
,{field: 'totalMoney', title: '预估收付款金额', width:"15%",edit: 'text',style:'background-color: #C1FFC1; color: #333;'}
|
|
@@ -234,13 +241,14 @@
|
|
|
id : data.id,
|
|
|
totalMoney : data.totalMoney,
|
|
|
totalMoneys : data.totalMoneys,
|
|
|
- termsPayment : data.termsPayment
|
|
|
+ termsPayment : data.termsPayment,
|
|
|
+ aopRemarks:data.aopRemarks
|
|
|
},
|
|
|
|
|
|
success : function(resData) {
|
|
|
if (resData.MINStatus == 0) {
|
|
|
layer.alert('操作成功!', {icon: 1});
|
|
|
- reloadPage();
|
|
|
+ reload();
|
|
|
} else {
|
|
|
layer.alert(resData.MINErrorMessage, {
|
|
|
icon: 5,
|
|
@@ -311,11 +319,13 @@
|
|
|
var fukuan = $("#fukuan").val();
|
|
|
var dates = $("#dates").val();
|
|
|
var termsPayment = $("#termsPayment").val();
|
|
|
+ var remarks = $("#remarks").val();
|
|
|
var param = {};
|
|
|
param.shoukuan = shoukuan;
|
|
|
param.fukuan = fukuan;
|
|
|
param.dates = dates;
|
|
|
param.termsPayment = termsPayment;
|
|
|
+ param.remarks = remarks;
|
|
|
exportExcel("../../FinanceToExecl/exportExcelShouFu?",param);
|
|
|
});
|
|
|
|
|
@@ -324,6 +334,7 @@ function reload(){
|
|
|
var fukuan = $("#fukuan").val();
|
|
|
var dates = $("#dates").val();
|
|
|
var termsPayment = $("#termsPayment").val();
|
|
|
+ var remarks = $("#remarks").val();
|
|
|
|
|
|
//执行重载
|
|
|
table.reload('tableTest', {
|
|
@@ -334,7 +345,8 @@ function reload(){
|
|
|
shoukuan:shoukuan,
|
|
|
fukuan:fukuan,
|
|
|
dates :dates,
|
|
|
- termsPayment:termsPayment
|
|
|
+ termsPayment:termsPayment,
|
|
|
+ remarks:remarks
|
|
|
}
|
|
|
});
|
|
|
}
|