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
99bb953f
Commit
99bb953f
authored
Jul 04, 2024
by
hezhuozhi
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/developer' into developer
parents
4c75b762
17a5e543
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
HygfReplenishmentDto.java
...n/amos/boot/module/hygf/api/dto/HygfReplenishmentDto.java
+1
-1
HygfReplenishment.java
...n/amos/boot/module/hygf/api/entity/HygfReplenishment.java
+2
-2
PreparationMoneyServiceImpl.java
...le/hygf/biz/service/impl/PreparationMoneyServiceImpl.java
+3
-2
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/dto/HygfReplenishmentDto.java
View file @
99bb953f
...
@@ -25,7 +25,7 @@ public class HygfReplenishmentDto extends BaseDto {
...
@@ -25,7 +25,7 @@ public class HygfReplenishmentDto extends BaseDto {
private
Long
preparationMoneyId
;
private
Long
preparationMoneyId
;
@ApiModelProperty
(
value
=
"补货描述"
)
@ApiModelProperty
(
value
=
"补货描述"
)
private
String
desc
;
private
String
comment
;
@ApiModelProperty
(
value
=
"补货文件"
)
@ApiModelProperty
(
value
=
"补货文件"
)
private
String
file
;
private
String
file
;
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/entity/HygfReplenishment.java
View file @
99bb953f
...
@@ -34,8 +34,8 @@ public class HygfReplenishment extends BaseEntity {
...
@@ -34,8 +34,8 @@ public class HygfReplenishment extends BaseEntity {
/**
/**
* 补货描述
* 补货描述
*/
*/
@TableField
(
"
desc
"
)
@TableField
(
"
comment
"
)
private
String
desc
;
private
String
comment
;
/**
/**
* 补货文件
* 补货文件
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/PreparationMoneyServiceImpl.java
View file @
99bb953f
...
@@ -559,7 +559,6 @@ public class PreparationMoneyServiceImpl extends BaseService<PreparationMoneyDto
...
@@ -559,7 +559,6 @@ public class PreparationMoneyServiceImpl extends BaseService<PreparationMoneyDto
//更新电站施工状态
//更新电站施工状态
LambdaUpdateWrapper
<
PeasantHousehold
>
up
=
new
LambdaUpdateWrapper
<>();
LambdaUpdateWrapper
<
PeasantHousehold
>
up
=
new
LambdaUpdateWrapper
<>();
up
.
set
(
PeasantHousehold:
:
getConstructionState
,
ArrivalStateeEnum
.
备货中
.
getCode
());
List
<
DocumentStation
>
idsk
=
model
.
getPeasantHouseholdId
();
List
<
DocumentStation
>
idsk
=
model
.
getPeasantHouseholdId
();
List
<
Long
>
idsH
=
new
ArrayList
<>();
List
<
Long
>
idsH
=
new
ArrayList
<>();
for
(
DocumentStation
documentStation
:
idsk
)
{
for
(
DocumentStation
documentStation
:
idsk
)
{
...
@@ -568,7 +567,8 @@ public class PreparationMoneyServiceImpl extends BaseService<PreparationMoneyDto
...
@@ -568,7 +567,8 @@ public class PreparationMoneyServiceImpl extends BaseService<PreparationMoneyDto
up
.
in
(
PeasantHousehold:
:
getSequenceNbr
,
idsH
);
up
.
in
(
PeasantHousehold:
:
getSequenceNbr
,
idsH
);
preparationMoneyMapper
.
insert
(
model
);
preparationMoneyMapper
.
insert
(
model
);
if
(
isSubmit
.
equals
(
"0"
))
{
if
(
isSubmit
.
equals
(
"0"
))
{
up
.
set
(
PeasantHousehold:
:
getPreparationMoneyState
,
DeliveryStateeEnum
.
已发货
.
getCode
());
up
.
set
(
PeasantHousehold:
:
getPreparationMoneyState
,
ArrivalStateeEnum
.
待收货
.
getCode
());
up
.
set
(
PeasantHousehold:
:
getConstructionState
,
ArrivalStateeEnum
.
待收货
.
getCode
());
//开启工作流 并执行一步
//开启工作流 并执行一步
ActWorkflowBatchDTO
actWorkflowBatchDTO
=
new
ActWorkflowBatchDTO
();
ActWorkflowBatchDTO
actWorkflowBatchDTO
=
new
ActWorkflowBatchDTO
();
List
<
ActWorkflowStartDTO
>
params
=
new
ArrayList
<>();
List
<
ActWorkflowStartDTO
>
params
=
new
ArrayList
<>();
...
@@ -594,6 +594,7 @@ public class PreparationMoneyServiceImpl extends BaseService<PreparationMoneyDto
...
@@ -594,6 +594,7 @@ public class PreparationMoneyServiceImpl extends BaseService<PreparationMoneyDto
model
.
setDeliveryTime
(
new
Date
());
model
.
setDeliveryTime
(
new
Date
());
model
.
setOrderStatus
(
DeliveryStateeEnum
.
待确认
.
getName
());
model
.
setOrderStatus
(
DeliveryStateeEnum
.
待确认
.
getName
());
}
else
{
}
else
{
up
.
set
(
PeasantHousehold:
:
getConstructionState
,
DeliveryStateeEnum
.
暂存发货
.
getCode
());
up
.
set
(
PeasantHousehold:
:
getPreparationMoneyState
,
DeliveryStateeEnum
.
暂存发货
.
getCode
());
up
.
set
(
PeasantHousehold:
:
getPreparationMoneyState
,
DeliveryStateeEnum
.
暂存发货
.
getCode
());
model
.
setOrderStatus
(
DeliveryStateeEnum
.
待提交
.
getName
());
model
.
setOrderStatus
(
DeliveryStateeEnum
.
待提交
.
getName
());
}
}
...
...
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