出库单修改

master
zhouxi 2021-12-08 10:38:09 +08:00
parent 735ab59c1b
commit bb8741baff
3 changed files with 191 additions and 151 deletions

View File

@ -2095,38 +2095,38 @@ public class WmOmNoticeHController extends BaseController {
id);//获取抬头
printHeader.setHeader01("配送单");
printHeader.setHeader01("桥路易购签收单");
printHeader.setHeader02("公司地址:"+ResourceUtil.getConfigByName("comaddr") );
printHeader.setHeader02("司机电话:");
printHeader.setHeader03("电话:"+ ResourceUtil.getConfigByName("comtel"));
printHeader.setHeader03("车牌号:");
printHeader.setHeader04("送货日期: " +(wmOmNoticeH.getDelvData() == null ?"":DateUtils.date2Str(wmOmNoticeH.getDelvData(), DateUtils.date_sdf)));
printHeader.setHeader04("司机: " );
printHeader.setHeader05("出库单号: " +wmOmNoticeH.getOmNoticeId());
printHeader.setHeader06("参考单号: " +wmOmNoticeH.getImCusCode());
printHeader.setHeader06("单号: " +wmOmNoticeH.getImCusCode());
printHeader.setHeader07("车号: " +wmOmNoticeH.getReCarno());
printHeader.setHeader07("快递单号: " );
MdCusEntity md = systemService.findUniqueByProperty(MdCusEntity.class, "keHuBianMa", wmOmNoticeH.getCusCode());
printHeader.setHeader08("客户名称: " +wmOmNoticeH.getCusCode()+md.getZhongWenQch());
printHeader.setHeader09("联系人: "+wmOmNoticeH.getDelvMember());
printHeader.setHeader09("收件人: "+wmOmNoticeH.getDelvMember());
printHeader.setHeader10("送货地址: " +wmOmNoticeH.getDelvAddr());
printHeader.setHeader10("发货地址: " );
printHeader.setHeader11("打印时间: "+DateUtils.date2Str(DateUtils.getDate(), DateUtils.datetimeFormat) );
printHeader.setHeader14("销售部门: " );
printHeader.setHeader15("货方式: "+(StringUtils.isEmpty(wmOmNoticeH.getDelvMethod())?"":wmOmNoticeH.getDelvMethod()) );
printHeader.setHeader11("送货日期: " +(wmOmNoticeH.getDelvData() == null ?"":DateUtils.date2Str(wmOmNoticeH.getDelvData(), DateUtils.date_sdf)));
printHeader.setHeader14("收货地址: " +wmOmNoticeH.getDelvAddr());
printHeader.setHeader15("货方式: "+(StringUtils.isEmpty(wmOmNoticeH.getDelvMethod())?"":wmOmNoticeH.getDelvMethod()) );
printHeader.setHeader16("备注: " +wmOmNoticeH.getOmBeizhu());
printHeader.setHeader17("销售员 ");
printHeader.setHeader18("销售员电话: ");
printHeader.setHeader19("销售日期 ");
printHeader.setHeader20("客户电话: "+wmOmNoticeH.getDelvMobile());
printHeader.setHeader17("收货单位 ");
printHeader.setHeader18("运输方式: "+(StringUtils.isEmpty(wmOmNoticeH.getDelvMethod())?"":wmOmNoticeH.getDelvMethod()) );
printHeader.setHeader19("揽件人电话 ");
printHeader.setHeader20("收件人电话: "+wmOmNoticeH.getDelvMobile());
BaStoreEntity baStoreEntity = systemService.findUniqueByProperty(BaStoreEntity.class,"storeCode",wmOmNoticeH.getStoreCode());
if (baStoreEntity != null){
@ -2138,7 +2138,7 @@ public class WmOmNoticeHController extends BaseController {
List<PrintItem> listitem = new ArrayList<>();
String tsql = "SELECT wq.goods_pro_data as pro_data,wq.base_goodscount,wq.base_unit,mg.gao_dan_pin, mg.goods_code,mg.shp_gui_ge, mg.goods_id,mg.shp_ming_cheng,cast(sum(wq.base_goodscount) as signed) as goods_count,mg.chl_shl,cast(mg.ti_ji_cm/mg.chl_shl as signed) tin_tj ,(mg.zhl_kg/mg.chl_shl ) as tin_zhl "
String tsql = "SELECT wq.goods_pro_data as pro_data,mg.sku,wq.base_goodscount,wq.base_unit,mg.gao_dan_pin, mg.goods_code,mg.shp_gui_ge, mg.goods_id,mg.shp_ming_cheng,cast(sum(wq.base_goodscount) as signed) as goods_count,mg.chl_shl,cast(mg.ti_ji_cm/mg.chl_shl as signed) tin_tj ,(mg.zhl_kg/mg.chl_shl ) as tin_zhl "
+" FROM wm_to_down_goods wq,mv_goods mg where wq.id in (?) "
+" and wq.goods_id = mg.goods_id group by wq.order_id, mg.goods_code,wq.goods_pro_data";
@ -2148,7 +2148,7 @@ public class WmOmNoticeHController extends BaseController {
int size = result.size();
if(size<1){
tsql = "SELECT wq.pro_data,wq.base_unit,wq.base_goodscount,mg.shp_gui_ge,mg.gao_dan_pin, mg.goods_code, mg.goods_id,mg.shp_ming_cheng,cast(sum(wq.base_goodscount) as signed) as goods_count,mg.chl_shl,cast(mg.ti_ji_cm/mg.chl_shl as signed) tin_tj , (mg.zhl_kg/mg.chl_shl) as tin_zhl "
tsql = "SELECT wq.pro_data,mg.sku,wq.base_unit,wq.base_goodscount,mg.shp_gui_ge,mg.gao_dan_pin, mg.goods_code, mg.goods_id,mg.shp_ming_cheng,cast(sum(wq.base_goodscount) as signed) as goods_count,mg.chl_shl,cast(mg.ti_ji_cm/mg.chl_shl as signed) tin_tj , (mg.zhl_kg/mg.chl_shl) as tin_zhl "
+" FROM wm_om_qm_i wq,mv_goods mg where wq.om_notice_id = ? "
+" and wq.goods_id = mg.goods_id group by wq.om_notice_id, mg.goods_code,wq.pro_data";
result = systemService
@ -2226,12 +2226,12 @@ public class WmOmNoticeHController extends BaseController {
printItem.setItem10(result.get(i).get("shp_gui_ge")
.toString());
try{
printItem.setItem11(result.get(i).get("gao_dan_pin")
.toString());
printItem.setItem11(result.get(i).get("gao_dan_pin") == null ?"":result.get(i).get("gao_dan_pin").toString());
}catch (Exception e){
logger.error(ExceptionUtil.getExceptionMessage(e));
}
printItem.setItem12(result.get(i).get("sku") == null ?"":result.get(i).get("sku").toString());
printItem.setItem13(result.get(i).get("base_unit") == null ?"":result.get(i).get("base_unit").toString());
listitem.add(printItem);
}

View File

@ -73,22 +73,22 @@
.xl65
{mso-style-parent:style0;
color:black;
font-size:22pt;
font-size:16pt;
text-align:center;
border:1.0pt solid black;}
.xl66
{mso-style-parent:style0;
color:black;
font-size:22pt;}
font-size:16pt;}
.xl67
{mso-style-parent:style0;
color:black;
font-size:25pt;
font-size:18pt;
text-align:center;}
.xl68
{mso-style-parent:style0;
color:black;
font-size:22pt;
font-size:16pt;
white-space:normal;}
.xl69
{mso-style-parent:style0;
@ -102,8 +102,8 @@
<div class="printdiv"><t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" >
<input id="content" type="hidden" value="${printHeader.header05}">
<table border=0 cellpadding=0 cellspacing=0 width=680 style='border-collapse:
collapse;table-layout:fixed;width:438pt;margin-left: 30px;margin-top: -30px'>
<table border=0 cellpadding=0 cellspacing=0 style='border-collapse:
collapse;margin-left: 30px;margin-top: -30px'>
<col width=100 style='mso-width-source:userset;mso-width-alt:3612;width:100pt'>
<%--<col width=84 style='mso-width-source:userset;mso-width-alt:2986;width:63pt'>--%>
@ -121,31 +121,43 @@
<td colspan=9 height=18 width=585 style='height:13.2pt;width:438pt'></td>
</tr>
<tr height=18 style='height:13.2pt'>
<td colspan=9 height=18 width=585 style='height:13.2pt;width:438pt;text-align: center'><span style="font-size: 25pt">出库单</span></td>
</tr>
<tr height=40 style='mso-height-source:userset;height:30.0pt'>
<td colspan=3 class=xl68 width=168 >${printHeader.header14}</td>
<td colspan=3 height=40 class=168 style='height:30.0pt'><span style="font-size: 22pt">${printHeader.header15} </span></td>
<td colspan=2 height=40 class=xl67 style='height:30.0pt'><span style="font-size: 22pt">${printHeader.header04} </span></td>
<td rowspan="3" class=xl69>
<img src="images/icon_sx.jpeg" style="width:80px;height:80px;vertical-align:right">
</td>
<td colspan=9 rowspan=3 height=18 width=585 style='height:13.2pt;line-height: 3;width:438pt;text-align: center'><span style="font-size: 18pt">${printHeader.header01}</span></td>
</tr>
<tr height=40 style='mso-height-source:userset;height:30.0pt'>
<td colspan=3 height=40 class=xl67 style='height:30.0pt'><span style="font-size: 22pt">${printHeader.header17}</span> </td>
<td colspan=3 class=xl68 width=168 style='width:126pt'><span style="font-size: 22pt">${printHeader.header18}</span></td>
<td colspan=3 class=xl68 width=168 style='width:126pt'><span style="font-size: 22pt">${printHeader.header19}</span></td>
<tr></tr>
<tr></tr>
<tr height=20 style='mso-height-source:userset;height:20.0pt'>
<td colspan=6 class=xl68 width=168 >${printHeader.header06}</td>
<td colspan=4 height=20 class=168 style='height:20.0pt'>${printHeader.header05} </td>
</tr>
<tr height=40 style='mso-height-source:userset;height:30.0pt'>
<td colspan=3 height=40 class=xl68 style='height:30.0pt'><span style="font-size: 22pt">${printHeader.header06}</span></td>
<td colspan=3 height=40 class=xl68 style='height:30.0pt'><span style="font-size: 22pt">${printHeader.header05}</span></td>
<td colspan=3 height=40 class=xl68 style='height:30.0pt'><span style="font-size: 22pt">${printHeader.header21}</span></td>
<tr height=20 style='mso-height-source:userset;height:20.0pt'>
<td colspan=6 class=xl68 width=168 >${printHeader.header10}</td>
<td colspan=4 height=20 class=168 style='height:20.0pt'>${printHeader.header15} </td>
</tr>
<tr height=40 style='mso-height-source:userset;height:30.0pt'>
<td colspan=3 class=xl68 style='width:252pt'><span style="font-size: 22pt">${printHeader.header10}</span></td>
<td colspan=3 class=xl68 style='width:252pt'><span style="font-size: 22pt">${printHeader.header20}</span></td>
<td colspan=3 class=xl68 style='width:252pt'><span style="font-size: 22pt">${printHeader.header09}</span></td>
<tr>
<td colspan=6 height=20 class=xl68 width=168 >${printHeader.header17} </td>
<td colspan=4 height=20 class=xl68 width=168 >${printHeader.header14} </td>
</tr>
<tr height=20 style='mso-height-source:userset;height:20.0pt'>
<td colspan=6 class=xl68 width=168 style='width:126pt'>${printHeader.header09}</td>
<td colspan=4 class=xl68 width=168 style='width:126pt'>${printHeader.header20}</td>
</tr>
<tr height=20 style='mso-height-source:userset;height:20.0pt'>
<td colspan=3 height=20 class=xl68 style='height:20.0pt'>${printHeader.header18}</td>
<td colspan=3 height=20 class=xl68 style='height:20.0pt'>${printHeader.header19}</td>
<td colspan=4 height=20 class=xl68 style='height:20.0pt'>${printHeader.header07}</td>
</tr>
<tr height=20 style='mso-height-source:userset;height:20.0pt'>
<td colspan=3 class=xl68 style='width:252pt'>${printHeader.header02}</td>
<td colspan=3 class=xl68 style='width:252pt'>${printHeader.header03}</td>
<td colspan=4 class=xl68 style='width:252pt'>${printHeader.header04}</td>
</tr>
<tr height=20 style='mso-height-source:userset;height:20.0pt'>
<td colspan=10 class=xl68 style='width:252pt'>${printHeader.header11}</td>
</tr>
@ -164,18 +176,19 @@
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>体积</td>--%>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>库存</td>--%>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 22pt">商品</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 22pt">名称</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center;width: 20px'>序号</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>订单编号</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>SKU</td>
<%--<td class=xl65 style='border:1.0pt solid black;text-align: center'>商品编码</td>--%>
<td height=33 class=xl65 style='height:25.05pt;border:1.0pt solid black;text-align: center'><span style="font-size: 22pt">单价</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 22pt">批次</span></td>
<td height=33 class=xl65 style='height:25.05pt;border:1.0pt solid black;text-align: center'>物品名称</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>规格</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 22pt">规格</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 22pt">数量</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 22pt">重量</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>单位</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>数量</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>单价/元</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>金额/元</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 22pt">库区</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 22pt">备注</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center;width: 100pt'>备注</td>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>备注</td>--%>
</tr>
@ -183,85 +196,105 @@
<c:forEach items="${listitem}" var="poVal" varStatus="stuts">
<tr style='mso-height-source:userset;height:30px'>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">${poVal.item01 }</span> </td>
<td class=xl65 style='border:1.0pt solid black;text-align: center;width: 20px' >${poVal.item20}</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item01 } </td>
<%--<td height=33 class=xl65 style='height:25.05pt;border:1.0pt solid black;text-align: center'>${poVal.goodsCode }</td>--%>
<td class=xl65 style='border:1.0pt solid black;text-align: center;word-break:break-all;'><span style="font-size: 18pt">${poVal.item02 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">${poVal.item11}</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center;word-break:break-all;'>${poVal.item12}</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item02 }</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item10 }</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item13 }</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item06 }</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item11 }</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">${poVal.item10 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">${poVal.item06 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">${poVal.item07 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">成品区</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'></td>
<td ></td>
</tr>
</c:forEach>
<tr height=33 style='mso-height-source:userset;height:50px'>
<td class=xl65 style='border:1.0pt solid black;text-align: left' colspan="5"><span style="font-size: 18pt">合计:</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: left;width: 20px' >合计:</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center' ></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center' ></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center' ></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center' ></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center' ></td>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center;word-break:break-all;' colspan="4"><span style='word-break:break-all;width: auto;font-size: 14pt'></span></td>--%>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'></td>--%>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'></td>--%>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'></td>--%>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">${printHeader.header12}</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">${printHeader.header13}</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center' colspan="2"></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'> 元</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center' ></td>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'></td>--%>
</tr>
</c:if>
<tr height=33 style='mso-height-source:userset;height:50px'>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">收货人</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center;word-break:break-all;'><span style="font-size: 18pt">产品有无破损</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 18pt">有 &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 无</span> </td>
<tr height=20 style='mso-height-source:userset;height:30px;border-right:1.0pt solid black;color: #666666'>
<td class=xl65 rowspan="6" style='border:1.0pt solid black;text-align: center;width: 20px'></td>
<td class=xl65 colspan="6">签收承诺:</td>
<td colspan="3" rowspan="5" align="center" style="font-size: 16pt">
签收单寄回地址;山西省晋中市寿阳县平头镇东村富韩村山西字化交通产业园<br/>联系方式16636431909
</td>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>收货人</td>--%>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center;word-break:break-all;'>产品有无破损</td>--%>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>有 &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 无 </td>--%>
<td class=xl65 style='border:1.0pt solid black;vertical-align:top;text-align: left' colspan="3" rowspan="2" ><span style="font-size: 18pt">收货人签字:</span></td>
<%-- <td class=xl65 style='border:1.0pt solid black;vertical-align:top;text-align: left' colspan="3" rowspan="2" >收货人签字:</td>--%>
<td class=xl65 style='border:1.0pt solid black;vertical-align:top;text-align: left' colspan="3" rowspan="2"><span style="font-size: 18pt">意见栏:</span></td>
<%-- <td class=xl65 style='border:1.0pt solid black;vertical-align:top;text-align: left' colspan="3" rowspan="2">意见栏:</td>--%>
</tr>
<tr height=33 style='mso-height-source:userset;height:50px'>
<td class=xl65 style='border:1.0pt solid black;text-align: center' ><span style="font-size: 18pt">注意事项</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center' colspan="2"></td>
<tr height=20 style='mso-height-source:userset;height:30px;border-right:1.0pt solid black;'>
<td class=xl65 colspan="6">我方已与货运公司当场清点验收完毕。货物数量正确,包装完好!</td>
</tr>
<tr height=40 style='mso-height-source:userset;height:60px;width: 822px'>
<td class=xl65 style='border:1.0pt solid black;vertical-align:top;text-align: left;word-wrap:break-word;word-break:break-all;' colspan="9" ><span style="font-size: 18pt">
重要提示:尊敬的客户,因您购买的商品为贵重易碎物品,请你认真确认送达产品的完好性以及产品的型号、颜色、数量是否与您购买时一致,配件是否齐全。验收并核对无误后请当面签字确认,若有发现破损或缺件商品,可对该商品予以拒收。客户签收后,我们对产品质量以外的问题可予以积极协助,但不作退货处理或承担相关损失。
</span></td>
<tr height=20 style='mso-height-source:userset;height:30px;border-right:1.0pt solid black;'>
<td class=xl65 colspan="3">签收人(代收人):</td>
<td class=xl65 colspan="3">签收人(代收人):</td>
</tr>
<tr height=33 style='mso-height-source:userset;height:30px;border-right:1.0pt solid black;'>
<td class=xl65 colspan="3">日期:</td>
<td class=xl65 colspan="3">日期:</td>
</tr>
<tr height=20 style='mso-height-source:userset;height:30px;border-right:1.0pt solid black;'>
<td class=xl65 colspan="6">温馨提示</td>
</tr>
<tr height=20 style='mso-height-source:userset;height:60px;width: 822px;border-right:1.0pt solid black;;border-bottom:1.0pt solid black;'>
<td class=xl65 style='vertical-align:top;text-align: left;word-wrap:break-word;word-break:break-all;white-space: normal;' colspan="9" >
请与运输公司当场清点签收。收货时发现异常请务必在3日内与我司客服联系。并要求运输公司当场书面核实确认同时保留异常货物照片备查逾期未联系将视同货品完好。
服务电话03543063066
签收单寄回地址:山西省晋中市寿阳县平头镇东韩村富韩村 山西数字化交通产业园 16636431909
</td>
</tr>
<tr height=15 style='height:25.0pt'>
<td height=20 class=xl66 colspan=3 style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
<span style="font-size: 18pt">拣货员:</span>
供货单位:山西数字化交通产业园
</td>
<td height=20 class=xl66 colspan=4 style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
复核员:
</td>
<td height=20 class=xl66 colspan=3 style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
<span style="font-size: 18pt">复核员:</span>
</td>
<td height=20 class=xl66 colspan=3 style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
<span style="font-size: 18pt">司机:</span>
制单员:
</td>
</tr>
<tr height=15 style='height:25.0pt'>
<td height=20 class=xl66 colspan="" style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
<span style="font-size: 18pt">白联:存根</span>
<td height=20 class=xl66 colspan="3" style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
白联:存根
</td>
<td height=20 class=xl66 colspan="2" style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
<span style="font-size: 18pt">红联:回执</span>
<td height=20 class=xl66 colspan="4" style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
粉联:财务联
</td>
<td height=20 class=xl66 colspan="2" style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
<span style="font-size: 18pt">蓝联:</span>
</td>
<td height=20 class=xl66 colspan=2 style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
<span style="font-size: 18pt">绿联:财务</span>
</td>
<td height=20 class=xl66 colspan=2 style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
<span style="font-size: 18pt">黄联:客户</span>
<%-- <td height=20 class=xl66 colspan="2" style='height:15.0pt;mso-ignore:colspan;text-align: justify'>--%>
<%-- 蓝联:--%>
<%-- </td>--%>
<%-- <td height=20 class=xl66 colspan=2 style='height:15.0pt;mso-ignore:colspan;text-align: justify'>--%>
<%-- 绿联:财务--%>
<%-- </td>--%>
<td height=20 class=xl66 colspan=3 style='height:15.0pt;mso-ignore:colspan;text-align: justify'>
黄联:客户
</td>
</tr>

View File

@ -73,20 +73,26 @@
.xl65
{mso-style-parent:style0;
color:black;
font-size:22pt;
font-size:16pt;
text-align:center;
border:1.0pt solid black;}
.xl66
{mso-style-parent:style0;
color:black;
font-size:22pt;}
font-size:16pt;}
.xl67
{mso-style-parent:style0;
color:black;
font-size:18pt;
text-align:center;}
.xl68
{mso-style-parent:style0;
color:black;
font-size:25pt;
font-size:16pt;
white-space:normal;}
.xl69
{mso-style-parent:style0;
text-align:center;}
</style>
@ -100,8 +106,9 @@
collapse;table-layout:fixed;width:800pt;margin-left: 30px;margin-top: -30px'>
<col width=45 style='mso-width-source:userset;mso-width-alt:3612;width:45pt'>
<col width=100 style='mso-width-source:userset;mso-width-alt:4010;width:130pt'>
<col width=145 style='mso-width-source:userset;mso-width-alt:1592;width:150pt'>
<%--<col width=84 style='mso-width-source:userset;mso-width-alt:2986;width:63pt'>--%>
<col width=100 style='mso-width-source:userset;mso-width-alt:4010;width:100pt'>
<col width=145 style='mso-width-source:userset;mso-width-alt:1592;width:134pt'>
<col width=100 style='mso-width-source:userset;mso-width-alt:2986;
width:80pt'>
<col width=67 style='mso-width-source:userset;mso-width-alt:2389;width:50pt'>
@ -115,7 +122,7 @@
<td colspan=6 height=18 width=585 style='height:13.2pt;width:438pt'></td>
</tr>
<tr height=18 style='height:13.2pt'>
<td colspan=6 height=18 width=585 style='height:13.2pt;width:438pt'><span style="font-size: 25pt">${printHeader.header01}</span></td>
<td colspan=6 height=18 width=585 style='height:13.2pt;width:438pt'><span style="font-size: 18pt">${printHeader.header01}</span></td>
</tr>
<%-- <tr height=40 style='mso-height-source:userset;height:30.0pt'>--%>
<%-- <td colspan=6 class=xl68 width=168 style='width:126pt'></td>--%>
@ -124,33 +131,30 @@
<%--&lt;%&ndash; </td>&ndash;%&gt;--%>
<%-- </tr>--%>
<tr height=40 style='mso-height-source:userset;height:30.0pt'>
<%-- <td colspan=3 height=40 class=xl68 style='height:30.0pt'><span style="font-size: 22pt">${printHeader.header04}</span></td>--%>
<td colspan=3 height=40 class=xl68 style='height:30.0pt'><span style="font-size: 20pt">${printHeader.header05}</span></td>
<td colspan=3 class=xl68><span style="font-size: 22pt">${printHeader.header16}</span></td>
<td colspan=3 height=40 class=xl68 style='height:30.0pt'>${printHeader.header04}</td>
<td colspan=3 height=40 class=xl68 style='height:30.0pt'>${printHeader.header05}</td>
</tr>
<tr height=40 style='mso-height-source:userset;height:30.0pt'>
<td colspan=3 height=40 class=xl68 width=242 style='height:30.0pt;width:182pt'><span style="font-size: 20pt">${printHeader.header09}</span></td>
<td colspan=3 class=xl68 width=337 style='width:252pt'><span style="font-size: 20pt">${printHeader.header14}</span></td>
<td colspan=3 height=40 class=xl68 width=242 style='height:30.0pt;width:182pt'>${printHeader.header08}</td>
<td colspan=3 height=40 class=xl68 width=242 style='height:30.0pt;width:182pt'>${printHeader.header09}</td>
</tr>
<tr height=40 style='mso-height-source:userset;height:30.0pt;'>
<td colspan=3 height=40 class=xl68 width=242 style='height:30.0pt;width:182pt'><span style="font-size: 20pt">${printHeader.header08}</span></td>
<td colspan=3 class=xl68 width=337 style='width:252pt'>${printHeader.header14}</td>
<td colspan=3 class=xl68>${printHeader.header16}</td>
</tr>
<tr style='mso-height-source:userset;height:18.05pt'>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 20pt">序号</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>序号</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 20pt">商品编码</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>商品编码</td>
<%--<td class=xl65 style='border:1.0pt solid black;text-align: center'>商品编码</td>--%>
<td class=xl65 style='height:25.05pt;border:1.0pt solid black;text-align: center'><span style="font-size: 20pt">商品</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 20pt">生产日期</span></td>
<td class=xl65 style='height:25.05pt;border:1.0pt solid black;text-align: center'>商品</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>生产日期</td>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>收货温度</td>--%>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 20pt">单位</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 20pt">数量</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>单位</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>数量</td>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>重量</td>--%>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>容积</td>--%>
@ -165,16 +169,16 @@
<c:forEach items="${listitem}" var="poVal" varStatus="stuts">
<tr height=30 style='mso-height-source:userset;height:30px'>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 16pt">${poVal.item20 } </td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item20 } </td>
<%-- <td height=33 class=xl65 style='height:25.05pt;border:1.0pt solid black;text-align: center'>${poVal.goodsCode }</td>--%>
<td class=xl65 style='border:1.0pt solid black;text-align: center;word-break:break-all;'><span style='word-break:break-all;width: auto;font-size: 18pt'>${poVal.item01 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 16pt">${poVal.item02 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center;word-break:break-all;'><span style='word-break:break-all;width: auto;font-size: 14pt'>${poVal.item01 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item02 }</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 16pt">${poVal.item03 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item03 }</td>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item04 }</td>--%>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 16pt">${poVal.item05 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item05 }</td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'><span style="font-size: 16pt">${poVal.item06 }</span></td>
<td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item06 }</td>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item07 }</td>--%>
<%-- <td class=xl65 style='border:1.0pt solid black;text-align: center'>${poVal.item08 }</td>--%>
@ -187,12 +191,15 @@
</c:forEach>
</c:if>
<tr height=40 style='height:25.0pt'>
<td height=20 class=xl66 colspan=6 style='height:15.0pt;mso-ignore:colspan;text-align: justify'><span style="font-size: 16pt">主管:</span><span
<td height=20 class=xl66 colspan=6 style='height:15.0pt;mso-ignore:colspan;text-align: justify'>主管:<span
style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span><span style="font-size: 16pt">制单人:${printHeader.header15} </span><span style="font-size: 16pt">&nbsp;&nbsp;&nbsp;&nbsp;仓管签字(盖章):</span><span
</span>制单人:${printHeader.header15} <span
style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span>仓管签字(盖章):<span
style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span><span style="font-size: 16pt">合计数量:${printHeader.header12}</span>
</span>合计数量:${printHeader.header12}<span
合计数量:${printHeader.header12}
<%-- <td></td>--%>
</tr>
</table>