|
|
@ -17,8 +17,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<result property="customerId" column="customer_id" /> |
|
|
|
<result property="customerName" column="customer_name" /> |
|
|
|
<result property="salesOrderNumber" column="sales_order_number" /> |
|
|
|
<result property="deliveryDate" column="delivery_date" /> |
|
|
|
<result property="customerNumber" column="customer_number" /> |
|
|
|
<result property="materialSum" column="material_sum" /> |
|
|
|
<result property="enterpriseSum" column="enterprise_sum" /> |
|
|
|
<result property="allPriceExcludingTaxRmb" column="all_price_excluding_tax_rmb" /> |
|
|
@ -43,7 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
</resultMap> |
|
|
|
|
|
|
|
<sql id="selectSalesShippingInformationVo"> |
|
|
|
select shipping_information_id, shipping_information_code, sales_order_code, out_order_code, shipping_information_type, shipping_template_type, warehouse_order_type, warehouse_out_type, business_members, customer_id, customer_name, sales_order_number, delivery_date, customer_number, material_sum, enterprise_sum, all_price_excluding_tax_rmb, all_price_excluding_tax_dollar, all_price_includes_tax, planned_delivery_time, acceptance_time, payment_condition, delivery_condition, deliver_time, customer_contact, contact_number, customer_contact_address, customer_contact_billto, contact_number_billto, contact_address_billto, remarks, create_time, create_by, update_by, update_time from sales_shipping_information |
|
|
|
select shipping_information_id, shipping_information_code, sales_order_code, out_order_code, shipping_information_type, shipping_template_type, warehouse_order_type, warehouse_out_type, business_members, customer_id, customer_name, sales_order_number, material_sum, enterprise_sum, all_price_excluding_tax_rmb, all_price_excluding_tax_dollar, all_price_includes_tax, planned_delivery_time, acceptance_time, payment_condition, delivery_condition, deliver_time, customer_contact, contact_number, customer_contact_address, customer_contact_billto, contact_number_billto, contact_address_billto, remarks, create_time, create_by, update_by, update_time from sales_shipping_information |
|
|
|
</sql> |
|
|
|
|
|
|
|
<select id="selectSalesShippingInformationList" parameterType="SalesShippingInformation" resultMap="SalesShippingInformationResult"> |
|
|
@ -79,8 +77,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="customerId != null">customer_id,</if> |
|
|
|
<if test="customerName != null">customer_name,</if> |
|
|
|
<if test="salesOrderNumber != null">sales_order_number,</if> |
|
|
|
<if test="deliveryDate != null">delivery_date,</if> |
|
|
|
<if test="customerNumber != null">customer_number,</if> |
|
|
|
<if test="materialSum != null">material_sum,</if> |
|
|
|
<if test="enterpriseSum != null">enterprise_sum,</if> |
|
|
|
<if test="allPriceExcludingTaxRmb != null">all_price_excluding_tax_rmb,</if> |
|
|
@ -115,8 +111,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="customerId != null">#{customerId},</if> |
|
|
|
<if test="customerName != null">#{customerName},</if> |
|
|
|
<if test="salesOrderNumber != null">#{salesOrderNumber},</if> |
|
|
|
<if test="deliveryDate != null">#{deliveryDate},</if> |
|
|
|
<if test="customerNumber != null">#{customerNumber},</if> |
|
|
|
<if test="materialSum != null">#{materialSum},</if> |
|
|
|
<if test="enterpriseSum != null">#{enterpriseSum},</if> |
|
|
|
<if test="allPriceExcludingTaxRmb != null">#{allPriceExcludingTaxRmb},</if> |
|
|
@ -155,8 +149,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="customerId != null">customer_id = #{customerId},</if> |
|
|
|
<if test="customerName != null">customer_name = #{customerName},</if> |
|
|
|
<if test="salesOrderNumber != null">sales_order_number = #{salesOrderNumber},</if> |
|
|
|
<if test="deliveryDate != null">delivery_date = #{deliveryDate},</if> |
|
|
|
<if test="customerNumber != null">customer_number = #{customerNumber},</if> |
|
|
|
<if test="materialSum != null">material_sum = #{materialSum},</if> |
|
|
|
<if test="enterpriseSum != null">enterprise_sum = #{enterpriseSum},</if> |
|
|
|
<if test="allPriceExcludingTaxRmb != null">all_price_excluding_tax_rmb = #{allPriceExcludingTaxRmb},</if> |
|
|
|