Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
af26028f
Commit
af26028f
authored
Dec 09, 2020
by
周健威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加接口
parent
127cec23
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
6 deletions
+20
-6
UserRestInterface.java
.../wxiaoqi/security/admin/feign/rest/UserRestInterface.java
+13
-0
SpecialRentBiz.java
...main/java/com/xxfc/platform/order/biz/SpecialRentBiz.java
+2
-1
ShuntApplyController.java
...va/com/xxfc/platform/order/rest/ShuntApplyController.java
+2
-2
SpecialRentController.java
...a/com/xxfc/platform/order/rest/SpecialRentController.java
+2
-2
BgSpecialRentController.java
...atform/order/rest/background/BgSpecialRentController.java
+1
-1
No files found.
ace-modules/ace-admin-api/src/main/java/com/github/wxiaoqi/security/admin/feign/rest/UserRestInterface.java
View file @
af26028f
...
@@ -126,6 +126,19 @@ public interface UserRestInterface {
...
@@ -126,6 +126,19 @@ public interface UserRestInterface {
return
null
;
return
null
;
}
}
default
Integer
getBusinessUserCompanyId
(){
return
getBusinessUserCompanyIds
()
==
null
?
null
:
getBusinessUserCompanyIds
().
get
(
0
);
}
default
Integer
getBgUserCompanyId
(){
UserDTO
userDTO
=
getAdminUserInfoV2
();
if
(
userDTO
!=
null
&&
CollUtil
.
isNotEmpty
(
userDTO
.
getCompanyIds
()))
{
return
userDTO
.
getCompanyIds
().
get
(
0
);
}
else
{
return
null
;
}
}
default
UserDTO
getBusinessUserByAppUser
(){
default
UserDTO
getBusinessUserByAppUser
(){
String
currentUserName
=
BaseContextHandler
.
getUsername
();
String
currentUserName
=
BaseContextHandler
.
getUsername
();
if
(
StrUtil
.
isNotBlank
(
currentUserName
)){
if
(
StrUtil
.
isNotBlank
(
currentUserName
)){
...
...
xx-order/xx-order-server/src/main/java/com/xxfc/platform/order/biz/SpecialRentBiz.java
View file @
af26028f
...
@@ -93,7 +93,7 @@ public class SpecialRentBiz extends BaseBiz<SpecialRentMapper, SpecialRent> {
...
@@ -93,7 +93,7 @@ public class SpecialRentBiz extends BaseBiz<SpecialRentMapper, SpecialRent> {
* @param specialRent
* @param specialRent
* @param userDTO
* @param userDTO
*/
*/
public
void
addRent
(
@RequestBody
SpecialRent
specialRent
,
UserDTO
userDTO
)
{
public
void
addRent
(
@RequestBody
SpecialRent
specialRent
,
UserDTO
userDTO
,
Integer
currentCompanyId
)
{
AssertUtils
.
isBlank
(
userDTO
);
AssertUtils
.
isBlank
(
userDTO
);
AssertUtils
.
isBlank
(
specialRent
.
getUnitPrice
());
AssertUtils
.
isBlank
(
specialRent
.
getUnitPrice
());
if
(
StrUtil
.
isBlank
(
specialRent
.
getVehicleId
()))
{
if
(
StrUtil
.
isBlank
(
specialRent
.
getVehicleId
()))
{
...
@@ -123,6 +123,7 @@ public class SpecialRentBiz extends BaseBiz<SpecialRentMapper, SpecialRent> {
...
@@ -123,6 +123,7 @@ public class SpecialRentBiz extends BaseBiz<SpecialRentMapper, SpecialRent> {
specialRent
.
setCategoryId
(
vehicle
.
getCategoryId
());
specialRent
.
setCategoryId
(
vehicle
.
getCategoryId
());
specialRent
.
setGoodsType
(
vehicle
.
getGoodsType
());
specialRent
.
setGoodsType
(
vehicle
.
getGoodsType
());
specialRent
.
setPriceType
(
vehicle
.
getPriceType
());
specialRent
.
setPriceType
(
vehicle
.
getPriceType
());
specialRent
.
setPublishCompanyId
(
currentCompanyId
);
//缓存商品信息
//缓存商品信息
specialRent
.
setGoodsJson
(
JSONUtil
.
parse
(
vehicle
).
toString
());
specialRent
.
setGoodsJson
(
JSONUtil
.
parse
(
vehicle
).
toString
());
...
...
xx-order/xx-order-server/src/main/java/com/xxfc/platform/order/rest/ShuntApplyController.java
View file @
af26028f
...
@@ -363,7 +363,7 @@ public class ShuntApplyController extends BaseController<ShuntApplyBiz, ShuntApp
...
@@ -363,7 +363,7 @@ public class ShuntApplyController extends BaseController<ShuntApplyBiz, ShuntApp
shuntApply
.
setOrderNo
(
detail
.
getOrder
().
getNo
());
shuntApply
.
setOrderNo
(
detail
.
getOrder
().
getNo
());
shuntApply
.
setOverTime
(
DateUtil
.
offsetHour
(
DateUtil
.
date
(),
1
).
getTime
());
shuntApply
.
setOverTime
(
DateUtil
.
offsetHour
(
DateUtil
.
date
(),
1
).
getTime
());
shuntApply
.
setConfirmUserId
(
userDTO
.
getId
());
shuntApply
.
setConfirmUserId
(
userDTO
.
getId
());
shuntApply
.
setConfirmCompanyId
(
userDTO
.
get
CompanyId
());
shuntApply
.
setConfirmCompanyId
(
getBusinessUser
CompanyId
());
shuntApply
.
setBookRecordId
(
detail
.
getBookRecordId
());
shuntApply
.
setBookRecordId
(
detail
.
getBookRecordId
());
baseBiz
.
updateSelectiveByIdRe
(
shuntApply
);
baseBiz
.
updateSelectiveByIdRe
(
shuntApply
);
...
@@ -432,7 +432,7 @@ public class ShuntApplyController extends BaseController<ShuntApplyBiz, ShuntApp
...
@@ -432,7 +432,7 @@ public class ShuntApplyController extends BaseController<ShuntApplyBiz, ShuntApp
UserDTO
userDTO
=
getBusinessUserByAppUser
();
UserDTO
userDTO
=
getBusinessUserByAppUser
();
AssertUtils
.
isBlank
(
userDTO
);
AssertUtils
.
isBlank
(
userDTO
);
PageDataVO
<
ShuntApplyController
.
ShuntApplyVO
>
pages
=
PageDataVO
.
pageInfo
(
dto
.
initQuery
(),
()
->
baseBiz
.
selectByWeekend
(
w
->
{
PageDataVO
<
ShuntApplyController
.
ShuntApplyVO
>
pages
=
PageDataVO
.
pageInfo
(
dto
.
initQuery
(),
()
->
baseBiz
.
selectByWeekend
(
w
->
{
w
.
andEqualTo
(
ShuntApply:
:
getConfirm
UserId
,
userDTO
.
get
Id
());
w
.
andEqualTo
(
ShuntApply:
:
getConfirm
CompanyId
,
getBusinessUserCompany
Id
());
w
.
andEqualTo
(
ShuntApply:
:
getIsBizdel
,
SYS_FALSE
);
w
.
andEqualTo
(
ShuntApply:
:
getIsBizdel
,
SYS_FALSE
);
if
(
StrUtil
.
isNotBlank
(
dto
.
getMultiStatus
()))
{
if
(
StrUtil
.
isNotBlank
(
dto
.
getMultiStatus
()))
{
w
.
andIn
(
ShuntApply:
:
getStatus
,
CollUtil
.
toList
(
dto
.
getMultiStatus
().
split
(
","
)));
w
.
andIn
(
ShuntApply:
:
getStatus
,
CollUtil
.
toList
(
dto
.
getMultiStatus
().
split
(
","
)));
...
...
xx-order/xx-order-server/src/main/java/com/xxfc/platform/order/rest/SpecialRentController.java
View file @
af26028f
...
@@ -68,7 +68,7 @@ public class SpecialRentController extends BaseController<SpecialRentBiz, Specia
...
@@ -68,7 +68,7 @@ public class SpecialRentController extends BaseController<SpecialRentBiz, Specia
public
ObjectRestResponse
appBusinessAddRent
(
@RequestBody
SpecialRent
specialRent
)
{
public
ObjectRestResponse
appBusinessAddRent
(
@RequestBody
SpecialRent
specialRent
)
{
UserDTO
userDTO
=
getBusinessUserByAppUser
();
UserDTO
userDTO
=
getBusinessUserByAppUser
();
baseBiz
.
addRent
(
specialRent
,
userDTO
);
baseBiz
.
addRent
(
specialRent
,
userDTO
,
getBusinessUserCompanyId
()
);
return
ObjectRestResponse
.
succ
();
return
ObjectRestResponse
.
succ
();
}
}
...
@@ -152,7 +152,7 @@ public class SpecialRentController extends BaseController<SpecialRentBiz, Specia
...
@@ -152,7 +152,7 @@ public class SpecialRentController extends BaseController<SpecialRentBiz, Specia
Query
query
=
new
Query
(
dto
);
Query
query
=
new
Query
(
dto
);
PageDataVO
<
SpecialRentVO
>
pages
=
PageDataVO
.
pageInfo
(
query
,
()
->
baseBiz
.
selectByWeekend
(
w
->
{
PageDataVO
<
SpecialRentVO
>
pages
=
PageDataVO
.
pageInfo
(
query
,
()
->
baseBiz
.
selectByWeekend
(
w
->
{
w
.
andEqualTo
(
SpecialRent:
:
getIsDel
,
SYS_FALSE
);
w
.
andEqualTo
(
SpecialRent:
:
getIsDel
,
SYS_FALSE
);
w
.
andEqualTo
(
SpecialRent:
:
getPublish
UserId
,
userDTO
.
get
Id
());
w
.
andEqualTo
(
SpecialRent:
:
getPublish
CompanyId
,
getBusinessUserCompany
Id
());
return
w
;
return
w
;
},
" crt_time desc "
),
SpecialRentVO
.
class
);
},
" crt_time desc "
),
SpecialRentVO
.
class
);
...
...
xx-order/xx-order-server/src/main/java/com/xxfc/platform/order/rest/background/BgSpecialRentController.java
View file @
af26028f
...
@@ -67,7 +67,7 @@ public class BgSpecialRentController extends BaseController<SpecialRentBiz, Spec
...
@@ -67,7 +67,7 @@ public class BgSpecialRentController extends BaseController<SpecialRentBiz, Spec
@ApiOperation
(
value
=
"添加特惠租车"
)
@ApiOperation
(
value
=
"添加特惠租车"
)
public
ObjectRestResponse
businessAddRent
(
@RequestBody
SpecialRent
specialRent
)
{
public
ObjectRestResponse
businessAddRent
(
@RequestBody
SpecialRent
specialRent
)
{
UserDTO
userDTO
=
getAdminUserInfoV2
();
UserDTO
userDTO
=
getAdminUserInfoV2
();
baseBiz
.
addRent
(
specialRent
,
userDTO
);
baseBiz
.
addRent
(
specialRent
,
userDTO
,
getBgUserCompanyId
()
);
return
ObjectRestResponse
.
succ
();
return
ObjectRestResponse
.
succ
();
}
}
...
...
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