给系统配置增加客户静态单价启用标记
This commit is contained in:
@@ -45,6 +45,8 @@ public class SystemConfig {
|
||||
|
||||
private String zeroChangeAmountFlag;
|
||||
|
||||
private String customerStaticPriceFlag;
|
||||
|
||||
private Long tenantId;
|
||||
|
||||
private String deleteFlag;
|
||||
@@ -225,6 +227,14 @@ public class SystemConfig {
|
||||
this.zeroChangeAmountFlag = zeroChangeAmountFlag == null ? null : zeroChangeAmountFlag.trim();
|
||||
}
|
||||
|
||||
public String getCustomerStaticPriceFlag() {
|
||||
return customerStaticPriceFlag;
|
||||
}
|
||||
|
||||
public void setCustomerStaticPriceFlag(String customerStaticPriceFlag) {
|
||||
this.customerStaticPriceFlag = customerStaticPriceFlag == null ? null : customerStaticPriceFlag.trim();
|
||||
}
|
||||
|
||||
public Long getTenantId() {
|
||||
return tenantId;
|
||||
}
|
||||
|
||||
@@ -1634,6 +1634,76 @@ public class SystemConfigExample {
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagIsNull() {
|
||||
addCriterion("customer_static_price_flag is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagIsNotNull() {
|
||||
addCriterion("customer_static_price_flag is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagEqualTo(String value) {
|
||||
addCriterion("customer_static_price_flag =", value, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagNotEqualTo(String value) {
|
||||
addCriterion("customer_static_price_flag <>", value, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagGreaterThan(String value) {
|
||||
addCriterion("customer_static_price_flag >", value, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("customer_static_price_flag >=", value, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagLessThan(String value) {
|
||||
addCriterion("customer_static_price_flag <", value, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagLessThanOrEqualTo(String value) {
|
||||
addCriterion("customer_static_price_flag <=", value, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagLike(String value) {
|
||||
addCriterion("customer_static_price_flag like", value, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagNotLike(String value) {
|
||||
addCriterion("customer_static_price_flag not like", value, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagIn(List<String> values) {
|
||||
addCriterion("customer_static_price_flag in", values, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagNotIn(List<String> values) {
|
||||
addCriterion("customer_static_price_flag not in", values, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagBetween(String value1, String value2) {
|
||||
addCriterion("customer_static_price_flag between", value1, value2, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCustomerStaticPriceFlagNotBetween(String value1, String value2) {
|
||||
addCriterion("customer_static_price_flag not between", value1, value2, "customerStaticPriceFlag");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTenantIdIsNull() {
|
||||
addCriterion("tenant_id is null");
|
||||
return (Criteria) this;
|
||||
|
||||
@@ -619,6 +619,23 @@ public class SystemConfigService {
|
||||
return moveAvgPriceFlag;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取客户静态单价开关
|
||||
* @return
|
||||
* @throws Exception
|
||||
*/
|
||||
public boolean getCustomerStaticPriceFlag() throws Exception {
|
||||
boolean customerStaticPriceFlag = false;
|
||||
List<SystemConfig> list = getSystemConfig();
|
||||
if(list.size()>0) {
|
||||
String flag = list.get(0).getCustomerStaticPriceFlag();
|
||||
if(("1").equals(flag)) {
|
||||
customerStaticPriceFlag = true;
|
||||
}
|
||||
}
|
||||
return customerStaticPriceFlag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Excel导出统一方法
|
||||
* @param title
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
<result column="move_avg_price_flag" jdbcType="VARCHAR" property="moveAvgPriceFlag" />
|
||||
<result column="audit_print_flag" jdbcType="VARCHAR" property="auditPrintFlag" />
|
||||
<result column="zero_change_amount_flag" jdbcType="VARCHAR" property="zeroChangeAmountFlag" />
|
||||
<result column="customer_static_price_flag" jdbcType="VARCHAR" property="customerStaticPriceFlag" />
|
||||
<result column="tenant_id" jdbcType="BIGINT" property="tenantId" />
|
||||
<result column="delete_flag" jdbcType="VARCHAR" property="deleteFlag" />
|
||||
</resultMap>
|
||||
@@ -90,7 +91,8 @@
|
||||
sale_agreement, depot_flag, customer_flag, minus_stock_flag, purchase_by_sale_flag,
|
||||
multi_level_approval_flag, multi_bill_type, force_approval_flag, update_unit_price_flag,
|
||||
over_link_bill_flag, in_out_manage_flag, multi_account_flag, move_avg_price_flag,
|
||||
audit_print_flag, zero_change_amount_flag, tenant_id, delete_flag
|
||||
audit_print_flag, zero_change_amount_flag, customer_static_price_flag, tenant_id,
|
||||
delete_flag
|
||||
</sql>
|
||||
<select id="selectByExample" parameterType="com.jsh.erp.datasource.entities.SystemConfigExample" resultMap="BaseResultMap">
|
||||
select
|
||||
@@ -131,7 +133,8 @@
|
||||
force_approval_flag, update_unit_price_flag,
|
||||
over_link_bill_flag, in_out_manage_flag, multi_account_flag,
|
||||
move_avg_price_flag, audit_print_flag, zero_change_amount_flag,
|
||||
tenant_id, delete_flag)
|
||||
customer_static_price_flag, tenant_id, delete_flag
|
||||
)
|
||||
values (#{id,jdbcType=BIGINT}, #{companyName,jdbcType=VARCHAR}, #{companyContacts,jdbcType=VARCHAR},
|
||||
#{companyAddress,jdbcType=VARCHAR}, #{companyTel,jdbcType=VARCHAR}, #{companyFax,jdbcType=VARCHAR},
|
||||
#{companyPostCode,jdbcType=VARCHAR}, #{saleAgreement,jdbcType=VARCHAR}, #{depotFlag,jdbcType=VARCHAR},
|
||||
@@ -140,7 +143,8 @@
|
||||
#{forceApprovalFlag,jdbcType=VARCHAR}, #{updateUnitPriceFlag,jdbcType=VARCHAR},
|
||||
#{overLinkBillFlag,jdbcType=VARCHAR}, #{inOutManageFlag,jdbcType=VARCHAR}, #{multiAccountFlag,jdbcType=VARCHAR},
|
||||
#{moveAvgPriceFlag,jdbcType=VARCHAR}, #{auditPrintFlag,jdbcType=VARCHAR}, #{zeroChangeAmountFlag,jdbcType=VARCHAR},
|
||||
#{tenantId,jdbcType=BIGINT}, #{deleteFlag,jdbcType=VARCHAR})
|
||||
#{customerStaticPriceFlag,jdbcType=VARCHAR}, #{tenantId,jdbcType=BIGINT}, #{deleteFlag,jdbcType=VARCHAR}
|
||||
)
|
||||
</insert>
|
||||
<insert id="insertSelective" parameterType="com.jsh.erp.datasource.entities.SystemConfig">
|
||||
insert into jsh_system_config
|
||||
@@ -211,6 +215,9 @@
|
||||
<if test="zeroChangeAmountFlag != null">
|
||||
zero_change_amount_flag,
|
||||
</if>
|
||||
<if test="customerStaticPriceFlag != null">
|
||||
customer_static_price_flag,
|
||||
</if>
|
||||
<if test="tenantId != null">
|
||||
tenant_id,
|
||||
</if>
|
||||
@@ -285,6 +292,9 @@
|
||||
<if test="zeroChangeAmountFlag != null">
|
||||
#{zeroChangeAmountFlag,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="customerStaticPriceFlag != null">
|
||||
#{customerStaticPriceFlag,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="tenantId != null">
|
||||
#{tenantId,jdbcType=BIGINT},
|
||||
</if>
|
||||
@@ -368,6 +378,9 @@
|
||||
<if test="record.zeroChangeAmountFlag != null">
|
||||
zero_change_amount_flag = #{record.zeroChangeAmountFlag,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.customerStaticPriceFlag != null">
|
||||
customer_static_price_flag = #{record.customerStaticPriceFlag,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.tenantId != null">
|
||||
tenant_id = #{record.tenantId,jdbcType=BIGINT},
|
||||
</if>
|
||||
@@ -403,6 +416,7 @@
|
||||
move_avg_price_flag = #{record.moveAvgPriceFlag,jdbcType=VARCHAR},
|
||||
audit_print_flag = #{record.auditPrintFlag,jdbcType=VARCHAR},
|
||||
zero_change_amount_flag = #{record.zeroChangeAmountFlag,jdbcType=VARCHAR},
|
||||
customer_static_price_flag = #{record.customerStaticPriceFlag,jdbcType=VARCHAR},
|
||||
tenant_id = #{record.tenantId,jdbcType=BIGINT},
|
||||
delete_flag = #{record.deleteFlag,jdbcType=VARCHAR}
|
||||
<if test="_parameter != null">
|
||||
@@ -475,6 +489,9 @@
|
||||
<if test="zeroChangeAmountFlag != null">
|
||||
zero_change_amount_flag = #{zeroChangeAmountFlag,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="customerStaticPriceFlag != null">
|
||||
customer_static_price_flag = #{customerStaticPriceFlag,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="tenantId != null">
|
||||
tenant_id = #{tenantId,jdbcType=BIGINT},
|
||||
</if>
|
||||
@@ -507,6 +524,7 @@
|
||||
move_avg_price_flag = #{moveAvgPriceFlag,jdbcType=VARCHAR},
|
||||
audit_print_flag = #{auditPrintFlag,jdbcType=VARCHAR},
|
||||
zero_change_amount_flag = #{zeroChangeAmountFlag,jdbcType=VARCHAR},
|
||||
customer_static_price_flag = #{customerStaticPriceFlag,jdbcType=VARCHAR},
|
||||
tenant_id = #{tenantId,jdbcType=BIGINT},
|
||||
delete_flag = #{deleteFlag,jdbcType=VARCHAR}
|
||||
where id = #{id,jdbcType=BIGINT}
|
||||
|
||||
Reference in New Issue
Block a user