87,989
社区成员
发帖
与我相关
我的任务
分享
<c:forEach items="${listP}" var="list" varStatus="vs">
<c:if test="${vs.count%10 == 0}">
<table class="tab" cellspacing="0" cellpadding="0" width=1000px >
<caption>存货明细账</caption>
<tr>
<td colspan="12">2018.01-2018.12</td>
</tr>
<tr>
<td colspan="2">2018</td>
<td rowspan="2" colspan="2">商品名称</td>
<td colspan="3">借方</td>
<td colspan="3">贷方</td>
<td rowspan="2" colspan="2">余额</td>
</tr>
<tr>
<td>月</td>
<td>日</td>
<td>数量</td>
<td>单价</td>
<td>金额</td>
<td>数量</td>
<td>单价</td>
<td>金额</td>
</tr>
</c:if>
<tr>
<td>${list.mon }</td>
<td>${list.today }</td>
<td colspan="2">${list.good_name }</td>
<td>${list.in_count }</td>
<td>${list.in_price }</td>
<td>${list.in_money }</td>
<td>${list.out_count }</td>
<td>${list.out_price }</td>
<td>${list.out_money }</td>
<td colspan="2">${list.money }</td>
</tr>
<c:if test="${vs.count%10 == 0}">
</table>
</c:if>
</c:forEach>