|
|
@ -51,7 +51,7 @@ |
|
|
|
tax_rate, specification_model, metering_unit, unit_price, tax_logo, hide_the_logo, |
|
|
|
tax_rate, specification_model, metering_unit, unit_price, tax_logo, hide_the_logo, |
|
|
|
enjoy_preferential_policies, tax_class_code, tax_classification_name, preferential_policies_type,zzstsgl, |
|
|
|
enjoy_preferential_policies, tax_class_code, tax_classification_name, preferential_policies_type,zzstsgl, |
|
|
|
user_id, create_time, modify_time, modify_user_id, group_id,enterprise_name,data_source, |
|
|
|
user_id, create_time, modify_time, modify_user_id, group_id,enterprise_name,data_source, |
|
|
|
matching_state,data_state,tax_class_abbreviation,description,collect_ident,cpy,bmb_bbh,jdc,wlflbm,wlflmc,ent_id,tswl |
|
|
|
matching_state,data_state,tax_class_abbreviation,description,collect_ident,cpy,bmb_bbh,jdc,wlflbm,wlflmc,ent_id,tswl,invoice_name |
|
|
|
</sql> |
|
|
|
</sql> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -357,6 +357,10 @@ |
|
|
|
<if test="commodityCode.tswl != null"> |
|
|
|
<if test="commodityCode.tswl != null"> |
|
|
|
tswl = #{commodityCode.tswl,jdbcType=VARCHAR}, |
|
|
|
tswl = #{commodityCode.tswl,jdbcType=VARCHAR}, |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="commodityCode.invoiceName != null"> |
|
|
|
|
|
|
|
invoice_name = #{commodityCode.invoiceName,jdbcType=VARCHAR}, |
|
|
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
|
|
|
|
</set> |
|
|
|
</set> |
|
|
|
<where> |
|
|
|
<where> |
|
|
|
<if test="commodityCode.id != null and commodityCode.id != ''"> |
|
|
|
<if test="commodityCode.id != null and commodityCode.id != ''"> |
|
|
@ -619,7 +623,7 @@ |
|
|
|
#{tswl,jdbcType=VARCHAR}, |
|
|
|
#{tswl,jdbcType=VARCHAR}, |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="invoiceName != null"> |
|
|
|
<if test="invoiceName != null"> |
|
|
|
invoiceName, |
|
|
|
#{invoiceName,jdbcType=VARCHAR}, |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
</trim> |
|
|
|
</trim> |
|
|
|
</insert> |
|
|
|
</insert> |
|
|
@ -740,6 +744,9 @@ |
|
|
|
<if test="tswl != null"> |
|
|
|
<if test="tswl != null"> |
|
|
|
tswl, |
|
|
|
tswl, |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="invoiceName != null"> |
|
|
|
|
|
|
|
invoice_name, |
|
|
|
|
|
|
|
</if> |
|
|
|
</trim> |
|
|
|
</trim> |
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|
|
|
<if test="id != null"> |
|
|
|
<if test="id != null"> |
|
|
@ -858,6 +865,9 @@ |
|
|
|
<if test="tswl != null"> |
|
|
|
<if test="tswl != null"> |
|
|
|
#{tswl,jdbcType=VARCHAR}, |
|
|
|
#{tswl,jdbcType=VARCHAR}, |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="invoiceName != null"> |
|
|
|
|
|
|
|
#{invoice_name,jdbcType=VARCHAR}, |
|
|
|
|
|
|
|
</if> |
|
|
|
</trim> |
|
|
|
</trim> |
|
|
|
ON DUPLICATE KEY UPDATE |
|
|
|
ON DUPLICATE KEY UPDATE |
|
|
|
<trim suffixOverrides=","> |
|
|
|
<trim suffixOverrides=","> |
|
|
@ -971,6 +981,9 @@ |
|
|
|
<if test="tswl != null"> |
|
|
|
<if test="tswl != null"> |
|
|
|
tswl = VALUES(tswl), |
|
|
|
tswl = VALUES(tswl), |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="invoiceName != null"> |
|
|
|
|
|
|
|
invoice_name = VALUES(invoice_name), |
|
|
|
|
|
|
|
</if> |
|
|
|
</trim> |
|
|
|
</trim> |
|
|
|
</insert> |
|
|
|
</insert> |
|
|
|
|
|
|
|
|
|
|
|