| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage/ErpView.master" AutoEventWireup="true" CodeFile="DeliveredImport.aspx.cs" Inherits="EDelivery_DeliveredImport" %>
- <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
- <script type="text/javascript" src="js/DeliveredImport.js"></script>
-
- <style type="text/css">
- .win_tb {
- width: 96%;
- margin-left: auto;
- margin-right: auto;
- margin-top: 10px;
- background-color: #dedede;
- }
- .win_tb td {
- height: 36px;
- background-color: #fff;
- font-size: 14px;
- padding: 5px;
- }
- .win_tb input[type=text] {
- width: 90%;
- height: 24px;
- font-size: 14px;
- }
- .win_tb input[type=checkbox] {
- width: 18px;
- height: 18px;
- }
- .win_tb select {
- font-size: 14px;
- height: 30px;
- padding: 0px 5px;
- }
- .win_tb .td1 {
- color: #666;
- background-color: #F8F8F8;
- text-align: center;
- }
- .win_tb .td2 {
- }
- .word_tui {
- border-radius: 50%;
- background-color: red;
- color: white;
- font-size: 14px;
- text-align: center;
- padding: 3px;
- margin-left: 5px;
- }
- .word_shou {
- background-color: saddlebrown;
- }
- .word_green {
- background-color: forestgreen;
- }
- .mini-grid-cell-nowrap {
- overflow: hidden;
- /* white-space: nowrap;
- text-overflow: ellipsis; */
- word-break: keep-all;
- word-wrap: break-word;
- white-space: normal;
- }
- </style>
- </asp:Content>
- <asp:Content ID="Content3" ContentPlaceHolderID="btn" runat="Server">
- <table style="width: 100%;">
- <tr>
- <td style="width: 80%;">
- <a class="mini-button mini-button-primary" style="padding: 2px 5px 2px 5px;" iconcls="icon-upload" onclick="importDeliveryFn()">上传发货单</a>
- <a class="mini-button mini-button-primary" style="padding: 2px 5px 2px 5px;" iconcls="icon-downgrade" onclick="multiDeliveryFn()">批量发货</a>
- </td>
- </tr>
- </table>
- </asp:Content>
- <asp:Content ID="Content4" ContentPlaceHolderID="content" runat="Server">
- <div class="mini-fit">
- <div id="m_grid" class="mini-datagrid" style="width: 100%; height: 100%;" showemptytext="true" emptytext="暂无记录" url="../handler/sync.ashx?t=get_erp_expresslist<ype=1">
- <div property="columns">
- <div type="indexcolumn" width="20"></div>
- <div type="checkcolumn" width="20"></div>
- <div field="tid" width="80" align="center" headeralign="center">订单编号</div>
- <div field="out_sid" width="80" align="center" headeralign="center">运单号</div>
- <div field="company_name" width="60" align="center" headeralign="center">快递公司</div>
- <div field="import_file" width="60" align="center" headeralign="center">导入文件名</div>
- <div field="supplierUserName" width="60" align="center" headeralign="center">供应商</div>
- <div field="state" width="60" align="center" headeralign="center">发货状态</div>
- <div field="delivery_memo" width="150" align="center" headeralign="center">备注</div>
- <div name="importtime" width="80" align="center" headeralign="center" renderer="importTimeRenderer">导入时间</div>
- <div field="ImportUserName" width="40" align="center" headeralign="center">导入人</div>
- </div>
- </div>
- </div>
- </asp:Content>
|