Browse Source

显示出箱子的长宽高体积

master
han\hanst 4 weeks ago
parent
commit
417921d648
  1. 4
      src/main/java/com/xujie/sys/modules/part/vo/PartInformationVo.java
  2. 2
      src/main/resources/mapper/part/PartInformationMapper.xml

4
src/main/java/com/xujie/sys/modules/part/vo/PartInformationVo.java

@ -139,4 +139,8 @@ public class PartInformationVo extends PartInformationEntity {
* 批量查询物料编码列表
*/
private List<String> partNos;
private String boxLength;
private String boxWidth;
private String boxHeight;
}

2
src/main/resources/mapper/part/PartInformationMapper.xml

@ -110,7 +110,7 @@
a.actual_cost,
a.actual_cost_currency,
a.hsCode, a.hsCodeDesc,
a.packageNo,a.sku
a.packageNo,a.sku,a.box_length as boxLength,a.box_width as boxWidth,a.box_height as boxHeight
FROM part a
left join ecss_hsCode h on a.hsCodeDesc=h.hsCodeDesc and a.site=h.site
<where>

Loading…
Cancel
Save