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
dc5d6b48
Commit
dc5d6b48
authored
Aug 25, 2024
by
yanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: 客户详情中订单tag添加字段
parent
3ce30b31
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
3 deletions
+37
-3
CustomerDetailController.http
...roller/admin/customerDetail/CustomerDetailController.http
+9
-0
OrderBackPageVO.java
.../iocoder/yudao/module/order/vo/order/OrderBackPageVO.java
+21
-1
OrderMapper.xml
...rder-core/src/main/resources/mapper/order/OrderMapper.xml
+6
-1
OrderController.http
.../module/order/controller/admin/order/OrderController.http
+1
-1
No files found.
yudao-module-customer/yudao-module-customer-rest/src/main/java/cn/iocoder/yudao/module/customer/controller/admin/customerDetail/CustomerDetailController.http
View file @
dc5d6b48
...
...
@@ -10,4 +10,13 @@ Content-Type: application/json
GET {{baseUrl}}/customer/detail/infoList/creditScoreStatistic?customerId=34831
Authorization: Bearer {{token}}
tenant-id: {{adminTenentId}}
Content-Type: application/json
### 客户报价
GET {{baseUrl}}/customer/detail/infoList/offerPage?pageNo=1&pageSize=10&total=0&customerId=12925
Authorization: Bearer {{token}}
tenant-id: {{adminTenentId}}
Content-Type: application/json
\ No newline at end of file
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderBackPageVO.java
View file @
dc5d6b48
...
...
@@ -323,9 +323,12 @@ public class OrderBackPageVO {
@ApiModelProperty
(
value
=
"首次入仓时间"
)
private
Date
inTime
;
@ApiModelProperty
(
value
=
"已装柜时间"
)
@ApiModelProperty
(
value
=
"已装柜时间
/到仓时间
"
)
private
Date
loadTime
;
@ApiModelProperty
(
value
=
"已卸柜时间/出仓时间"
)
private
Date
unloadTime
;
/**
* 渠道名称
...
...
@@ -460,6 +463,23 @@ public class OrderBackPageVO {
private
Integer
lang
;
// -----------start -----------
// add 20240825. 客户详情中 订单列表返回的数据
@ApiModelProperty
(
value
=
"报价单编号 多个以逗号分隔"
)
private
String
offerNumbers
;
@ApiModelProperty
(
value
=
"业绩归属客户名称"
)
private
String
customerName
;
@ApiModelProperty
(
value
=
"提货数量"
)
private
Integer
pickNum
;
// -----------end -----------
public
void
setGuanLianOrderStatus
(
String
guanLianOrderStatus
)
{
this
.
guanLianOrderStatus
=
guanLianOrderStatus
;
if
(
StringUtils
.
isNotBlank
(
guanLianOrderStatus
))
{
...
...
yudao-module-order/yudao-module-order-core/src/main/resources/mapper/order/OrderMapper.xml
View file @
dc5d6b48
...
...
@@ -1006,6 +1006,7 @@
o.is_exception,
o.create_time,
o.load_time,
o.unload_time,
(select su.nickname from system_user su where su.deleted = 0 and su.id = o.salesman_id) as salesman_name,
(select min(wi.`in_time`) from ecw_order_warehouse_in wi where wi.deleted = 0 and wi.order_id = o.order_id ) as
in_time,
...
...
@@ -1020,8 +1021,12 @@
nee.country_code as consignee_country_code,
if(#{query.lang} = 0, channel.name_zh, channel.name_en) as channel_name,
o.update_time,
#{query.lang} as lang
#{query.lang} as lang,
(SELECT GROUP_CONCAT(t1.number) FROM ecw_offer t1 WHERE t1.order_id = o.order_id and t1.status = 4) as offer_numbers,
c.name as customer_name,
(SELECT sum(eop.pick_num) FROM ecw_order_pickup eop WHERE eop.order_id = o.order_no) AS pickNum
from ecw_order o
left join ecw_customer c on o.customer_id = c.id
left join (
SELECT
ewl.id AS line_id,
...
...
yudao-module-order/yudao-module-order-rest/src/main/java/cn/iocoder/yudao/module/order/controller/admin/order/OrderController.http
View file @
dc5d6b48
...
...
@@ -74,7 +74,7 @@ tenant-id: {{adminTenentId}}
### 查询前20条
GET {{baseUrl}}/ecw/order/customer-order-page?
customerDetailId=29572
GET {{baseUrl}}/ecw/order/customer-order-page?
page=2&customerDetailId=12925
Authorization: Bearer {{token}}
tenant-id: {{adminTenentId}}
...
...
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