|
@@ -244,11 +244,18 @@
|
|
|
|
|
|
<select id="getReportExport" resultType="org.jeecg.modules.appInterface.entity.FbsWorkingStatistics" >
|
|
|
SELECT
|
|
|
- a.*,
|
|
|
+ a.project_name,
|
|
|
+ a.cost_item_code,
|
|
|
+ a.original_price_code,
|
|
|
+ a.wbs_element,
|
|
|
+ a.wbs_element_description,
|
|
|
+ a.work_report_wbs,
|
|
|
+ a.work_report_network,
|
|
|
+ a.work_reporting_activities,
|
|
|
sum( a.qualified_number ) as qualified_number,
|
|
|
sum( a.working_hours ) as working_hours,
|
|
|
sum( a.planned_quantity ) as planned_quantity,
|
|
|
- ROUND( sum( a.qualified_number )/ sum( a.planned_quantity ), 2 ) as speedOfProgress
|
|
|
+ ROUND( sum( a.qualified_number )/ sum( a.planned_quantity )*100, 0 ) as speedOfProgress
|
|
|
FROM
|
|
|
(
|
|
|
SELECT
|