1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="InventoryPrint.aspx.cs" Inherits="CY.WebForm.Pages.procurement.InventoryPrint" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>打印明细</title>
    <script type="text/javascript" src="../../libs/js/jquery.js"></script>
    <script src="../../js/common/util.js" type="text/javascript"></script>
    <link href="../../Styles/Print.css" rel="stylesheet" type="text/css" />
    <script src="../../js/common/Printter.js" type="text/javascript"></script>
    <script src="../../js/common/LodopFuncs.js" type="text/javascript"></script>
    <style type="text/css">
        .StatisticsMoney td { color: #FF5500; }
        .StatisticsMoney span { color: #FF5500; font-weight: bold; }
    </style>
    <style type="text/css">
        .tableStyle div { text-align: left; overflow: visible; line-height: 15px; }
        .tableStyle tr, td, th { padding: 0px; height: auto; }
        .tableStyle tr { height: 24px; }
        .StatisticsMoney span { color: #FF5500; font-weight: bold; }
    </style>
</head>
<body style="margin: 0;">
    <object id="LODOP_OB" classid="clsid:2105C259-1E0C-4534-8141-A753534CB4CA" width="0" height="0">
        <embed id="LODOP_EM" type="application/x-print-lodop" width="0" height="0" pluginspage="/Pages/common/install_lodop32.exe"></embed>
    </object>
    <div id='div_tool' issideways="true" printparams='2,2100,2970, "A4"'>
    </div>
    <form id="form1" runat="server">
    <table class="tableStyle" useclick="false" usecheckbox="true" sortmode="true">
        <thead>
            <tr>
                <th>
                    编号
                </th>
                <th>
                    仓库
                </th>
                <th>
                    货品名称
                </th>
                <th>
                    货品品牌
                </th>
                <th>
                    货品规格
                </th>
                <th>
                    剩余库存
                </th>
                <th>
                    单价
                </th>
                <th>
                    金额
                </th>
                <th>
                    纸张克重
                </th>
                <th>
                    纸张令数
                </th>
                <th>
                    纸张吨数
                </th>
            </tr>
        </thead>
        <asp:repeater id="RepFirmAccountIncomeList" runat="server">
            <itemtemplate>
                <tr class="OrderByNum">
                        <td>
                            <%#Container.ItemIndex + 1%>
                        </td>
                        <td>
                            <%#Eval("WarehouseName")%>
                        </td>
                        <td>
                            <%#  Eval("GoodsName")%>
                        </td>
                        <td>
                            <%#Eval("BrandName")%>
                        </td>
                        <td>
                            <%#Eval("SpeceicationName")%>
                        </td>
                        <td>
                            <%#Eval("InventoryCount")%>
                        </td>
                        <td>
                            <%#Eval("UnitPrice", "{0:F2}")%>
                        </td>
                        <td class="OrderAllMoney">
                            <%#Eval("TotalPrice", "{0:F2}")%>
                        </td>
                        <td>
                            <%#Eval("PaperWeightName")%>
                        </td>
                        <td>
                            <%#Eval("LingShu", "{0:F0}")%>
                        </td>
                        <td>
                            <%#Eval("DunShu", "{0:F4}")%>
                        </td>
                </tr>
            </itemtemplate>
        </asp:repeater>
        <tr class="StatisticsMoney">
            <td colspan="7" style=" text-align:right;">
                当前页统计:
            </td>
            <td>
                <span id="NowPageAllMoney" runat="server"></span>
            </td>
            <td colspan="3" class="ali01">
            </td>
        </tr>
    </table>
    </form>
</body>
</html>