|
|
|
@ -18,56 +18,23 @@
|
|
|
|
|
<label>箱体编码:</label>
|
|
|
|
|
<input type="text" name="boxCode"/>
|
|
|
|
|
</li>
|
|
|
|
|
<!-- <li>
|
|
|
|
|
<label>门体/物料编码:</label>
|
|
|
|
|
<input type="text" name="materialCode"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>物料类型:</label>
|
|
|
|
|
<input type="text" name="materialType"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>仓库编码:</label>
|
|
|
|
|
<input type="text" name="storeCode"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>库位编码:</label>
|
|
|
|
|
<input type="text" name="locationCode"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>库位区域:</label>
|
|
|
|
|
<input type="text" name="locationArea"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>操作类型:</label>
|
|
|
|
|
<input type="text" name="operationType"/>
|
|
|
|
|
</li>-->
|
|
|
|
|
<li>
|
|
|
|
|
<label>任务类型:</label>
|
|
|
|
|
<input type="text" name="taskType"/>
|
|
|
|
|
<select name="locationArea" th:with="type=${@dict.getType('location_info')}">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<!-- <li>
|
|
|
|
|
<label>任务状态:</label>
|
|
|
|
|
<select name="taskStatus" th:with="type=${@dict.getType('task_status')}">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</li>
|
|
|
|
|
<!-- <li>
|
|
|
|
|
<label>返回标识:</label>
|
|
|
|
|
<input type="text" name="returnFlag"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>开始时间:</label>
|
|
|
|
|
<input type="text" class="time-input" placeholder="请选择开始时间" name="beginTime"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>结束时间:</label>
|
|
|
|
|
<input type="text" class="time-input" placeholder="请选择结束时间" name="endTime"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>记录时间:</label>
|
|
|
|
|
<input type="text" class="time-input" placeholder="请选择记录时间" name="recordTime"/>
|
|
|
|
|
</li>-->
|
|
|
|
|
<li>
|
|
|
|
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
|
|
|
@ -101,6 +68,7 @@
|
|
|
|
|
<script th:inline="javascript">
|
|
|
|
|
var editFlag = [[${@permission.hasPermi('system:recorderror:edit')}]];
|
|
|
|
|
var removeFlag = [[${@permission.hasPermi('system:recorderror:remove')}]];
|
|
|
|
|
var locationAreaDatas = [[${@dict.getType('location_info')}]];
|
|
|
|
|
var taskStatusDatas = [[${@dict.getType('task_status')}]];
|
|
|
|
|
var prefix = ctx + "system/recorderror";
|
|
|
|
|
|
|
|
|
@ -146,7 +114,10 @@
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'locationArea',
|
|
|
|
|
title: '库位区域'
|
|
|
|
|
title: '库位区域',
|
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
|
return $.table.selectDictLabel(locationAreaDatas, value);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'operationType',
|
|
|
|
|