建阳器械问题:

单据无法删除
无法修改价格和采购类型
模板问题
dev_drug
qiuyt 1 month ago
parent 031fcd2dcd
commit b29cd876be

@ -53,7 +53,7 @@ public interface InvProductNewDao extends BaseMapperPlus<InvProductNewDao, InvPr
* @param ids
* @param invSpaceCode
*/
void batchBindSpace(@Param("ids") List<Integer> ids, @Param("invSpaceCode") String invSpaceCode);
void batchBindSpace(@Param("ids") List<Long> ids, @Param("invSpaceCode") String invSpaceCode);
/**
* UDI

@ -0,0 +1,137 @@
package com.glxp.api.res.basic;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class InvProductNewResponse {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
// /**
// * UDI码
// */
// @TableField(value = "code")
// private String code;
// /**
// * 订单号外键
// */
// @TableField(value = "orderId")
// private String orderId;
/**
* ID
*/
@TableField(value = "relIdFk")
private Long relIdFk;
/**
*
*/
@TableField(value = "nameCode")
private String nameCode;
/**
*
*/
@TableField(value = "batchNo")
private String batchNo;
/**
*
*/
@TableField(value = "productionDate")
private String productionDate;
/**
*
*/
@TableField(value = "expireDate")
private String expireDate;
// /**
// * 序列号
// */
// @TableField(value = "serialNo")
// private String serialNo;
/**
*
*/
@TableField(value = "supId")
private String supId;
// /**
// * 扫码数量
// */
// @TableField(value = "`count`")
// private Integer count;
/**
*
*/
@TableField(value = "reCount")
private Integer reCount;
@TableField(value = "inCount")
private Integer inCount;
@TableField(value = "outCount")
private Integer outCount;
/**
*
*/
@TableField(value = "deptCode")
private String deptCode;
/**
*
*/
@TableField(value = "invCode")
private String invCode;
/**
*
*/
@TableField(value = "invSpaceCode")
private String invSpaceCode;
// /**
// * 采购类型
// */
// @TableField(value = "purchaseType")
// private Integer purchaseType;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
@TableField(value = "mainAction",select = false)
private String mainAction;
// @TableField(value = "action")
// private String action;
/**
*
*/
@TableField(value = "price")
private BigDecimal price;
/**
*
*/
@TableField(value = "inBatchNo")
private String inBatchNo;
}

@ -58,7 +58,7 @@ public class InvPlaceServiceImpl implements InvPlaceService {
.in("code", bindInvSpaceRequest.getCodeArray())
);
if (CollUtil.isNotEmpty(list)) {
List<Integer> ids = list.stream().map(InvProductNewVo::getId).collect(Collectors.toList());
List<Long> ids = list.stream().map(InvProductNewVo::getId).collect(Collectors.toList());
log.info("本次绑定货位的库存详情数量为:{} 条", ids.size());
invProductNewDao.batchBindSpace(ids, bindInvSpaceRequest.getInvSpaceCode());
} else {

@ -13,7 +13,7 @@ import java.util.Date;
@TableName("inv_product")
public class InvProductNewVo {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
private Long id;
// /**
// * UDI码

@ -553,4 +553,13 @@
</if>
</where>
</select>
<select id="selectOrderInfo" resultType="com.glxp.api.vo.basic.InvProductNewVo">
select t1.deptCode,t1.invCode,t1.mainAction,t2.* from io_order t1 inner join io_order_detail_biz t2 on t1.billNo = t2.orderIdFk
<where>
t2.orderIdFk = #{orderIdFk}
<if test="price != null and price != ''">
AND t2.price = #{price}
</if>
</where>
</select>
</mapper>

Loading…
Cancel
Save