Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
12399da6
Commit
12399da6
authored
Dec 29, 2023
by
guojx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
获取销售和会员的导购列表数据
parent
8eebc161
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
DataController.java
...gic/haoban/manage/web/controller/data/DataController.java
+1
-1
ClerkListQO.java
...n/java/com/gic/haoban/manage/web/qo/data/ClerkListQO.java
+11
-2
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/data/DataController.java
View file @
12399da6
...
...
@@ -114,7 +114,7 @@ public class DataController {
Integer
clerkType
=
qo
.
getClerkType
();
boolean
isSale
=
clerkType
==
1
;
Integer
pageNum
=
jsonObject
.
getInteger
(
"pageNum"
);
String
apolloKey
=
isSale
?
"data_sales_perf_anal_cont_clerk_group"
:
"data_mbr_scale_stat_clerk_overview"
;
String
apolloKey
=
qo
.
getApolloKey
()
;
boolean
isFirstPage
=
pageNum
==
1
;
if
(
isSale
)
{
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/data/ClerkListQO.java
View file @
12399da6
...
...
@@ -16,9 +16,18 @@ public class ClerkListQO implements Serializable {
private
Integer
clerkType
=
1
;
/**
* 数据组配置的接口key。数据组提供的yapi文档上有
*/
private
String
apolloKey
;
/**
* 组装的参数,JSON字符串.数据组提供的yapi文档上有.
* 销售:data_sales_perf_anal_cont_clerk_group 会员:data_mbr_scale_stat_clerk_overview
* 注:门店参数storeId根据storeSelect参数计算
* 销售:data_sales_perf_anal_cont_clerk_group 会员:
* 0: 'data_mbr_scale_stat_clerk_overview',
* 1: 'data_mbr_scale_stat_week_clerk_overview',
* 2: 'data_mbr_scale_stat_month_clerk_overview',
* 3: 'data_mbr_scale_stat_year_clerk_overview',
* 4: 'data_mbr_scale_stat_custm_clerk_overview'
* params里面的销售的storeGroup字段和会员的groupType字段不需要,如果有,也是无效,后端定值覆盖
*/
private
String
params
;
...
...
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