|
@@ -805,7 +805,10 @@
|
|
|
a.real_create,
|
|
|
a.proc_ins_id,
|
|
|
a.process_definition_id,
|
|
|
- a.signature_annotator_status
|
|
|
+ a.signature_annotator_status,
|
|
|
+ a.audit_fees,
|
|
|
+ a.industry,
|
|
|
+ a.business_objects
|
|
|
from
|
|
|
cw_project_report a
|
|
|
left join
|
|
@@ -816,9 +819,32 @@
|
|
|
|
|
|
<select id="getReportInfoByNoList" resultType="com.jeeplus.finance.projectReport.domain.CwProjectReport">
|
|
|
select
|
|
|
- cpr.*,cw_prnl.report_no as "reportNo"
|
|
|
+ a.id,
|
|
|
+ a.create_by_id as createById,
|
|
|
+ a.create_time,
|
|
|
+ a.update_by_id,
|
|
|
+ a.update_time,
|
|
|
+ a.del_flag,
|
|
|
+ a.remarks,
|
|
|
+ a.status,
|
|
|
+ a.document_no,
|
|
|
+ a.project_report_number,
|
|
|
+ a.project_id,
|
|
|
+ a.office_id,
|
|
|
+ a.signature_type,
|
|
|
+ a.signature_annotator1,
|
|
|
+ a.signature_annotator2,
|
|
|
+ a.signature_contract_id,
|
|
|
+ a.real_create,
|
|
|
+ a.proc_ins_id,
|
|
|
+ a.process_definition_id,
|
|
|
+ a.signature_annotator_status,
|
|
|
+ cw_prnl.report_no as "reportNo",
|
|
|
+ a.audit_fees,
|
|
|
+ a.industry,
|
|
|
+ a.business_objects
|
|
|
from
|
|
|
- cw_project_report cpr
|
|
|
+ cw_project_report a
|
|
|
left join
|
|
|
cw_project_report_new_line cw_prnl on cpr.id=cw_prnl.report_id
|
|
|
<where>
|
|
@@ -834,9 +860,31 @@
|
|
|
|
|
|
<select id="getReportByReportNo" resultType="com.jeeplus.finance.projectReport.domain.CwProjectReport">
|
|
|
select
|
|
|
- cpr.*
|
|
|
+ a.id,
|
|
|
+ a.create_by_id as createById,
|
|
|
+ a.create_time,
|
|
|
+ a.update_by_id,
|
|
|
+ a.update_time,
|
|
|
+ a.del_flag,
|
|
|
+ a.remarks,
|
|
|
+ a.status,
|
|
|
+ a.document_no,
|
|
|
+ a.project_report_number,
|
|
|
+ a.project_id,
|
|
|
+ a.office_id,
|
|
|
+ a.signature_type,
|
|
|
+ a.signature_annotator1,
|
|
|
+ a.signature_annotator2,
|
|
|
+ a.signature_contract_id,
|
|
|
+ a.real_create,
|
|
|
+ a.proc_ins_id,
|
|
|
+ a.process_definition_id,
|
|
|
+ a.signature_annotator_status,
|
|
|
+ a.audit_fees,
|
|
|
+ a.industry,
|
|
|
+ a.business_objects
|
|
|
from
|
|
|
- cw_project_report cpr
|
|
|
+ cw_project_report a
|
|
|
left join
|
|
|
cw_project_report_new_line cw_prnl on cpr.id=cw_prnl.report_id
|
|
|
where
|