Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
HYH.APSJ
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
佟礼
HYH.APSJ
Commits
908259ee
Commit
908259ee
authored
Dec 30, 2025
by
Tong Li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
遗传算法-创建工单
parent
3fd32773
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
LanuchServiceImpl.java
src/main/java/com/aps/service/impl/LanuchServiceImpl.java
+7
-3
No files found.
src/main/java/com/aps/service/impl/LanuchServiceImpl.java
View file @
908259ee
...
...
@@ -646,7 +646,6 @@ public class LanuchServiceImpl implements LanuchService {
public
ProdProcessExec
createProcessExec
(
ProdLaunchOrder
prodOrderMain
,
RoutingDetail
detail
,
String
sceneId
)
{
Equiptype1
equipType
=
equiptype1Service
.
lambdaQuery
().
eq
(
Equiptype1:
:
getId
,
detail
.
getEquipTypeId
()).
one
();
ProdProcessExec
prodProcessExec
=
new
ProdProcessExec
();
prodProcessExec
.
setExecId
(
UUID
.
randomUUID
().
toString
().
replace
(
"-"
,
""
));
...
...
@@ -657,10 +656,15 @@ public class LanuchServiceImpl implements LanuchService {
prodProcessExec
.
setMachineId
(
detail
.
getEquipTypeId
());
prodProcessExec
.
setRuntime
(
detail
.
getRuntime
());
prodProcessExec
.
setSingleOut
(
detail
.
getSingleOut
());
if
(
detail
.
getEquipTypeId
()
!=
null
)
{
Equiptype1
equipType
=
equiptype1Service
.
lambdaQuery
().
eq
(
Equiptype1:
:
getId
,
detail
.
getEquipTypeId
()).
one
();
if
(
equipType
!=
null
)
{
prodProcessExec
.
setEquipTypeName
(
equipType
.
getEquipTypeName
());
prodProcessExec
.
setEquipTypeCode
(
equipType
.
getEquipTypeId
());
prodProcessExec
.
setEquipTypeName
(
equipType
.
getEquipTypeName
());
prodProcessExec
.
setEquipTypeCode
(
equipType
.
getEquipTypeId
());
}
}
prodProcessExec
.
setPlanQty
(
prodOrderMain
.
getQuantity
());
prodProcessExec
.
setTargetStartDate
(
prodOrderMain
.
getStartDate
());
prodProcessExec
.
setTargetEndDate
(
prodOrderMain
.
getEndDate
());
...
...
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