Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-api-boot-master
Commits
33c1569c
Commit
33c1569c
authored
Jul 23, 2024
by
332784038@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单业绩日志添加的业务修改
parent
0e786af8
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
129 additions
and
17 deletions
+129
-17
update_2024-07.sql
sql/update_2024-07.sql
+61
-0
OrderDO.java
...oder/yudao/module/order/dal/dataobject/order/OrderDO.java
+3
-0
OrderBackInfoDto.java
...a/cn/iocoder/yudao/module/order/dto/OrderBackInfoDto.java
+3
-0
OrderServiceImpl.java
...dao/module/order/service/order/impl/OrderServiceImpl.java
+26
-0
TargetLogServiceImpl.java
.../module/order/service/targetLog/TargetLogServiceImpl.java
+21
-17
OrderBackVO.java
...a/cn/iocoder/yudao/module/order/vo/order/OrderBackVO.java
+4
-0
OrderBaseVO.java
...a/cn/iocoder/yudao/module/order/vo/order/OrderBaseVO.java
+3
-0
OrderExcelVO.java
.../cn/iocoder/yudao/module/order/vo/order/OrderExcelVO.java
+4
-0
OrderQueryVO.java
.../cn/iocoder/yudao/module/order/vo/order/OrderQueryVO.java
+4
-0
No files found.
sql/update_2024-07.sql
0 → 100644
View file @
33c1569c
-- 兰博明添加的业务字段与表补充sql脚本
alter
table
`ecw_order`
add
column
`has_consignee`
bit
(
1
)
DEFAULT
b
'1'
COMMENT
'是否有收货人,1-是,0-否'
;
alter
table
`ecw_order`
add
column
`yeji_create_date`
datetime
DEFAULT
NULL
COMMENT
'订单业绩产生时间'
;
alter
table
`ecw_order`
add
column
`yeji_type`
int
DEFAULT
NULL
COMMENT
'业绩类型,1是新客户业绩,0是老客户业绩'
;
alter
table
`ecw_order`
add
column
`cal_v_value`
decimal
(
15
,
2
)
DEFAULT
NULL
COMMENT
'根据体积或重量计算出的V值'
;
CREATE
TABLE
`compare_air_customer_result`
(
`id`
bigint
NOT
NULL
AUTO_INCREMENT
,
`number`
varchar
(
100
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
COMMENT
'name'
,
`name`
varchar
(
100
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
COMMENT
'name'
,
`phone`
varchar
(
100
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
COMMENT
'phone'
,
`old_customer_name`
varchar
(
100
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
COMMENT
'old_customerName'
,
`customer_name`
varchar
(
100
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
COMMENT
'customerName'
,
`enter_open_sea_time`
datetime
DEFAULT
NULL
COMMENT
'入公海时间'
,
`creator`
varchar
(
64
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
''
COMMENT
'创建者'
,
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`type`
varchar
(
1
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
COMMENT
'type'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
COMMENT
=
'客户比对表结果表'
;
CREATE
TABLE
`customer_old_new_tmp`
(
`id`
int
NOT
NULL
AUTO_INCREMENT
,
`old_number`
varchar
(
100
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
,
`old_id`
int
DEFAULT
NULL
,
`new_number`
varchar
(
100
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
,
`new_id`
int
DEFAULT
NULL
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
;
CREATE
TABLE
`ecw_vz`
(
`id`
int
NOT
NULL
AUTO_INCREMENT
,
`title_zh`
varchar
(
100
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
COMMENT
'中文名称'
,
`title_en`
varchar
(
100
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
COMMENT
'英文名称'
,
`fuhao`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
COMMENT
'单位符号'
,
`vz`
float
DEFAULT
NULL
COMMENT
'v值'
,
`status`
tinyint
(
1
)
DEFAULT
'0'
COMMENT
'0显示 1不显示'
,
`aorder`
int
DEFAULT
NULL
COMMENT
'排序'
,
`create_time`
datetime
DEFAULT
NULL
,
`update_time`
datetime
DEFAULT
NULL
,
`creator`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
,
`updater`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_general_ci
DEFAULT
NULL
,
`deleted`
tinyint
(
1
)
DEFAULT
'0'
COMMENT
'0显示 1不显示'
,
PRIMARY
KEY
(
`id`
)
USING
BTREE
)
ENGINE
=
InnoDB
ROW_FORMAT
=
DYNAMIC
COMMENT
=
'计量单位表'
;
-- 新增订单产生业绩时归属客户状态
alter
table
`ecw_order`
add
column
`is_in_open_sea`
tinyint
DEFAULT
'0'
COMMENT
'是否公海客户'
,
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/dal/dataobject/order/OrderDO.java
View file @
33c1569c
...
@@ -624,4 +624,7 @@ public class OrderDO extends BaseDO {
...
@@ -624,4 +624,7 @@ public class OrderDO extends BaseDO {
private
BigDecimal
calVValue
;
private
BigDecimal
calVValue
;
@ApiModelProperty
(
value
=
"是否在公海"
)
private
Boolean
isInOpenSea
;
}
}
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/dto/OrderBackInfoDto.java
View file @
33c1569c
...
@@ -527,6 +527,9 @@ public class OrderBackInfoDto {
...
@@ -527,6 +527,9 @@ public class OrderBackInfoDto {
@ApiModelProperty
(
value
=
"是否有收货人,1-是,0-否"
)
@ApiModelProperty
(
value
=
"是否有收货人,1-是,0-否"
)
private
Boolean
hasConsignee
=
true
;
private
Boolean
hasConsignee
=
true
;
@ApiModelProperty
(
value
=
"是否在公海"
)
private
Boolean
isInOpenSea
;
public
void
setExceptionReason
(
String
exceptionReason
)
{
public
void
setExceptionReason
(
String
exceptionReason
)
{
this
.
exceptionReason
=
exceptionReason
;
this
.
exceptionReason
=
exceptionReason
;
if
(
StringUtils
.
isNotBlank
(
exceptionReason
)
&&
Objects
.
nonNull
(
this
.
lang
))
{
if
(
StringUtils
.
isNotBlank
(
exceptionReason
)
&&
Objects
.
nonNull
(
this
.
lang
))
{
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/service/order/impl/OrderServiceImpl.java
View file @
33c1569c
This diff is collapsed.
Click to expand it.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/service/targetLog/TargetLogServiceImpl.java
View file @
33c1569c
...
@@ -148,24 +148,28 @@ public class TargetLogServiceImpl extends AbstractService<TargetLogMapper, Targe
...
@@ -148,24 +148,28 @@ public class TargetLogServiceImpl extends AbstractService<TargetLogMapper, Targe
return
;
return
;
}
}
OrderBackInfoDto
info
=
orderQueryService
.
info
(
orderId
);
OrderBackInfoDto
info
=
orderQueryService
.
info
(
orderId
);
if
(
info
!=
null
&&
info
.
getSalesmanId
()!=
null
&&
info
.
getSalesmanId
()>
0L
)
{
//客户经理
if
(
info
.
getIsInOpenSea
()){
Long
customerId
=
0L
;
// 订单归属客户产生业绩时在公海池,不添加业绩日志
if
(
info
.
getType
().
contains
(
"2"
))
{
//海外仓归属发货人
return
;
customerId
=
info
.
getConsignorVO
().
getCustomerId
();
}
else
{
if
(
info
.
getIsCargoControl
())
{
//非海外控货归属发货人
customerId
=
info
.
getConsignorVO
().
getCustomerId
();
}
else
{
if
(
info
.
getDrawee
()
==
1
)
{
//非海外非控货 付款人为发货人 归属发货人
customerId
=
info
.
getConsignorVO
().
getCustomerId
();
}
else
{
//非海外非控货 付款人为其他 归属收货人
customerId
=
info
.
getConsigneeVO
().
getCustomerId
();
}
}
}
}
// if (info != null && info.getSalesmanId()!=null && info.getSalesmanId()>0L) {//客户经理
// Long customerId = info.getCustomerId();
// if (info.getType().contains("2")) {//海外仓归属发货人
// customerId = info.getConsignorVO().getCustomerId();
// } else {
// if (info.getIsCargoControl()) {//非海外控货归属发货人
// customerId = info.getConsignorVO().getCustomerId();
// } else {
// if (info.getDrawee() == 1) {//非海外非控货 付款人为发货人 归属发货人
// customerId = info.getConsignorVO().getCustomerId();
// } else { //非海外非控货 付款人为其他 归属收货人
// customerId = info.getConsigneeVO().getCustomerId();
// }
// }
// }
TargetLogDO
targetLogDO
=
new
TargetLogDO
();
TargetLogDO
targetLogDO
=
new
TargetLogDO
();
targetLogDO
.
setOrderId
(
orderId
);
targetLogDO
.
setOrderId
(
orderId
);
targetLogDO
.
setCustomerId
(
customerId
);
targetLogDO
.
setCustomerId
(
info
.
getCustomerId
()
);
targetLogDO
.
setUserId
(
info
.
getSalesmanId
());
targetLogDO
.
setUserId
(
info
.
getSalesmanId
());
targetLogDO
.
setAchievementTime
(
achievementTime
);
targetLogDO
.
setAchievementTime
(
achievementTime
);
if
(
info
.
getTransportId
()
==
3
)
{
if
(
info
.
getTransportId
()
==
3
)
{
...
@@ -178,6 +182,6 @@ public class TargetLogServiceImpl extends AbstractService<TargetLogMapper, Targe
...
@@ -178,6 +182,6 @@ public class TargetLogServiceImpl extends AbstractService<TargetLogMapper, Targe
targetLogDO
.
setType
(
type
);
targetLogDO
.
setType
(
type
);
targetLogMapper
.
insert
(
targetLogDO
);
targetLogMapper
.
insert
(
targetLogDO
);
// customerService.updateCustomerIsNewToOld(customerId);
// customerService.updateCustomerIsNewToOld(customerId);
}
//
}
}
}
}
}
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderBackVO.java
View file @
33c1569c
...
@@ -583,6 +583,10 @@ public class OrderBackVO {
...
@@ -583,6 +583,10 @@ public class OrderBackVO {
private
List
<
OrderItemDO
>
orderItemDOList
;
private
List
<
OrderItemDO
>
orderItemDOList
;
@ApiModelProperty
(
value
=
"是否在公海"
)
private
Boolean
isInOpenSea
;
public
void
setExternalWarehouseJson
(
String
externalWarehouseJson
)
{
public
void
setExternalWarehouseJson
(
String
externalWarehouseJson
)
{
this
.
externalWarehouseJson
=
externalWarehouseJson
;
this
.
externalWarehouseJson
=
externalWarehouseJson
;
if
(
StringUtils
.
isNotBlank
(
externalWarehouseJson
))
{
if
(
StringUtils
.
isNotBlank
(
externalWarehouseJson
))
{
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderBaseVO.java
View file @
33c1569c
...
@@ -352,6 +352,9 @@ public class OrderBaseVO {
...
@@ -352,6 +352,9 @@ public class OrderBaseVO {
@ApiModelProperty
(
value
=
"是否显示提单金额"
)
@ApiModelProperty
(
value
=
"是否显示提单金额"
)
private
Boolean
displayBillLadingPrice
;
private
Boolean
displayBillLadingPrice
;
@ApiModelProperty
(
value
=
"是否在公海"
)
private
Boolean
isInOpenSea
;
public
void
setExceptionReason
(
String
exceptionReason
)
{
public
void
setExceptionReason
(
String
exceptionReason
)
{
this
.
exceptionReason
=
StringUtils
.
isNotBlank
(
exceptionReason
)
?
I18nMessage
.
getMessage
(
exceptionReason
)
:
exceptionReason
;
this
.
exceptionReason
=
StringUtils
.
isNotBlank
(
exceptionReason
)
?
I18nMessage
.
getMessage
(
exceptionReason
)
:
exceptionReason
;
}
}
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderExcelVO.java
View file @
33c1569c
...
@@ -283,6 +283,10 @@ public class OrderExcelVO {
...
@@ -283,6 +283,10 @@ public class OrderExcelVO {
@ApiModelProperty
(
value
=
"关联订单状态"
)
@ApiModelProperty
(
value
=
"关联订单状态"
)
private
List
<
GuanLianOrderStatusVO
>
guanLianOrderStatusVOList
;
private
List
<
GuanLianOrderStatusVO
>
guanLianOrderStatusVOList
;
@ExcelIgnore
@ApiModelProperty
(
value
=
"是否在公海"
)
private
Boolean
isInOpenSea
;
public
void
setWarehouseInInfo
(
String
warehouseInInfo
)
{
public
void
setWarehouseInInfo
(
String
warehouseInInfo
)
{
this
.
warehouseInInfo
=
warehouseInInfo
;
this
.
warehouseInInfo
=
warehouseInInfo
;
if
(
StringUtils
.
isNotBlank
(
warehouseInInfo
))
{
if
(
StringUtils
.
isNotBlank
(
warehouseInInfo
))
{
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderQueryVO.java
View file @
33c1569c
...
@@ -521,6 +521,10 @@ public class OrderQueryVO {
...
@@ -521,6 +521,10 @@ public class OrderQueryVO {
private
Integer
asStatus
;
private
Integer
asStatus
;
@ApiModelProperty
(
value
=
"是否在公海"
)
private
Boolean
isInOpenSea
;
public
void
setStatus
(
Integer
status
)
{
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
this
.
status
=
status
;
this
.
asStatus
=
status
;
this
.
asStatus
=
status
;
...
...
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