|
...
|
...
|
@@ -38,10 +38,10 @@ |
|
|
|
WHERE
|
|
|
|
order_id like CONCAT( #{productType}, '%')
|
|
|
|
</select>
|
|
|
|
<select id="selectOneById" resultType="org.jeecg.modules.erp.order_form.entity.TblOrderForm">
|
|
|
|
SELECT
|
|
|
|
<select id="selectOneById" resultType="org.jeecg.modules.erp.order_form.form.TblOrderFormModel">
|
|
|
|
SELECT
|
|
|
|
a.id,a.create_by,a.create_time,a.update_by,a.update_time,a.sys_org_code,a.order_id,a.order_company,
|
|
|
|
a.work_order,a.product_name,b.product_type_name as product_type,a.order_date,a.designer,
|
|
|
|
a.work_order,a.product_name,b.product_type_id as product_type ,b.product_type_name,a.order_date,a.designer,
|
|
|
|
a.dispatch_date,a.delivery_date,a.quantity,a.total_working_hours,a.dispatched_working_hours,a.STATUS,
|
|
|
|
a.finish_date,a.dispatch_status,a.product_design_status,a.verify_status,a.verify_result,a.delivery_date1,a.pics,a.pics2
|
|
|
|
FROM
|
|
...
|
...
|
@@ -106,4 +106,10 @@ |
|
|
|
</if>
|
|
|
|
order by a.create_time desc
|
|
|
|
</select>
|
|
|
|
<select id="getOrderCompanyList" resultType="java.lang.String">
|
|
|
|
SELECT DISTINCT order_company from tbl_order_form
|
|
|
|
</select>
|
|
|
|
<select id="getProductNameList" resultType="java.lang.String">
|
|
|
|
SELECT DISTINCT product_name from tbl_order_form
|
|
|
|
</select>
|
|
|
|
</mapper> |
|
|
\ No newline at end of file |
...
|
...
|
|