初始版本

This commit is contained in:
2026-04-19 01:39:41 +08:00
commit 2b4d3e9880
1272 changed files with 389959 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');?>
<table class="table" width="1500" border="1">
<tr>
<td colspan="9" align="center"><H3>盘点表</H3></td>
</tr>
<tr>
<th width="120" align="center">仓库</th>
<th width="180" >商品类别</th>
<th width="100" align="center">商品编号</th>
<th width="100" align="center">商品名称</th>
<th width="100" align="center">属性编号</th>
<th width="100" align="center">属性名称</th>
<th width="120" align="center">规格型号</th>
<th width="100" align="center">系统库存</th>
<th width="100" align="center">盘点库存</th>
</tr>
<?php
$i = 1;
foreach($list as $arr=>$row) {
?>
<tr target="id">
<td ><?php echo $locationId > 0 ? $row['locationName'] : '所有仓库';?></td>
<td ><?php echo $row['categoryName']?></td>
<td ><?php echo $row['invNumber']?></td>
<td ><?php echo $row['invName']?></td>
<td ><?php echo ''?></td>
<td ><?php echo ''?></td>
<td ><?php echo $row['invSpec']?></td>
<td ><?php echo $row['qty']?></td>
<td > </td>
</tr>
<?php $i++;}?>
</table>