|
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
|
</div>
</div>
</div>
</form>
<div id="listForm" class="layui-tab-item layui-show">
<h2 class="layui-colla-title"><strong>物料明细</strong></h2>
<form class="layui-form layui-form-pane" action="" lay-filter="listForm">
<table id="mainList" class="layui-table"
lay-data="{height: '300', cellMinWidth: 80, page:true, id:'mainList', limit: 20, limits: [20, 50, 100, 200, 500, 1000]}"
lay-filter="mainList" lay-size="sm">
<thead>
<tr>
<th lay-data="{field:'Id', width:80, sort: true, fixed: false, hide: true}">id</th>
<th lay-data="{field:'LocationId', width:150, sort: true, fixed: false, hide: true}">库位id</th>
<th lay-data="{field:'LocationCode', width:150, sort: true, fixed: false, hide: true}">库位编号</th>
<th lay-data="{field:'ContainerCode', width:150, sort: true, fixed: false, hide: false}">容器编码</th>
<th lay-data="{field:'SourceCode', width:150, sort: true, fixed: false, hide: false}">上游系统单号</th>
<th lay-data="{field:'SourceLine', width:150, sort: true, fixed: false, hide: true}">上游系统行号</th>
<th lay-data="{field:'MaterialId', width:150, sort: true, fixed: false, hide: true}">物料Id</th>
<th lay-data="{field:'MaterialCode', width:150, sort: true, fixed: false, hide: false}">物料编码</th>
<th lay-data="{field:'ReceiptId', width:150, sort: true, fixed: false, hide: true}">入库单id</th>
<th lay-data="{field:'ReceiptCode', width:150, sort: true, fixed: false, hide: false}">入库单编码</th>
<th lay-data="{field:'ReceiptDetailId', width:150, sort: true, fixed: false, hide: true}">入库单明细id</th>
<th lay-data="{field:'TaskStatus', width:150, sort: true, fixed: false, hide: true, templet: function(d){return GetLabel('TaskStatus', 'DictValue', 'DictLabel', d.TaskStatus)}}">任务状态</th>
<th lay-data="{field:'Status', width:150, sort: true, fixed: false, hide: true, templet: function(d){return GetLabel('Status', 'DictValue', 'DictLabel', d.Status)}}">库存状态</th>
<th lay-data="{field:'ContainerStatus', width:150, sort: true, fixed: false, hide: false, templet: function(d){return GetLabel('ContainerStatus', 'DictValue', 'DictLabel', d.ContainerStatus)}}">容器状态</th>
<th lay-data="{field:'Qty', width:150, sort: true, fixed: false, hide: false}">数量</th>
<th lay-data="{field:'Batch', width:150, sort: true, fixed: false, hide: false}">批次</th>
<th lay-data="{field:'Lot', width:150, sort: true, fixed: false, hide: true}">批号</th>
<th lay-data="{field:'Project', width:150, sort: true, fixed: false, hide: true}">项目号</th>
<th lay-data="{field:'ManufactureDate', width:150, sort: true, fixed: false, hide: true}">生产日期</th>
<th lay-data="{field:'ExpirationDate', width:150, sort: true, fixed: false, hide: true}">失效日期</th>
<th lay-data="{field:'TaskQty', width:150, sort: true, fixed: false, hide: true}">执行预定数量</th>
<th lay-data="{field:'CostPrice', width:150, sort: true, fixed: false, hide: true}">成本</th>
<th lay-data="{field:'ListPrice', width:150, sort: true, fixed: false, hide: true}">标价</th>
<th lay-data="{field:'NetPrice', width:150, sort: true, fixed: false, hide: true}">净价</th>
<th lay-data="{field:'CreateTime', width:150, sort: true, fixed: false, hide: true}">创建时间</th>
<th lay-data="{field:'CreateBy', width:150, sort: true, fixed: false, hide: true}">创建用户</th>
<th lay-data="{field:'UpdateTime', width:150, sort: true, fixed: false, hide: true}">更新时间</th>
<th lay-data="{field:'UpdateBy', width:150, sort: true, fixed: false, hide: true}">更新用户</th>
</tr>
</thead>
</table>
</form>
</div>
</div>
<script type="text/javascript" src="/layui/layui.js"></script>
<script type="text/javascript" src="/productjs/task/AddLocation.js?v=2019.08.19"></script>
<script type="text/javascript" src="/basejs/Common.js?v=2019.08.19"></script>
|