...
|
...
|
@@ -399,7 +399,7 @@ func (usersService *UsersService) CooperationUserList(cooperationUserListQuery * |
|
|
OrgName: v.Org.OrgName,
|
|
|
OrgId: strconv.Itoa(v.Org.OrgId),
|
|
|
}
|
|
|
if !v.CooperationInfo.CooperationDeadline.IsZero() {
|
|
|
if !v.CooperationInfo.CooperationDeadline.IsZero() && v.CooperationInfo.CooperationDeadline.After(time.Unix(1136044800, 0)) {
|
|
|
item.CooperationDeadline = v.CooperationInfo.CooperationDeadline.Format("2006-01-02")
|
|
|
}
|
|
|
|
...
|
...
|
@@ -438,7 +438,7 @@ func (usersService *UsersService) CooperationUserUpdate(cooperationUserUpdateCom |
|
|
_, err := creationUserGateway.CooperatorUserUpdate(allied_creation_user.ReqUpdateCooperatorUser{
|
|
|
UserId: cooperationUserUpdateCommand.UserId,
|
|
|
CooperationCompany: cooperationUserUpdateCommand.CooperationCompany,
|
|
|
CooperationDeadline: time.Unix(cooperationUserUpdateCommand.CooperationDeadline, 0),
|
|
|
CooperationDeadline: time.Unix(cooperationUserUpdateCommand.CooperationDeadline/1000, 0),
|
|
|
Email: cooperationUserUpdateCommand.Email,
|
|
|
EnableStatus: cooperationUserUpdateCommand.EnableStatus,
|
|
|
UserCode: cooperationUserUpdateCommand.UserCode,
|
...
|
...
|
|