Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
promotion-service
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
promotion
promotion-service
Commits
4aec24f1
提交
4aec24f1
authored
10月 14, 2024
作者:
李秋林
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
1、打卡、活动上报添加[所属经销商]信息
上级
d8aa924a
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
27 行增加
和
14 行删除
+27
-14
TemporaryActivityCoreController.java
...r/activity/temporary/TemporaryActivityCoreController.java
+1
-0
TemporaryActivityClockDO.java
...main/activity/mapper/entity/TemporaryActivityClockDO.java
+9
-4
TemporaryActivityReportedDO.java
...n/activity/mapper/entity/TemporaryActivityReportedDO.java
+2
-0
TemporaryActivityReportedDto.java
.../activity/temporary/dto/TemporaryActivityReportedDto.java
+2
-0
TemporaryClockDto.java
...motion/pojo/activity/temporary/dto/TemporaryClockDto.java
+11
-9
TemporaryActivityClockCoreServiceImpl.java
...temporary/impl/TemporaryActivityClockCoreServiceImpl.java
+2
-1
没有找到文件。
src/main/java/com/wangxiaolu/promotion/controller/activity/temporary/TemporaryActivityCoreController.java
浏览文件 @
4aec24f1
...
...
@@ -68,6 +68,7 @@ public class TemporaryActivityCoreController {
*/
TemporaryClockDto
clockDto
=
tempActivityClockQueryService
.
findTodayTemporaryClockByTemId
(
temActDto
.
getTemporaryId
());
temActDto
.
setApproveStatus
(
TemActApproveStatus
.
SUBMITTED
)
.
setDealerName
(
clockDto
.
getDealerName
())
.
setLineName
(
clockDto
.
getLineName
())
.
setStoreName
(
clockDto
.
getStoreName
())
.
setDeptQcId
(
clockDto
.
getDeptQcId
())
...
...
src/main/java/com/wangxiaolu/promotion/domain/activity/mapper/entity/TemporaryActivityClockDO.java
浏览文件 @
4aec24f1
...
...
@@ -36,6 +36,11 @@ public class TemporaryActivityClockDO implements Serializable {
*/
private
Long
reportedId
;
/**
* 经销商名称
*/
private
String
dealerName
;
/**
* qince_clientele_store表qc_id
*/
...
...
@@ -61,12 +66,12 @@ public class TemporaryActivityClockDO implements Serializable {
/**
* 打卡所在地-省
*/
String
clockProvince
;
private
String
clockProvince
;
/**
* 打卡所在地-市
*/
String
clockCity
;
private
String
clockCity
;
/**
* 上班打卡地址
...
...
@@ -144,10 +149,10 @@ public class TemporaryActivityClockDO implements Serializable {
private
Date
modifyTime
;
// 活动模式Id
Integer
activityPatternId
;
private
Integer
activityPatternId
;
// 活动模式
String
activityPattern
;
private
String
activityPattern
;
/**
...
...
src/main/java/com/wangxiaolu/promotion/domain/activity/mapper/entity/TemporaryActivityReportedDO.java
浏览文件 @
4aec24f1
...
...
@@ -32,6 +32,8 @@ public class TemporaryActivityReportedDO implements Serializable {
*/
private
String
temporaryName
;
private
String
dealerName
;
/**
* 关联—活动店铺id
*/
...
...
src/main/java/com/wangxiaolu/promotion/pojo/activity/temporary/dto/TemporaryActivityReportedDto.java
浏览文件 @
4aec24f1
...
...
@@ -35,6 +35,8 @@ public class TemporaryActivityReportedDto {
*/
private
String
temporaryName
;
private
String
dealerName
;
/**
* 关联—活动店铺id
*/
...
...
src/main/java/com/wangxiaolu/promotion/pojo/activity/temporary/dto/TemporaryClockDto.java
浏览文件 @
4aec24f1
...
...
@@ -34,24 +34,26 @@ public class TemporaryClockDto {
/**
* 关联活动上报id
*/
private
Long
reportedId
;
Long
reportedId
;
Long
storeId
;
private
String
lineName
;
String
dealerName
;
String
lineName
;
/**
* qince_clientele_store表store_name
*/
private
String
storeName
;
String
storeName
;
private
String
deptQcId
;
String
deptQcId
;
private
String
deptQcOrgName
;
String
deptQcOrgName
;
private
String
chargerQcId
;
String
chargerQcId
;
private
String
chargerName
;
String
chargerName
;
// 上班打卡地址
String
clockInAddress
;
...
...
@@ -82,7 +84,7 @@ public class TemporaryClockDto {
// 午休下班打卡图片
String
noonClockOutPhoto
;
Date
noonClockOutPhotoUpdateTime
;
;
Date
noonClockOutPhotoUpdateTime
;
// 午休下班打卡时间
Date
noonClockOutTime
;
...
...
@@ -135,7 +137,7 @@ public class TemporaryClockDto {
* 是否删除
* 1:有效;0:删除;
*/
private
Integer
isDelete
;
Integer
isDelete
;
public
TemporaryClockDto
(
Integer
clockType
,
Long
id
,
Integer
temporaryId
,
String
temporaryName
,
String
clockProvince
,
String
clockCity
)
{
if
(!
ClockType
.
TEMPORARY_CLOCK_IN
.
equals
(
clockType
))
{
...
...
src/main/java/com/wangxiaolu/promotion/service/activity/temporary/impl/TemporaryActivityClockCoreServiceImpl.java
浏览文件 @
4aec24f1
...
...
@@ -66,7 +66,8 @@ public class TemporaryActivityClockCoreServiceImpl implements TemporaryActivityC
.
setChargerQcId
(
employeeDto
.
getQcId
())
.
setChargerName
(
employeeDto
.
getName
())
.
setActivityPatternId
(
planInfoDto
.
getActivityPatternId
())
.
setActivityPattern
(
planInfoDto
.
getActivityPattern
());
.
setActivityPattern
(
planInfoDto
.
getActivityPattern
())
.
setDealerName
(
planInfoDto
.
getDealerName
());
temporaryActivityClockDao
.
save
(
dto
);
}
else
{
temporaryActivityClockDao
.
updateById
(
dto
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论