|
@@ -0,0 +1,100 @@
|
|
|
+<?php defined('InShopNC') or exit('Access Invalid!');?>
|
|
|
+
|
|
|
+<!--到货通知分析-->
|
|
|
+<div class="page">
|
|
|
+ <!-- 页面导航 -->
|
|
|
+ <div class="fixed-bar">
|
|
|
+ <div class="item-title">
|
|
|
+ <h3>到货通知分析</h3>
|
|
|
+ <ul class="tab-base">
|
|
|
+ <li><a href="JavaScript:void(0);" class="current"><span>到货通知分析</span></a></li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 帮助 -->
|
|
|
+ <table class="table tb-type2" id="prompt">
|
|
|
+ <tbody>
|
|
|
+ <tr class="space odd">
|
|
|
+ <th colspan="12" class="nobg"> <div class="title nomargin">
|
|
|
+ <h5><?php echo $lang['nc_prompts'];?></h5>
|
|
|
+ <span class="arrow"></span> </div>
|
|
|
+ </th>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>
|
|
|
+ <ul>
|
|
|
+ <li>可以查询每个商品的到货通知统计</li>
|
|
|
+ <li>可以通过筛选条件查询需要的商品的到货通知</li>
|
|
|
+ </ul>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <form method="post" id="serch_notice" name="serch_notice">
|
|
|
+ <input type="hidden" name="form_submit" value="ok">
|
|
|
+ <table class="tb-type1 noborder search">
|
|
|
+ <tbody>
|
|
|
+ <tr style="background: rgb(255, 255, 255);">
|
|
|
+ <td>
|
|
|
+ <label>
|
|
|
+ 查询条件:
|
|
|
+ <select name="condition_type" id="condition">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="arrival_notice">到货通知</option>
|
|
|
+ <option value="goods_name">商品名称</option>
|
|
|
+ <option value="goods_id">商品ID</option>
|
|
|
+ </select>
|
|
|
+ </label>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <label>
|
|
|
+ 排序:
|
|
|
+ <select name="sort" id="sort">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="ascending">从小到大</option>
|
|
|
+ <option value="descending">从大到小</option>
|
|
|
+ </select>
|
|
|
+ </label>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <label>商品名称:<input type="text" name="special_desc"></label>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <a href="javascript:void(0);" id="ncsubmit" class="btn-search" title="查询"> </a>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </form>
|
|
|
+
|
|
|
+ <form method="post">
|
|
|
+ <table class="table tb-type2">
|
|
|
+ <thead>
|
|
|
+ <tr class="space">
|
|
|
+ <th colspan="15" class="nobg"><?php echo $lang['nc_list'];?></th>
|
|
|
+ </tr>
|
|
|
+ <tr class="thead">
|
|
|
+ <th class="w12"> </th>
|
|
|
+ <th>商品ID</th>
|
|
|
+ <th>商品名称</th>
|
|
|
+ <th class="w200 align-center">到货通知统计</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <tr>
|
|
|
+ <td> </td>
|
|
|
+ <td>1234</td>
|
|
|
+ <td>相宜本草</td>
|
|
|
+ <td class="align-center">12</td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ <?php if(!empty($output['list']) && is_array($output['list'])){ ?>
|
|
|
+ <tfoot>
|
|
|
+ <tr class="tfoot">
|
|
|
+ <td colspan="16"><div class="pagination"> <?php echo $output['page'];?> </div></td>
|
|
|
+ </tr>
|
|
|
+ </tfoot>
|
|
|
+ <?php } ?>
|
|
|
+ </table>
|
|
|
+ </form>
|
|
|
+</div>
|