diff --git a/public/components/property/simplifyFeeReceipt/simplifyFeeReceipt.js b/public/components/property/simplifyFeeReceipt/simplifyFeeReceipt.js
index 5206dc788..513d462a9 100644
--- a/public/components/property/simplifyFeeReceipt/simplifyFeeReceipt.js
+++ b/public/components/property/simplifyFeeReceipt/simplifyFeeReceipt.js
@@ -114,7 +114,7 @@
_queryFeeReceiptMethod: function () {
vc.component._listSimplifyFeeReceipt(DEFAULT_PAGE, DEFAULT_ROWS);
},
- _printFeeReceipt: function (_receipt) {
+ _printFeeReceipt: function (_merge) {
if ($that.simplifyFeeReceiptInfo.selectReceipts.length < 1) {
vc.toast('请选择打印收据');
return;
@@ -126,7 +126,7 @@
if (receiptids.endsWith(',')) {
receiptids = receiptids.substring(0, receiptids.length - 1);
}
- window.open($that.simplifyFeeReceiptInfo.printUrl + "?receiptIds=" + receiptids + "&apply=N");
+ window.open($that.simplifyFeeReceiptInfo.printUrl + "?receiptIds=" + receiptids + "&apply=N&merge="+_merge);
},
_printApplyFeeReceipt: function (_receipt) {
if ($that.simplifyFeeReceiptInfo.selectReceipts.length < 1) {
diff --git a/public/pages/property/owePayFeeOrder/owePayFeeOrder.html b/public/pages/property/owePayFeeOrder/owePayFeeOrder.html
index 8ab071be7..911fd0bde 100644
--- a/public/pages/property/owePayFeeOrder/owePayFeeOrder.html
+++ b/public/pages/property/owePayFeeOrder/owePayFeeOrder.html
@@ -192,7 +192,11 @@
-
diff --git a/public/pages/property/owePayFeeOrder/owePayFeeOrder.js b/public/pages/property/owePayFeeOrder/owePayFeeOrder.js
index b7050d155..0be586b90 100644
--- a/public/pages/property/owePayFeeOrder/owePayFeeOrder.js
+++ b/public/pages/property/owePayFeeOrder/owePayFeeOrder.js
@@ -301,10 +301,10 @@
$('#payFeeResult').modal("hide");
vc.getBack();
},
- _printAndBack: function () {
+ _printAndBack: function (_merge) {
$('#payFeeResult').modal("hide");
// window.open("/print.html#/pages/property/printPayFee?receiptIds=" + $that.owePayFeeOrderInfo.receiptIds);
- window.open($that.owePayFeeOrderInfo.printUrl + "?detailIds=" + $that.owePayFeeOrderInfo.detailIds)
+ window.open($that.owePayFeeOrderInfo.printUrl + "?detailIds=" + $that.owePayFeeOrderInfo.detailIds+"&merge="+_merge)
},
_dealSelectFee: function () {
let totalFee = 0.00;
diff --git a/public/pages/property/printPayFee/printPayFee.js b/public/pages/property/printPayFee/printPayFee.js
index d35095e3f..f188e7c46 100644
--- a/public/pages/property/printPayFee/printPayFee.js
+++ b/public/pages/property/printPayFee/printPayFee.js
@@ -28,6 +28,7 @@
$that.printPayFeeInfo.receiptIds = vc.getParam('receiptIds');
$that.printPayFeeInfo.detailIds = vc.getParam('detailIds');
$that.printPayFeeInfo.apply = vc.getParam('apply');
+ $that.printPayFeeInfo.merge = vc.getParam('merge');
//$that.printPayFeeInfo.feeTime = vc.dateTimeFormat(new Date());
@@ -93,7 +94,8 @@
receiptId: $that.printPayFeeInfo.receiptId,
receiptIds: $that.printPayFeeInfo.receiptIds,
detailIds: $that.printPayFeeInfo.detailIds,
- communityId: vc.getCurrentCommunity().communityId
+ communityId: vc.getCurrentCommunity().communityId,
+ mergeFee:$that.printPayFeeInfo.merge
}
};
diff --git a/public/pages/property/printPayFeeBangTai/printPayFeeBangTai.js b/public/pages/property/printPayFeeBangTai/printPayFeeBangTai.js
index e4b11468d..7051d01b1 100644
--- a/public/pages/property/printPayFeeBangTai/printPayFeeBangTai.js
+++ b/public/pages/property/printPayFeeBangTai/printPayFeeBangTai.js
@@ -26,7 +26,7 @@
$that.printPayFeeInfo.receiptId = vc.getParam('receiptId');
$that.printPayFeeInfo.receiptIds = vc.getParam('receiptIds');
$that.printPayFeeInfo.apply = vc.getParam('apply');
-
+ $that.printPayFeeInfo.merge = vc.getParam('merge');
//$that.printPayFeeInfo.feeTime = vc.dateTimeFormat(new Date());
$that.printPayFeeInfo.communityName = vc.getCurrentCommunity().name;
@@ -89,7 +89,9 @@
row: 100,
receiptId: $that.printPayFeeInfo.receiptId,
receiptIds: $that.printPayFeeInfo.receiptIds,
- communityId: vc.getCurrentCommunity().communityId
+ communityId: vc.getCurrentCommunity().communityId,
+ mergeFee:$that.printPayFeeInfo.merge
+
}
};
diff --git a/public/pages/property/printPayFeeTianlin/printPayFeeTianlin.js b/public/pages/property/printPayFeeTianlin/printPayFeeTianlin.js
index 3fa9239c1..6cba1a08a 100644
--- a/public/pages/property/printPayFeeTianlin/printPayFeeTianlin.js
+++ b/public/pages/property/printPayFeeTianlin/printPayFeeTianlin.js
@@ -32,6 +32,8 @@
$that.printPayFeeInfo.receiptIds = vc.getParam('receiptIds');
$that.printPayFeeInfo.detailIds = vc.getParam('detailIds');
$that.printPayFeeInfo.apply = vc.getParam('apply');
+ $that.printPayFeeInfo.merge = vc.getParam('merge');
+
//$that.printPayFeeInfo.feeTime = vc.dateTimeFormat(new Date());
@@ -100,7 +102,8 @@
receiptId: $that.printPayFeeInfo.receiptId,
receiptIds: $that.printPayFeeInfo.receiptIds,
detailIds: $that.printPayFeeInfo.detailIds,
- communityId: vc.getCurrentCommunity().communityId
+ communityId: vc.getCurrentCommunity().communityId,
+ mergeFee:$that.printPayFeeInfo.merge
}
};
diff --git a/public/pages/property/printPayFeeXiangyun/printPayFeeXiangyun.js b/public/pages/property/printPayFeeXiangyun/printPayFeeXiangyun.js
index 6cc3b7bc9..f6291ed3d 100644
--- a/public/pages/property/printPayFeeXiangyun/printPayFeeXiangyun.js
+++ b/public/pages/property/printPayFeeXiangyun/printPayFeeXiangyun.js
@@ -28,7 +28,7 @@
$that.printPayFeeInfo.receiptIds = vc.getParam('receiptIds');
$that.printPayFeeInfo.detailIds = vc.getParam('detailIds');
$that.printPayFeeInfo.apply = vc.getParam('apply');
-
+ $that.printPayFeeInfo.merge = vc.getParam('merge');
//$that.printPayFeeInfo.feeTime = vc.dateTimeFormat(new Date());
$that.printPayFeeInfo.communityName = vc.getCurrentCommunity().name;
@@ -93,7 +93,8 @@
receiptId: $that.printPayFeeInfo.receiptId,
receiptIds: $that.printPayFeeInfo.receiptIds,
detailIds: $that.printPayFeeInfo.detailIds,
- communityId: vc.getCurrentCommunity().communityId
+ communityId: vc.getCurrentCommunity().communityId,
+ mergeFee:$that.printPayFeeInfo.merge
}
};