From a0d38325a97957b37dd755bf732b63f6f7e2a5ff Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期二, 24 十二月 2024 08:40:48 +0800
Subject: [PATCH] 修改外协付款
---
CY_ECommercePlatform/CY.WebForm/Pages/business/InvoicingConfirm.aspx | 77 ++++++++++++++++++++++++++++++++++----
1 files changed, 69 insertions(+), 8 deletions(-)
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/InvoicingConfirm.aspx b/CY_ECommercePlatform/CY.WebForm/Pages/business/InvoicingConfirm.aspx
index 0d285cb..b983c1f 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/InvoicingConfirm.aspx
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/InvoicingConfirm.aspx
@@ -116,7 +116,8 @@
//鏌ョ湅瀹㈡埛璧勬枡
function Viewkaipiao(Keyid, SellerOrderId) {
- window.open("/Pages/business/InvoicingOrderPrint.aspx?Keyid=" + Keyid + "&SellerOrderId=" + SellerOrderId, '', '');
+ // window.open("/Pages/business/InvoicingOrderPrint.aspx?Keyid=" + Keyid + "&SellerOrderId=" + SellerOrderId, '', '');
+ top.Dialog.open({ URL: "/Pages/business/InvoicingOrderPrint.aspx?Keyid=" + Keyid + "&SellerOrderId=" + SellerOrderId, Title: "鏌ョ湅璁㈠崟", Width: 1080, Height: 650 });
}
//鏌ョ湅瀹㈡埛璧勬枡
function View(personId) {
@@ -157,7 +158,29 @@
});
}
-
+
+
+ $(function () {
+ var value_NowPageAllMoney = 0;
+ $(".OrderAllMoney").each(function (ii, vv) {
+ value_NowPageAllMoney += parseFloat($(vv).text());
+ });
+ $("#NowPageAllMoney").html(value_NowPageAllMoney.toFixed(2));
+
+
+ var value_NowPageZengMoney = 0;
+ $(".OrderZengMoney").each(function (ii, vv) {
+ value_NowPageZengMoney += parseFloat($(vv).text());
+ });
+ $("#NowPageZengMoney").html(value_NowPageZengMoney.toFixed(2));
+
+
+ var value_NowPageHuiMoney = 0;
+ $(".OrderHuiMoney").each(function (ii, vv) {
+ value_NowPageHuiMoney += parseFloat($(vv).text());
+ });
+ $("#NowPageHuiMoney").html(value_NowPageHuiMoney.toFixed(2));
+ });
</script>
<style type="text/css">
.tableStyleXS th { padding: 1px 0 1px 3px; background-image:none; border-bottom:1px solid #CCC; }
@@ -184,6 +207,8 @@
cursor: pointer;
width: 26px;
}
+ .StatisticsMoney td { color: #FF5500; }
+ .StatisticsMoney span { color: #FF5500; font-weight: bold; }
</style>
</head>
<body>
@@ -311,16 +336,16 @@
<th width="36">
璁㈠崟鏁伴噺
</th>
- <th width="60">
+ <th width="60" >
閲戦
</th>
- <th width="60">
+ <th width="60" >
澧炲噺閲戦
</th>
<th width="60">
绛惧崟鍥炴墽
</th>
- <th width="60">
+ <th width="60" >
鍥炴閲戦
</th>
<th width="60">
@@ -380,10 +405,10 @@
</td>
- <td>
+ <td class="OrderAllMoney">
<%#Eval("kpmoney", "{0:F}")%>
</td>
- <td>
+ <td class="OrderZengMoney">
<%#Eval("Zengjianmoney", "{0:F}")%>
</td>
<td>
@@ -393,7 +418,7 @@
</td>
- <td>
+ <td class="OrderHuiMoney">
<%#Eval("Huikuanmoney", "{0:F}")%>
</td>
<td>
@@ -422,6 +447,42 @@
</tr>
</itemtemplate>
</asp:repeater>
+ <tr class="StatisticsMoney">
+ <td colspan="7" class="ali03">
+ 褰撳墠椤电粺璁★細
+ </td>
+ <td class="ali01">
+ <span id="NowPageAllMoney" runat="server"></span>
+ </td>
+ <td class="ali01">
+ <span id="NowPageZengMoney" runat="server"></span>
+ </td>
+ <td class="ali01">
+ </td>
+ <td class="ali01">
+ <span id="NowPageHuiMoney" runat="server"></span>
+ </td>
+ <td class="ali01" colspan="3">
+ </td>
+ </tr>
+ <tr class="StatisticsMoney">
+ <td colspan="7" class="ali03">
+ 鏌ヨ椤圭粺璁★細
+ </td>
+ <td class="ali01">
+ <span id="AllMoney" runat="server"></span>
+ </td>
+ <td class="ali01">
+ <span id="ZengMoney" runat="server"></span>
+ </td>
+ <td class="ali01">
+ </td>
+ <td class="ali01">
+ <span id="HuiMoney" runat="server"></span>
+ </td>
+ <td class="ali01" colspan="3">
+ </td>
+ </tr>
</tbody>
</table>
<uc:ucpager id="UCPager1" runat="server" />
--
Gitblit v1.9.1