新增产品属性

dev_price
anthonywj 1 year ago
parent de3e184f9c
commit ef9f01c674

@ -710,7 +710,7 @@ public class UdiRelevanceController extends BaseController {
@AuthRuleAnnotation("") @AuthRuleAnnotation("")
@PostMapping("/udi/udirel/updateById") @PostMapping("/udi/udirel/updateById")
@Log(title = "单据管理", businessType = BusinessType.UPDATE) @Log(title = "入院物资维护", businessType = BusinessType.UPDATE)
public BaseResponse updateById(@RequestBody UdiProductEntity udiProductEntity, BindingResult bindingResult) { public BaseResponse updateById(@RequestBody UdiProductEntity udiProductEntity, BindingResult bindingResult) {
if (bindingResult.hasErrors()) { if (bindingResult.hasErrors()) {
@ -720,6 +720,8 @@ public class UdiRelevanceController extends BaseController {
UdiRelevanceEntity udiRelevanceEntity = new UdiRelevanceEntity(); UdiRelevanceEntity udiRelevanceEntity = new UdiRelevanceEntity();
udiRelevanceEntity.setId(udiProductEntity.getUid()); udiRelevanceEntity.setId(udiProductEntity.getUid());
udiRelevanceEntity.setGroupBuy(IntUtil.value(udiProductEntity.getGroupBuy())); udiRelevanceEntity.setGroupBuy(IntUtil.value(udiProductEntity.getGroupBuy()));
udiRelevanceEntity.setPurType(udiProductEntity.getPurType());
udiRelevanceEntity.setAttributeType(udiProductEntity.getAttributeType());
boolean b = udiRelevanceService.updateUdiRelevance(udiRelevanceEntity); boolean b = udiRelevanceService.updateUdiRelevance(udiRelevanceEntity);
if (udiProductEntity.getRelSupId() != null) { if (udiProductEntity.getRelSupId() != null) {
UdiRlSupEntity udiRlSupEntity = new UdiRlSupEntity(); UdiRlSupEntity udiRlSupEntity = new UdiRlSupEntity();

@ -227,6 +227,7 @@ public class ThrProductsAddDiController {
udiProductEntity.setGroupBuy(thrProductsAddDiResponse.getGroupBuy()); udiProductEntity.setGroupBuy(thrProductsAddDiResponse.getGroupBuy());
udiRelevanceEntity.setGroupBuy(thrProductsAddDiResponse.getGroupBuy()); udiRelevanceEntity.setGroupBuy(thrProductsAddDiResponse.getGroupBuy());
udiRelevanceEntity.setPurType(thrProductsAddDiResponse.getPurType()); udiRelevanceEntity.setPurType(thrProductsAddDiResponse.getPurType());
udiRelevanceEntity.setAttributeType(thrProductsAddDiResponse.getAttributeType());
udiProductEntity.setNameCode(null); udiProductEntity.setNameCode(null);
udiProductService.updateUdiInfoByUuid(udiProductEntity); udiProductService.updateUdiInfoByUuid(udiProductEntity);
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity(); UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();

@ -1,5 +1,6 @@
package com.glxp.api.entity.basic; package com.glxp.api.entity.basic;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data; import lombok.Data;
import java.util.Date; import java.util.Date;
@ -98,5 +99,6 @@ public class UdiProductEntity {
private Boolean groupBuy; private Boolean groupBuy;
private Long uid; private Long uid;
private Integer purType;
private Integer attributeType;
} }

@ -101,6 +101,14 @@ public class UdiRelevanceEntity {
*/ */
@TableField(value = "purType") @TableField(value = "purType")
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
@TableField(value = "attributeType")
private Integer attributeType;
/** /**
* 使 * 使
*/ */

@ -290,7 +290,11 @@ public class ThrProductsAddDiEntity {
@ApiModelProperty(value = "采购类型") @ApiModelProperty(value = "采购类型")
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
@TableField(value = "attributeType")
private Integer attributeType;
/** /**
* 12 * 12
*/ */

@ -1,5 +1,6 @@
package com.glxp.api.req.basic; package com.glxp.api.req.basic;
import com.baomidou.mybatisplus.annotation.TableField;
import com.glxp.api.util.page.ListPageRequest; import com.glxp.api.util.page.ListPageRequest;
import lombok.Data; import lombok.Data;
@ -54,6 +55,10 @@ public class CompanyProductRelevanceRequest extends ListPageRequest {
* 1:23 * 1:23
*/ */
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
private String corpId; private String corpId;
private String billType; private String billType;

@ -49,6 +49,10 @@ public class FilterUdiInfoRequest extends ListPageRequest {
* 1:23 * 1:23
*/ */
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
private String corpId; private String corpId;
private String billType; private String billType;

@ -50,6 +50,10 @@ public class FilterUdiRelRequest extends ListPageRequest {
* 1:23 * 1:23
*/ */
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
private String corpId; private String corpId;
private String billType; private String billType;

@ -23,4 +23,8 @@ public class SupplementRequest {
private String price; private String price;
private Boolean groupBuy; private Boolean groupBuy;
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
} }

@ -35,6 +35,10 @@ public class UdiRelevanceRequest {
* 1:23 * 1:23
*/ */
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
private String supName; private String supName;
private String originUuid; private String originUuid;
private String price; private String price;

@ -26,6 +26,10 @@ public class UdiRelevanceSaveRequest {
* 1:23 * 1:23
*/ */
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
private Boolean useMuti; private Boolean useMuti;
private Integer useNum; private Integer useNum;
private String supName; private String supName;

@ -51,6 +51,10 @@ public class AddThrDiProductsRequest {
private String deviceRecordKey; private String deviceRecordKey;
private Boolean groupBuy; private Boolean groupBuy;
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
} }

@ -62,6 +62,10 @@ public class CompanyProductRelevanceResponse {
* 1:23 * 1:23
*/ */
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
private String scbssfbhph; private String scbssfbhph;
private String scbssfbhxlh; private String scbssfbhxlh;
private String scbssfbhscrq; private String scbssfbhscrq;

@ -26,6 +26,10 @@ public class UdiRelevanceResponse {
* 1:23 * 1:23
*/ */
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
private Boolean useMuti; private Boolean useMuti;
private Integer useNum; private Integer useNum;
private String supName; private String supName;

@ -63,7 +63,10 @@ public class UdiRlSupResponse {
* 1:23 * 1:23
*/ */
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
private String scbssfbhph; private String scbssfbhph;
private String scbssfbhxlh; private String scbssfbhxlh;
private String scbssfbhscrq; private String scbssfbhscrq;

@ -64,6 +64,10 @@ public class UdiInfoResponse {
* 1:23 * 1:23
*/ */
private Integer purType; private Integer purType;
/**
* 0:1)23.
*/
private Integer attributeType;
private boolean isDisable; private boolean isDisable;
private boolean useMuti; private boolean useMuti;

@ -132,7 +132,7 @@ public class ThrProductsAddDiService extends ServiceImpl<ThrProductsAddDiDao, Th
thrProductsAddDiEntity.setCpms(thrDiProductsRequest.getCpms()); thrProductsAddDiEntity.setCpms(thrDiProductsRequest.getCpms());
thrProductsAddDiEntity.setPrice(thrDiProductsRequest.getPrice()); thrProductsAddDiEntity.setPrice(thrDiProductsRequest.getPrice());
thrProductsAddDiEntity.setPurType(thrDiProductsRequest.getPurType()); thrProductsAddDiEntity.setPurType(thrDiProductsRequest.getPurType());
thrProductsAddDiEntity.setAttributeType(thrDiProductsRequest.getAttributeType());
thrProductsAddDiEntity.setCreateTime(date); thrProductsAddDiEntity.setCreateTime(date);
thrProductsAddDiEntity.setUpdateTime(new Date()); thrProductsAddDiEntity.setUpdateTime(new Date());
thrProductsAddDiEntity.setStatus(1); //.. thrProductsAddDiEntity.setStatus(1); //..
@ -159,6 +159,7 @@ public class ThrProductsAddDiService extends ServiceImpl<ThrProductsAddDiDao, Th
udiInfoResponse.setManufactory(thrProductsAddDiEntity.getManufactory()); udiInfoResponse.setManufactory(thrProductsAddDiEntity.getManufactory());
udiInfoResponse.setPrice(thrProductsAddDiEntity.getPrice()); udiInfoResponse.setPrice(thrProductsAddDiEntity.getPrice());
udiInfoResponse.setPurType(thrProductsAddDiEntity.getPurType()); udiInfoResponse.setPurType(thrProductsAddDiEntity.getPurType());
udiInfoResponse.setAttributeType(thrProductsAddDiEntity.getAttributeType());
udiInfoResponse.setBasicPrductRemak1(thrProductsAddDiEntity.getBasicPrductRemak1()); udiInfoResponse.setBasicPrductRemak1(thrProductsAddDiEntity.getBasicPrductRemak1());
udiInfoResponse.setBasicPrductRemak2(thrProductsAddDiEntity.getBasicPrductRemak2()); udiInfoResponse.setBasicPrductRemak2(thrProductsAddDiEntity.getBasicPrductRemak2());

@ -99,7 +99,7 @@
customer_info.companyName, customer_info.companyName,
basic_udirel.mainId, basic_udirel.mainId,
basic_udirel.isAdavence, basic_udirel.isAdavence,
basic_udirel.purType, basic_udirel.purType,basic_udirel.attributeType,
basic_products.scbssfbhph, basic_products.scbssfbhph,
basic_products.scbssfbhxlh, basic_products.scbssfbhxlh,
basic_products.scbssfbhscrq, basic_products.scbssfbhscrq,

@ -962,7 +962,7 @@
INTO basic_udirel INTO basic_udirel
(id, uuid, mainId, thirdId, thirdId1, thirdId2, thirdId3, thirdId4, udplatCode, isUseDy, isDisable, (id, uuid, mainId, thirdId, thirdId1, thirdId2, thirdId3, thirdId4, udplatCode, isUseDy, isDisable,
isLock, isLock,
lockStatus, isAdavence, purType, useMuti, useNum, supName, createTime, updateTime, modifyTime, lockStatus, isAdavence, purType, attributeType,useMuti, useNum, supName, createTime, updateTime, modifyTime,
createUser, createUser,
updateUser, updateUser,
remark, useExpireTime, dispatch, groupBuy, needCert) remark, useExpireTime, dispatch, groupBuy, needCert)
@ -979,7 +979,7 @@
#{isDisable}, #{isDisable},
#{isLock}, #{isLock},
#{lockStatus}, #{lockStatus},
#{isAdavence}, #{purType}, #{isAdavence}, #{purType},#{attributeType},
#{useMuti}, #{useMuti},
#{useNum}, #{useNum},
#{supName}, #{supName},
@ -998,7 +998,7 @@
INTO basic_udirel INTO basic_udirel
(id, uuid, mainId, thirdId, thirdId1, thirdId2, thirdId3, thirdId4, udplatCode, isUseDy, isDisable, (id, uuid, mainId, thirdId, thirdId1, thirdId2, thirdId3, thirdId4, udplatCode, isUseDy, isDisable,
isLock, isLock,
lockStatus, isAdavence, purType, useMuti, useNum, supName, createTime, updateTime, modifyTime, lockStatus, isAdavence, purType,attributeType, useMuti, useNum, supName, createTime, updateTime, modifyTime,
createUser, createUser,
updateUser, updateUser,
remark, useExpireTime, dispatch, groupBuy, needCert) remark, useExpireTime, dispatch, groupBuy, needCert)
@ -1015,7 +1015,7 @@
#{isDisable}, #{isDisable},
#{isLock}, #{isLock},
#{lockStatus}, #{lockStatus},
#{isAdavence}, #{purType}, #{isAdavence}, #{purType},#{attributeType},
#{useMuti}, #{useMuti},
#{useNum}, #{useNum},
#{supName}, #{supName},
@ -1092,6 +1092,10 @@
<if test="purType != null"> <if test="purType != null">
purType=#{purType}, purType=#{purType},
</if> </if>
<if test="attributeType != null">
attributeType=#{attributeType},
</if>
<if test="useMuti != null"> <if test="useMuti != null">
useMuti=#{useMuti}, useMuti=#{useMuti},
</if> </if>
@ -1171,7 +1175,7 @@
into basic_udirel into basic_udirel
(id, uuid, mainId, thirdId, thirdId1, thirdId2, thirdId3, thirdId4, udplatCode, isUseDy, isDisable, (id, uuid, mainId, thirdId, thirdId1, thirdId2, thirdId3, thirdId4, udplatCode, isUseDy, isDisable,
isLock, isLock,
lockStatus, isAdavence, purType, useMuti, useNum, supName, createTime, updateTime, modifyTime, lockStatus, isAdavence, purType, attributeType,useMuti, useNum, supName, createTime, updateTime, modifyTime,
createUser, createUser,
updateUser, updateUser,
remark, useExpireTime, dispatch, groupBuy, needCert) remark, useExpireTime, dispatch, groupBuy, needCert)
@ -1191,7 +1195,7 @@
#{item.isDisable}, #{item.isDisable},
#{item.isLock}, #{item.isLock},
#{item.lockStatus}, #{item.lockStatus},
#{item.isAdavence}, #{item.purType}, #{item.isAdavence}, #{item.purType},#{item.attributeType},
#{item.useMuti}, #{item.useMuti},
#{item.useNum}, #{item.useNum},
#{item.supName}, #{item.supName},

@ -46,7 +46,7 @@
basic_udirel.lockStatus, basic_udirel.lockStatus,
basic_udirel.mainId, basic_udirel.mainId,
basic_udirel.isAdavence, basic_udirel.isAdavence,
basic_udirel.purType, basic_udirel.purType,basic_udirel.attributeType,
basic_udirel.lowStockNum, basic_udirel.lowStockNum,
basic_udirel.overStockNum, basic_udirel.overStockNum,
basic_udirel.recentDateTime, basic_udirel.recentDateTime,

@ -16,7 +16,7 @@
qxlb, tyshxydm, zczbhhzbapzbh, qxlb, tyshxydm, zczbhhzbapzbh,
ylqxzcrbarmc, ylqxzcrbarywmc, updateTime, ylqxzcrbarmc, ylqxzcrbarywmc, updateTime,
supName, model, `standard`, supName, model, `standard`,
qtbm, zczyxqz, relId, type, deviceRecordKey, groupBuy, purType) qtbm, zczyxqz, relId, type, deviceRecordKey, groupBuy, purType,attributeType)
values values
<foreach collection="list" index="index" item="item" separator=","> <foreach collection="list" index="index" item="item" separator=",">
(#{item.uuid}, (#{item.uuid},
@ -42,7 +42,7 @@
, #{item.flbm}, #{item.qxlb}, #{item.tyshxydm}, #{item.zczbhhzbapzbh} , #{item.flbm}, #{item.qxlb}, #{item.tyshxydm}, #{item.zczbhhzbapzbh}
, #{item.ylqxzcrbarmc}, #{item.ylqxzcrbarywmc}, #{item.updateTime}, #{item.supName}, #{item.model} , #{item.ylqxzcrbarmc}, #{item.ylqxzcrbarywmc}, #{item.updateTime}, #{item.supName}, #{item.model}
, #{item.standard}, #{item.qtbm}, #{item.standard}, #{item.zczyxqz}, #{item.type}, , #{item.standard}, #{item.qtbm}, #{item.standard}, #{item.zczyxqz}, #{item.type},
#{item.deviceRecordKey}, #{item.groupBuy}, #{item.purType}) #{item.deviceRecordKey}, #{item.groupBuy}, #{item.purType},#{item.attributeType})
</foreach> </foreach>
</insert> </insert>
@ -130,6 +130,9 @@
<if test="purType != null"> <if test="purType != null">
`purType`=#{purType}, `purType`=#{purType},
</if> </if>
<if test="attributeType != null">
`attributeType`=#{attributeType},
</if>
</trim> </trim>
WHERE id = #{id} WHERE id = #{id}
</update> </update>

@ -674,8 +674,10 @@ CALL Pro_Temp_ColumnWork('sys_menu_help', 'urlPath', 'varchar(255)', 1);
CALL Pro_Temp_ColumnWork('thr_corp', 'kfdm', 'varchar(255)', 1); CALL Pro_Temp_ColumnWork('thr_corp', 'kfdm', 'varchar(255)', 1);
CALL Pro_Temp_ColumnWork('basic_udirel', 'purType', 'tinyint', 1); CALL Pro_Temp_ColumnWork('basic_udirel', 'purType', 'tinyint', 1);
CALL Pro_Temp_ColumnWork('basic_udirel', 'attributeType', 'tinyint', 1);
CALL Pro_Temp_ColumnWork('thr_products_add_di', 'purType', 'tinyint', 1); CALL Pro_Temp_ColumnWork('thr_products_add_di', 'purType', 'tinyint', 1);
CALL Pro_Temp_ColumnWork('thr_products_add_di', 'attributeType', 'tinyint', 1);
INSERT ignore INTO basic_product_set(`id`, `parmName`, `parmKey`, `enable`, `supSelect`, `supAdd`, `localAdd`, `remark`, INSERT ignore INTO basic_product_set(`id`, `parmName`, `parmKey`, `enable`, `supSelect`, `supAdd`, `localAdd`, `remark`,
`sort`, `localEdit`) `sort`, `localEdit`)
VALUES (33, '采购类型', 'purType', 1, 1, 1, 0, '采购类型是否必填字段', 65, 1); VALUES (33, '采购类型', 'purType', 1, 1, 1, 0, '采购类型是否必填字段', 65, 1);

Loading…
Cancel
Save