Commit d66c609e8d4e4fa556eff828db1f4d376e94adb8

Authored by 魏娟
1 parent c3e3b11f

删除之前多余的表单...

src/main/resources/templates/config/receiptPreference/list.html
... ... @@ -38,119 +38,6 @@
38 38 <input type="text" class="time-input" id="endTime" placeholder="结束时间"
39 39 name="endCreated"/>
40 40 </li>
41   -
42   - <!--<li>
43   - <label>入库流程:</label>
44   - <input type="text" name="receivingflow"/>
45   - </li>
46   - <li>
47   - <label>自动生成托盘号:</label>
48   - <input type="text" name="autoassignlpn"/>
49   - </li>
50   - <li>
51   - <label>允许超收:</label>
52   - <select name="allowoverreceiving">
53   - <option value="">所有</option>
54   - <option value="-1">代码生成请选择字典属性</option>
55   - </select>
56   - </li>
57   - <li>
58   - <label>允许超收范围:</label>
59   - <input type="text" name="allowoverreceivingqty"/>
60   - </li>
61   - <li>
62   - <label>自动定位:</label>
63   - <select name="autolocate">
64   - <option value="0">否</option>
65   - <option value="-1">是</option>
66   - </select>
67   - </li>
68   - <li>
69   - <label>RF显示未收数量:</label>
70   - <input type="text" name="showopenqty"/>
71   - </li>
72   - <li>
73   - <label>RF组车收货:</label>
74   - <input type="text" name="groupputaway"/>
75   - </li>
76   - <li>
77   - <label>人工组盘:</label>
78   - <input type="text" name="manuallybuildlpn"/>
79   - </li>
80   - <li>
81   - <label>定位规则:</label>
82   - <input type="text" name="locationrule"/>
83   - </li>
84   - <li>
85   - <label>空库位规则:</label>
86   - <input type="text" name="emptylocrule"/>
87   - </li>
88   - <li>
89   - <label>RF逐件收货:</label>
90   - <select name="checkinbypiece">
91   - <option value="0">否</option>
92   - <option value="-1">是</option>
93   - </select>
94   - </li>
95   - <li>
96   - <label>RF自动提交收货:</label>
97   - <select name="piececonfirm">
98   - <option value="0">否</option>
99   - <option value="-1">是</option>
100   - </select>
101   - </li>
102   - <li>
103   - <label>abc分类:</label>
104   - <select name="allowoverreceiving">
105   - <option value="0">否</option>
106   - <option value="-1">是</option>
107   - </select>
108   - </li>
109   - <li>
110   - <label>保质期(天):</label>
111   - <input type="number" name="daystoexpire"/>
112   - </li>
113   - <li>
114   - <label>临期预警:</label>
115   - <select name="expiringdays">
116   - <option value="0">否</option>
117   - <option value="-1">是</option>
118   - </select>
119   - </li>
120   - <li>
121   - <label>收货预警(天):</label>
122   - <input type="number" name="minshelflifedays"/>
123   - </li>
124   - <li>
125   - <label>RF快速上架:</label>
126   - <select name="allowquickputaway">
127   - <option value="0">否</option>
128   - <option value="-1">是</option>
129   - </select>
130   - </li>
131   - <li>
132   - <label>属性模板:</label>
133   - <input type="text" name="attributetemplatecode"/>
134   - </li>
135   - <li>
136   - <label>快速入库:</label>
137   - <select name="usequickcheckin">
138   - <option value="0">否</option>
139   - <option value="-1">是</option>
140   - </select>
141   - </li>
142   - <li>
143   - <label>创建用户:</label>
144   - <input type="text" name="createdby"/>
145   - </li>
146   - <li>
147   - <label>更新用户:</label>
148   - <select name="lastupdatedby">
149   - <option value="0">否</option>
150   - <option value="-1">是</option>
151   - </select>
152   - </li>-->
153   -
154 41 <p style=" float:right;text-align: right; padding:5px 50px 0 0">
155 42 <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i
156 43 class="fa fa-search"></i>&nbsp;搜索</a>
... ... @@ -772,22 +659,22 @@
772 659 });
773 660  
774 661  
775   - $.ajax({
776   - url: "../getWarehouseByUserCode",
777   - type: 'post',
778   - dataType: "json",
779   - data: {
780   - username: "fxh"
781   - },
782   - success: function (value) {
783   - // console.log(value.data);
784   - $("#warehouse").contents().remove();
785   - if (value != null && value.data.length >= 1)
786   - for (var i = 0; i < value.data.length; i++) {
787   - $('<option value=' + value.data[i].id + ' code=' + value.data[i].code + '>' + value.data[i].name + '</option>').appendTo('#warehouse');
788   - }
789   - }
790   - })
  662 + $.ajax({
  663 + url: "../getWarehouseByUserCode",
  664 + type: 'post',
  665 + dataType: "json",
  666 + data: {
  667 + username: "fxh"
  668 + },
  669 + success: function (value) {
  670 + // console.log(value.data);
  671 + $("#warehouse").contents().remove();
  672 + if (value != null && value.data.length >= 1)
  673 + for (var i = 0; i < value.data.length; i++) {
  674 + $('<option value=' + value.data[i].id + ' code=' + value.data[i].code + '>' + value.data[i].name + '</option>').appendTo('#warehouse');
  675 + }
  676 + }
  677 + })
791 678  
792 679 });
793 680  
... ...