|
@@ -3,7 +3,9 @@
|
|
|
<head>
|
|
|
<meta charset="UTF-8">
|
|
|
<title></title>
|
|
|
-<#include "/base/list_base.ftl">
|
|
|
+ <#include "/base/list_base.ftl">
|
|
|
+ <!-- 新增需求引入js、css -->
|
|
|
+ <link href="${path}/common/lib/bootstrap/bootstrap.min.css" rel="stylesheet" />
|
|
|
<style>
|
|
|
*{padding: 0;margin: 0;}
|
|
|
.my-input{border: 1px solid rgba(0,0,0,.1);padding: 1px 5px;height: 25px;margin-right: 5px;}
|
|
@@ -40,47 +42,39 @@
|
|
|
<div class="page-container">
|
|
|
<div class="text-c">
|
|
|
<form name="form1" action="${path}/admin/inventory/select_inventory_list" method="post">
|
|
|
- <#--<select id="inventoryProductBar" name="inventoryProductBar" class="select" style="width: 120px;">
|
|
|
- <#if (productColorList?size > 0)>
|
|
|
- <#list productColorList as product>
|
|
|
- <#if inventoryProductBar??>
|
|
|
- <option value="${product.colorBar!""}" <#if product.colorBar == inventoryProductBar>selected</#if>>${product.productName!""}</option>
|
|
|
- <#else >
|
|
|
- <option value="${product.colorBar!""}" >${product.productName!""}</option>
|
|
|
- </#if>
|
|
|
- </#list>
|
|
|
- </#if>
|
|
|
- </select>
|
|
|
+ <input type="hidden" name="inventoryIDS" value="211,591,210,435,181,182,437,681,531,197,212,172,171,170,169,173,607,519,553,559,495,497,461,184,633,223,224,225,226,115,220,116,113,120,119,118,117,124,121,215,213,214,151,168,165"/>
|
|
|
|
|
|
- <select id="productColorId" name="productColorId" class="select" style="width: 120px;">
|
|
|
-
|
|
|
- </select>-->
|
|
|
-
|
|
|
- <select class="my-select" name="warehouseId" style="height: 30px;width: 150px">
|
|
|
+ <select class="select" name="warehouseId" style="height: 35px;width: 150px">
|
|
|
<option value ="">选择仓库</option>
|
|
|
- <#if (orderWarehouseList?size > 0)>
|
|
|
- <#list orderWarehouseList as orderWarehouse>
|
|
|
- <option value ="${orderWarehouse.warehouseId!}" <#if warehouseId??><#if warehouseId == orderWarehouse.warehouseId>selected="selected"</#if></#if>>${orderWarehouse.warehouseName!}</option>
|
|
|
- </#list>
|
|
|
- </#if>
|
|
|
+ <#if (orderWarehouseList?size > 0)>
|
|
|
+ <#list orderWarehouseList as orderWarehouse>
|
|
|
+ <option value ="${orderWarehouse.warehouseId!}" <#if warehouseId??><#if warehouseId == orderWarehouse.warehouseId>selected="selected"</#if></#if>>${orderWarehouse.warehouseName!}</option>
|
|
|
+ </#list>
|
|
|
+ </#if>
|
|
|
</select>
|
|
|
|
|
|
- <select class="my-select" name="productTypeId" style="height: 30px;width: 150px">
|
|
|
- <option value ="">选择产品类型</option>
|
|
|
+ <select class="select" name="isEntityInventory" style="height: 35px;width: 150px">
|
|
|
+ <option value ="1" <#if isEntityInventory?? && isEntityInventory == 1>selected</#if>>全部库存数据</option>
|
|
|
+ <option value ="2" <#if isEntityInventory?? && isEntityInventory == 2>selected</#if>>爱贝源实物库存</option>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select class="select" name="productTypeId" style="height: 35px;width: 150px">
|
|
|
+ <option value ="">选择产品类型</option>
|
|
|
<#if (productTypeList?size > 0)>
|
|
|
<#list productTypeList as typeList>
|
|
|
<option value ="${typeList.typeId!}" <#if productTypeId??><#if productTypeId == typeList.typeId>selected="selected"</#if></#if>>${typeList.typeName!}</option>
|
|
|
</#list>
|
|
|
</#if>
|
|
|
</select>
|
|
|
- <input class="my-input" style="width: 100px;height: 29px;" type="text" name="inventoryProductName" value="${inventoryProductName!}" placeholder="产品名称"/>
|
|
|
- <input class="my-input" style="width: 100px;height: 29px;" type="text" name="productColorName" value="${productColorName!}" placeholder="产品颜色"/>
|
|
|
- <input class="my-input" style="width: 100px;height: 29px;" type="text" name="inventoryProductBar" value="${inventoryProductBar!}" placeholder="产品69码"/>
|
|
|
- <button style="cursor:pointer;" type="submit" class="my-btn-search">搜索</button>
|
|
|
+
|
|
|
+ <input class="text-input" style="width: 100px;height: 25px;" type="text" name="inventoryProductName" value="${inventoryProductName!}" placeholder="产品名称"/>
|
|
|
+ <input class="text-input" style="width: 100px;height: 25px;" type="text" name="productColorName" value="${productColorName!}" placeholder="产品颜色"/>
|
|
|
+ <input class="text-input" style="width: 100px;height: 25px;" type="text" name="inventoryProductBar" value="${inventoryProductBar!}" placeholder="产品69码"/>
|
|
|
+ <button style="cursor:pointer;height: 35px;margin-bottom: 10px" type="submit" class="my-btn-search btn">搜索</button>
|
|
|
</form>
|
|
|
</div>
|
|
|
<div class="mt-20">
|
|
|
- <table class="table table-border table-bordered table-bg table-hover table-sort">
|
|
|
+ <table class="table table-bordered table-hover table-sort">
|
|
|
<thead>
|
|
|
<tr class="text-c">
|
|
|
<th width="50">仓库</th>
|