Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-backend
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AutogeneralShanghai
yd-backend
Commits
77e0862b
Commit
77e0862b
authored
Nov 14, 2023
by
wenyang
Committed by
jianan
Nov 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
经纪人合同签字日期调整1
parent
232a5106
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerHiringContractServiceImpl.java
+11
-7
No files found.
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerHiringContractServiceImpl.java
View file @
77e0862b
...
...
@@ -218,16 +218,20 @@ public class PractitionerHiringContractServiceImpl implements PractitionerHiring
// 设置一些地址
this
.
setSomeAddress
(
data
,
hiringBasicInfoId
);
Calendar
now
=
Calendar
.
getInstance
();
data
.
put
(
"contactYear"
,
now
.
get
(
Calendar
.
YEAR
)
+
""
);
data
.
put
(
"contactMonth"
,
(
now
.
get
(
Calendar
.
MONTH
)
+
1
)
+
""
);
data
.
put
(
"contactDay"
,
now
.
get
(
Calendar
.
DAY_OF_MONTH
)
+
""
);
//8页
data
.
put
(
"secondParty801"
,
basicInfo
.
getName
());
Calendar
secondBirthday
=
Calendar
.
getInstance
();
Date
practitionerBirthdate
=
CommonUtil
.
stringParseDate
(
basicInfo
.
getPractitionerBirthdate
(),
"yyyy-MM-dd"
);
secondBirthday
.
setTime
(
practitionerBirthdate
);
data
.
put
(
"contactYear"
,
secondBirthday
.
get
(
Calendar
.
YEAR
)
+
""
);
data
.
put
(
"contactMonth"
,
(
secondBirthday
.
get
(
Calendar
.
MONTH
)
+
1
)
+
""
);
data
.
put
(
"contactDay"
,
secondBirthday
.
get
(
Calendar
.
DAY_OF_MONTH
)
+
""
);
// Calendar now = Calendar.getInstance();
// data.put("contactYear", now.get(Calendar.YEAR) + "");
// data.put("contactMonth", (now.get(Calendar.MONTH) + 1) + "");
// data.put("contactDay", now.get(Calendar.DAY_OF_MONTH) + "");
//8页
data
.
put
(
"secondParty801"
,
basicInfo
.
getName
());
data
.
put
(
"secondBirthYear801"
,
secondBirthday
.
get
(
Calendar
.
YEAR
)
+
""
);
data
.
put
(
"secondBirthMonth801"
,
(
secondBirthday
.
get
(
Calendar
.
MONTH
)
+
1
)
+
""
);
...
...
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