md
This commit is contained in:
parent
122aae545d
commit
6db97c7fff
@ -72,6 +72,10 @@ public class EmisWarehouseIn extends BaseEntity
|
||||
/* 总重量 */
|
||||
private BigDecimal totalWeight;
|
||||
|
||||
|
||||
/* 进仓标记 0-未进仓 1-已进仓 */
|
||||
private String stockInFlag;
|
||||
|
||||
// 入仓批次信息
|
||||
private List<EmisWarehouseInBatch> stockInBatchList;
|
||||
|
||||
|
||||
@ -3350,7 +3350,8 @@ public class EmisWaybillServiceImpl extends EmisBaseService implements IEmisWayb
|
||||
// 生成模版
|
||||
XWPFTemplate template = XWPFTemplate.compile(fis, config).render(fillMap);
|
||||
|
||||
response.setContentType("application/octet-stream");
|
||||
// response.setContentType("application/octet-stream");
|
||||
response.setContentType("application/pdf");
|
||||
response.setHeader("Content-Disposition", "attachment;fileName=" + fileName + ".pdf");
|
||||
|
||||
ByteArrayOutputStream bos = new ByteArrayOutputStream();
|
||||
|
||||
@ -29,16 +29,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
</resultMap>
|
||||
|
||||
<resultMap id="EmisWarehouseInDetailResult" type="EmisWarehouseIn" extends="BaseEmisWarehouseInResult" >
|
||||
<association property="waybillDetail"
|
||||
column="bill_code"
|
||||
select="com.xdadan.erp.emis.mapper.EmisWaybillMapper.selectWaybillBaseInfoByBillCode"
|
||||
fetchType="lazy"
|
||||
/>
|
||||
|
||||
</resultMap>
|
||||
|
||||
|
||||
<!-- <resultMap id="EmisWarehouseInDetailWithBatchListResult" type="EmisWarehouseIn" extends="BaseEmisWarehouseInResult" >-->
|
||||
<!-- <association property="stockInBatchList"-->
|
||||
<!-- column="in_no"-->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user