## 提货基数查询,导出
This commit is contained in:
parent
eccc9cafb9
commit
b162732059
|
@ -283,5 +283,9 @@ public class ProductVo implements Serializable {
|
|||
*/
|
||||
private Integer pkCubasdoc;
|
||||
|
||||
|
||||
/**
|
||||
* 提货基数
|
||||
*/
|
||||
@Excel(name = "提货基数")
|
||||
private Integer deliveryQuantity;
|
||||
}
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<result column="REMOVAL_TIME" property="removalTime"/>
|
||||
<result column="WMS_CODE" property="wmsCode"/>
|
||||
<result column="CLASSIFY_NAME" property="classifyName"/>
|
||||
<result column="DELIVERY_QUANTITY" property="deliveryQuantity"/>
|
||||
</resultMap>
|
||||
|
||||
<select id="getLastProductCode" resultType="string">
|
||||
|
@ -94,7 +95,7 @@
|
|||
left join BD_SPECS_TYPE st on st.PK_ID = ps.PK_SPECS_TYPE
|
||||
where ps.PK_PRODUCT = bp.PK_ID and ps.DEL_FLAG = '0') productSpecType,
|
||||
pe.IS_GIFT,pe.IS_PICK_UP,pe.IS_PRIZE,pe.IS_BAR_CODE,pe.IS_MERGE,pe.IS_LAND_TRANS,
|
||||
pe.IS_AIR_TRANS,pe.IS_OCEAN_TRANS,pe.SORT,bp.CREATION_TIME,
|
||||
pe.IS_AIR_TRANS,pe.IS_OCEAN_TRANS,pe.SORT,pe.DELIVERY_QUANTITY,bp.CREATION_TIME,
|
||||
bu.NAME unitVal,bc.CUST_NAME custName,pe.IS_PUT_ON,bp.LISTING_TIME,bp.REMOVAL_TIME,
|
||||
bp.wms_code, bcl.name classify_name
|
||||
from BD_PRODUCT bp
|
||||
|
|
Loading…
Reference in New Issue