|
@@ -29,6 +29,10 @@
|
|
|
text-overflow: ellipsis;
|
|
|
}
|
|
|
|
|
|
+ .tit-2{position: relative;text-align: left;font-size: 16px;padding-left: 10px;color: #50a2ea;}
|
|
|
+ .tit-2:after{content: '';position: absolute;left: 0;top: 50%;height: 6px;width: 6px;border-radius: 6px;margin-top: -3px; background-color: #32a3d8;}
|
|
|
+
|
|
|
+
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
@@ -38,6 +42,17 @@
|
|
|
<a class="btn radius r" href="javascript:location.replace(location.href);" title="刷新" ><i class="Hui-iconfont"></i></a>
|
|
|
</nav>
|
|
|
<div class="page-container">
|
|
|
+
|
|
|
+ <div class="row cl" style=" margin-bottom: 20px;">
|
|
|
+ <label class="form-label col-12">
|
|
|
+ <div class="tit-2">产品名称:${inventoryInfo.inventoryProductName!''}(${inventoryInfo.productColorName!''}-${inventoryInfo.inventoryProductBar!''})</div>
|
|
|
+ </label>
|
|
|
+ <div class="formControls col-9">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <#--<pre style="font-size: 12px;margin-top: -1%;">产品名称:${inventoryInfo.inventoryProductName!''}(${inventoryInfo.productColorName!''}-${inventoryInfo.inventoryProductBar!''})</pre>-->
|
|
|
+
|
|
|
<div class="text-c">
|
|
|
<form name="form1" action="${path}/admin/inventory/select_inventoryLog_list" method="post">
|
|
|
<#--<input class="my-input" style="width: 70px;" type="text" name="signclosedCustomerId" value="${signclosedCustomerId!}" placeholder="客诉编号"/>
|
|
@@ -74,13 +89,14 @@
|
|
|
<table class="table table-border table-bordered table-bg table-hover table-sort">
|
|
|
<thead>
|
|
|
<tr class="text-c">
|
|
|
- <th width="100">产品名称</th>
|
|
|
- <th width="100">产品sku</th>
|
|
|
+ <th width="35">时间</th>
|
|
|
+ <#--<th width="100">产品名称</th>-->
|
|
|
+ <#--<th width="100">产品sku</th>-->
|
|
|
<#--<th width="100">仓库名称</th>-->
|
|
|
- <th width="100">变动数量</th>
|
|
|
- <th width="100">类型</th>
|
|
|
- <th width="100">质量类型</th>
|
|
|
- <th width="100">操作类型</th>
|
|
|
+ <th width="20">变动数量</th>
|
|
|
+ <th width="20">类型</th>
|
|
|
+ <th width="20">质量类型</th>
|
|
|
+ <th width="20">操作类型</th>
|
|
|
<th width="100">备注</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
@@ -88,11 +104,14 @@
|
|
|
<#if (page.dataList?size > 0)>
|
|
|
<#list page.dataList as info>
|
|
|
<tr>
|
|
|
- <td class="text-c" width="100">${info.logProductName!}</td>
|
|
|
- <td class="text-c" width="100">${info.logProductBar!}</td>
|
|
|
+ <td class="text-c" width="35">
|
|
|
+ ${(info.logCreateTime?string("yyyy-MM-dd HH:mm:ss"))!''}
|
|
|
+ </td>
|
|
|
+ <#--<td class="text-c" width="100">${info.logProductName!}</td>-->
|
|
|
+ <#--<td class="text-c" width="100">${info.logProductBar!}</td>-->
|
|
|
<#--<td class="text-c" width="100">${info.logWarehouseName!}</td>-->
|
|
|
- <td class="text-c" width="100">${info.logRemainingNum!}</td>
|
|
|
- <td class="text-c" width="100">
|
|
|
+ <td class="text-c" width="20">${info.logRemainingNum!}</td>
|
|
|
+ <td class="text-c" width="20">
|
|
|
<#if info.logType == 1>
|
|
|
采购
|
|
|
</#if>
|
|
@@ -103,7 +122,7 @@
|
|
|
次品
|
|
|
</#if>
|
|
|
</td>
|
|
|
- <td class="text-c" width="100">
|
|
|
+ <td class="text-c" width="20">
|
|
|
<#if info.logOperationType == 1>
|
|
|
入库
|
|
|
</#if>
|
|
@@ -111,7 +130,7 @@
|
|
|
出库
|
|
|
</#if>
|
|
|
</td>
|
|
|
- <td class="text-c" width="100">
|
|
|
+ <td class="text-c" width="20">
|
|
|
<#if info.logQualityType??>
|
|
|
<#if info.logQualityType == 1>
|
|
|
良品
|
|
@@ -121,7 +140,8 @@
|
|
|
</#if>
|
|
|
</#if>
|
|
|
</td>
|
|
|
- <td class="text-c" width="100">${info.logDesc!}</td>
|
|
|
+ <td class="" width="100">${info.logDesc!}</td>
|
|
|
+
|
|
|
</tr>
|
|
|
</#list>
|
|
|
<#else >
|