Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-zx-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
项目统一框架
一体化_户用光伏项目代码
amos-boot-zx-biz
Commits
67dc2c95
Commit
67dc2c95
authored
Jul 31, 2025
by
wujiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交代码
parent
280c84c4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
10 deletions
+14
-10
PeasantHousehold.java
...in/amos/boot/module/hygf/api/entity/PeasantHousehold.java
+3
-0
WorkOrderPowerStationMapper.xml
...in/resources/mapper/mysql/WorkOrderPowerStationMapper.xml
+2
-1
HygfIcbcServiceImpl.java
...oot/module/hygf/biz/service/impl/HygfIcbcServiceImpl.java
+1
-0
StatisticsHomepageServiceImpl.java
.../hygf/biz/service/impl/StatisticsHomepageServiceImpl.java
+6
-8
WorkOrderServiceImpl.java
...ot/module/hygf/biz/service/impl/WorkOrderServiceImpl.java
+2
-1
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/entity/PeasantHousehold.java
View file @
67dc2c95
...
@@ -282,4 +282,7 @@ public class PeasantHousehold extends BaseEntity {
...
@@ -282,4 +282,7 @@ public class PeasantHousehold extends BaseEntity {
@ApiModelProperty
(
value
=
"省份"
,
example
=
"北京市"
)
@ApiModelProperty
(
value
=
"省份"
,
example
=
"北京市"
)
@TableField
(
exist
=
false
)
@TableField
(
exist
=
false
)
private
String
province
;
private
String
province
;
@TableField
(
exist
=
false
)
private
String
powerStationConstructionStatus
;
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/WorkOrderPowerStationMapper.xml
View file @
67dc2c95
...
@@ -8,7 +8,8 @@
...
@@ -8,7 +8,8 @@
hygf_peasant_household.*,
hygf_peasant_household.*,
hygf_peasant_household.sequence_nbr stationId,
hygf_peasant_household.sequence_nbr stationId,
hygf_commercial.scale,
hygf_commercial.scale,
hygf_power_station_engineering_info.real_scale as realScale
hygf_power_station_engineering_info.real_scale as realScale,
hygf_work_order_power_station.power_station_construction_status as powerStationConstructionStatus
FROM
FROM
hygf_work_order_power_station
hygf_work_order_power_station
LEFT JOIN hygf_peasant_household ON hygf_work_order_power_station.peasant_household_id = hygf_peasant_household.sequence_nbr
LEFT JOIN hygf_peasant_household ON hygf_work_order_power_station.peasant_household_id = hygf_peasant_household.sequence_nbr
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/HygfIcbcServiceImpl.java
View file @
67dc2c95
...
@@ -693,6 +693,7 @@ public class HygfIcbcServiceImpl extends BaseService<HygfIcbcRecordDTO, HygfIcbc
...
@@ -693,6 +693,7 @@ public class HygfIcbcServiceImpl extends BaseService<HygfIcbcRecordDTO, HygfIcbc
{
{
if
(
dto
.
getMediumId
()!=
null
&&
"二类卡"
.
equals
(
dto
.
getType
()))
if
(
dto
.
getMediumId
()!=
null
&&
"二类卡"
.
equals
(
dto
.
getType
()))
{
{
//并发处理
CompletableFuture
<
Void
>
fan
=
CompletableFuture
.
supplyAsync
(()
->
{
CompletableFuture
<
Void
>
fan
=
CompletableFuture
.
supplyAsync
(()
->
{
SettlementAccountBalanceQueryResponseV1
res
=
(
SettlementAccountBalanceQueryResponseV1
)
this
.
balanceQuery
(
dto
.
getMediumId
());
SettlementAccountBalanceQueryResponseV1
res
=
(
SettlementAccountBalanceQueryResponseV1
)
this
.
balanceQuery
(
dto
.
getMediumId
());
if
(
res
.
isSuccess
())
if
(
res
.
isSuccess
())
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/StatisticsHomepageServiceImpl.java
View file @
67dc2c95
...
@@ -108,8 +108,8 @@ public class StatisticsHomepageServiceImpl {
...
@@ -108,8 +108,8 @@ public class StatisticsHomepageServiceImpl {
List
<
String
>
workOrder
=
new
ArrayList
<>(
Arrays
.
asList
(
"未通过"
,
"施工资料上传"
,
"完工登记"
,
"经销商工程待审核"
,
"片区运营待审核"
,
"工程待审核"
,
"设计待审核"
,
"已完成"
,
"整改待审核"
,
"待整改"
));
List
<
String
>
workOrder
=
new
ArrayList
<>(
Arrays
.
asList
(
"未通过"
,
"施工资料上传"
,
"完工登记"
,
"经销商工程待审核"
,
"片区运营待审核"
,
"工程待审核"
,
"设计待审核"
,
"已完成"
,
"整改待审核"
,
"待整改"
));
List
<
String
>
preparationMoneyKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"待发货"
,
"已收货"
,
"待收货"
));
List
<
String
>
preparationMoneyKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"待发货"
,
"已收货"
,
"待收货"
));
List
<
String
>
desionKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"施工图已上传"
,
"典设图已上传"
));
List
<
String
>
desionKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"施工图已上传"
,
"典设图已上传"
));
List
<
String
>
gridKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"待登记"
,
"
审核中
"
,
"已完成"
,
"未通过"
,
"整改待审核"
,
"待整改"
));
List
<
String
>
gridKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"待登记"
,
"
片区运营待审核"
,
"设计待审核/工程待审核"
,
"设计待审核"
,
"工程待审核
"
,
"已完成"
,
"未通过"
,
"整改待审核"
,
"待整改"
));
List
<
String
>
acceptanceKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"待提交"
,
"已完成"
,
"
审核中
"
,
"整改待审核"
,
"待整改"
,
"未通过"
));
List
<
String
>
acceptanceKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"待提交"
,
"已完成"
,
"
片区运营待审核"
,
"投融待审核/法务待审核"
,
"投融待审核"
,
"法务待审核"
,
"资产待审核
"
,
"整改待审核"
,
"待整改"
,
"未通过"
));
List
<
String
>
financingKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"未通过"
,
"已放款"
,
"放款完成"
,
"已推送"
,
"待推送"
,
"待放款"
));
List
<
String
>
financingKeys
=
new
ArrayList
<>(
Arrays
.
asList
(
"未通过"
,
"已放款"
,
"放款完成"
,
"已推送"
,
"待推送"
,
"待放款"
));
List
<
Map
<
String
,
Object
>>
list
=
new
ArrayList
<>();
List
<
Map
<
String
,
Object
>>
list
=
new
ArrayList
<>();
switch
(
type
){
switch
(
type
){
...
@@ -240,7 +240,7 @@ public class StatisticsHomepageServiceImpl {
...
@@ -240,7 +240,7 @@ public class StatisticsHomepageServiceImpl {
iterator1
.
remove
();
iterator1
.
remove
();
}
}
}
}
maps
.
add
(
MapBuilder
.<
String
,
Object
>
create
().
put
(
"statusText"
,
"审核中"
).
put
(
"total"
,
total
).
put
(
"realScale"
,
new
BigDecimal
(
realScale
).
setScale
(
2
,
BigDecimal
.
ROUND_HALF_UP
).
doubleValue
()).
build
());
//
maps.add(MapBuilder.<String, Object>create().put("statusText", "审核中").put("total", total).put("realScale",new BigDecimal(realScale).setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue()).build());
differenceValue
(
maps
,
gridKeys
);
differenceValue
(
maps
,
gridKeys
);
resultMap
.
put
(
"grid"
,
maps
);
resultMap
.
put
(
"grid"
,
maps
);
}
}
...
@@ -261,7 +261,7 @@ public class StatisticsHomepageServiceImpl {
...
@@ -261,7 +261,7 @@ public class StatisticsHomepageServiceImpl {
iterator2
.
remove
();
iterator2
.
remove
();
}
}
}
}
maps
.
add
(
MapBuilder
.<
String
,
Object
>
create
().
put
(
"statusText"
,
"审核中"
).
put
(
"total"
,
total
).
put
(
"realScale"
,
new
BigDecimal
(
realScale
).
setScale
(
2
,
BigDecimal
.
ROUND_HALF_UP
).
doubleValue
()).
build
());
//
maps.add(MapBuilder.<String, Object>create().put("statusText","审核中").put("total",total).put("realScale",new BigDecimal(realScale).setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue()).build());
differenceValue
(
maps
,
acceptanceKeys
);
differenceValue
(
maps
,
acceptanceKeys
);
resultMap
.
put
(
"acceptance"
,
maps
);
resultMap
.
put
(
"acceptance"
,
maps
);
}
}
...
@@ -610,7 +610,7 @@ public class StatisticsHomepageServiceImpl {
...
@@ -610,7 +610,7 @@ public class StatisticsHomepageServiceImpl {
resultMap
.
put
(
key
,
Arrays
.
asList
(
objectMap
.
get
(
"total"
),
objectMap
.
get
(
"realScale"
)));
resultMap
.
put
(
key
,
Arrays
.
asList
(
objectMap
.
get
(
"total"
),
objectMap
.
get
(
"realScale"
)));
}
}
break
;
break
;
case
"financing"
:
case
"financing"
:
List
<
Map
<
String
,
Object
>>
financingMaps
=
statisticsHomepageMapper
.
financingStatusTotal
(
developerCode
,
regionalCompaniesCode
,
province
,
city
,
district
);
List
<
Map
<
String
,
Object
>>
financingMaps
=
statisticsHomepageMapper
.
financingStatusTotal
(
developerCode
,
regionalCompaniesCode
,
province
,
city
,
district
);
this
.
resuleMapBuild
(
map
,
map1
,
financingMaps
,
"financing"
);
this
.
resuleMapBuild
(
map
,
map1
,
financingMaps
,
"financing"
);
List
<
Map
<
String
,
Object
>>
financing
=
(
List
<
Map
<
String
,
Object
>>)
map1
.
get
(
"financing"
);
List
<
Map
<
String
,
Object
>>
financing
=
(
List
<
Map
<
String
,
Object
>>)
map1
.
get
(
"financing"
);
...
@@ -622,9 +622,7 @@ public class StatisticsHomepageServiceImpl {
...
@@ -622,9 +622,7 @@ public class StatisticsHomepageServiceImpl {
}
}
return
resultMap
;
return
resultMap
;
}
}
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/WorkOrderServiceImpl.java
View file @
67dc2c95
...
@@ -2095,7 +2095,7 @@ public class WorkOrderServiceImpl extends BaseService<WorkOrderDto, WorkOrder, W
...
@@ -2095,7 +2095,7 @@ public class WorkOrderServiceImpl extends BaseService<WorkOrderDto, WorkOrder, W
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
setConstructionStatus
(
powerStationConstructionData
.
getConstructionStatus
());
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
setConstructionStatus
(
powerStationConstructionData
.
getConstructionStatus
());
}
}
}
}
webConstuctionData
.
getWebConstuctionDataAttachment
().
setCommitFlow
(
false
);
//
webConstuctionData.getWebConstuctionDataAttachment().setCommitFlow(false);
return
webConstuctionData
;
return
webConstuctionData
;
}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment