修改查询字段没有值的问题
This commit is contained in:
parent
368538716a
commit
7b7dc23bd9
|
|
@ -174,7 +174,7 @@ public class NuInvoicingCgdMainServiceImpl extends ServiceImpl<NuInvoicingCgdMai
|
||||||
queryWrapper.apply("kcsl <= lower_limit");
|
queryWrapper.apply("kcsl <= lower_limit");
|
||||||
}
|
}
|
||||||
queryWrapper.eq("del_flag","0");
|
queryWrapper.eq("del_flag","0");
|
||||||
queryWrapper.eq("izEnabled","0");
|
queryWrapper.eq("iz_enabled","0");
|
||||||
Page<BlWarehouseMaterialInfo> page = new Page<>(pageNo, pageSize);
|
Page<BlWarehouseMaterialInfo> page = new Page<>(pageNo, pageSize);
|
||||||
List<BlWarehouseMaterialInfo> list = mterialInfoMapper.selectList(page,queryWrapper);
|
List<BlWarehouseMaterialInfo> list = mterialInfoMapper.selectList(page,queryWrapper);
|
||||||
IPage<MaterialInfoEntity> entityPage = new Page<>(page.getCurrent(), page.getSize(), page.getTotal());
|
IPage<MaterialInfoEntity> entityPage = new Page<>(page.getCurrent(), page.getSize(), page.getTotal());
|
||||||
|
|
|
||||||
|
|
@ -177,6 +177,10 @@ public class BlWarehouseMaterialInfo implements Serializable {
|
||||||
private java.lang.String tagType;
|
private java.lang.String tagType;
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private java.lang.String materialImg;
|
private java.lang.String materialImg;
|
||||||
|
@TableField(exist = false)
|
||||||
|
private java.lang.String salesUnitPrice;
|
||||||
|
@TableField(exist = false)
|
||||||
|
private java.lang.String referenceUnitPrice;
|
||||||
|
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private java.lang.String wlParamInfo;//查询物料信息参数,可多个查询
|
private java.lang.String wlParamInfo;//查询物料信息参数,可多个查询
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,8 @@
|
||||||
b.upper_limit,
|
b.upper_limit,
|
||||||
b.lower_limit,
|
b.lower_limit,
|
||||||
b.tag_type,
|
b.tag_type,
|
||||||
|
b.sales_unit_price,
|
||||||
|
b.reference_unit_price,
|
||||||
b.material_img,
|
b.material_img,
|
||||||
c.item_text as tagName
|
c.item_text as tagName
|
||||||
from nu_warehouse_material_info a
|
from nu_warehouse_material_info a
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue