Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
I
ims
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
iuav
ims
Commits
8a599333
提交
8a599333
authored
12月 11, 2023
作者:
han
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop' of
ssh://git.mmcuav.cn:8222/iuav/ims
into develop
上级
a936ad07
d6a36fe3
流水线
#7480
已通过 于阶段
in 2 分 55 秒
变更
3
流水线
1
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
7 行增加
和
10 行删除
+7
-10
kustomization.yaml
kustomization/overlays/dev/kustomization.yaml
+1
-1
FlyerTrainingServiceImpl.java
...mc/csf/release/service/impl/FlyerTrainingServiceImpl.java
+4
-1
CurriculumOrderDao.xml
...ce/src/main/resources/mapper/flyer/CurriculumOrderDao.xml
+2
-8
没有找到文件。
kustomization/overlays/dev/kustomization.yaml
浏览文件 @
8a599333
...
@@ -18,4 +18,4 @@ patches:
...
@@ -18,4 +18,4 @@ patches:
images
:
images
:
-
name
:
REGISTRY/NAMESPACE/IMAGE:TAG
-
name
:
REGISTRY/NAMESPACE/IMAGE:TAG
newName
:
mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/ims
newName
:
mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/ims
newTag
:
e680f99865af925fc335aafec5e9462fc366efc1
newTag
:
1e0951b360f4b2a283187932fec3867c3477e25d
release-service/src/main/java/com/mmc/csf/release/service/impl/FlyerTrainingServiceImpl.java
浏览文件 @
8a599333
...
@@ -317,7 +317,10 @@ public class FlyerTrainingServiceImpl implements FlyerTrainingService {
...
@@ -317,7 +317,10 @@ public class FlyerTrainingServiceImpl implements FlyerTrainingService {
return
ResultBody
.
error
(
"佣金不够支付,支付失败"
);
return
ResultBody
.
error
(
"佣金不够支付,支付失败"
);
}
}
}
}
userAppApi
.
feignCurriculumOrderLog
(
request
.
getHeader
(
"token"
),
request
,
curriculumOrderLogVO
);
ResultBody
resultBody1
=
userAppApi
.
feignCurriculumOrderLog
(
request
.
getHeader
(
"token"
),
request
,
curriculumOrderLogVO
);
if
(!
"200"
.
equals
(
resultBody1
.
getCode
())){
return
ResultBody
.
error
(
"支付失败"
);
}
curriculumOrderDO
.
setOrderTotalAmount
(
curriculumInfoDO
.
getRequireAmout
());
curriculumOrderDO
.
setOrderTotalAmount
(
curriculumInfoDO
.
getRequireAmout
());
curriculumOrderDO
.
setSalaryAmount
(
userSalaryAmt
);
curriculumOrderDO
.
setSalaryAmount
(
userSalaryAmt
);
curriculumOrderDO
.
setWeChat
(
weChatPay
);
curriculumOrderDO
.
setWeChat
(
weChatPay
);
...
...
release-service/src/main/resources/mapper/flyer/CurriculumOrderDao.xml
浏览文件 @
8a599333
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<sql
id=
"Base_Column_List"
>
<sql
id=
"Base_Column_List"
>
id,order_no,user_account_id,
id,order_no,user_account_id,
back_user_id,
order_total_amount,salary_amount,
order_total_amount,salary_amount,
cash_amount,we_chat,wechat_pay_order_number
cash_amount,we_chat,wechat_pay_order_number
</sql>
</sql>
...
@@ -42,7 +42,7 @@
...
@@ -42,7 +42,7 @@
parameterType=
"com.mmc.csf.release.entity.curriculum.CurriculumOrderDO"
useGeneratedKeys=
"true"
>
parameterType=
"com.mmc.csf.release.entity.curriculum.CurriculumOrderDO"
useGeneratedKeys=
"true"
>
insert into curriculum_order
insert into curriculum_order
( id, order_no, user_account_id
( id, order_no, user_account_id
,
back_user_id,
order_total_amount, salary_amount
, order_total_amount, salary_amount
, cash_amount, we_chat, wechat_pay_order_number
, cash_amount, we_chat, wechat_pay_order_number
, create_time, update_time)
, create_time, update_time)
values ( #{id,jdbcType=INTEGER}, #{orderNo,jdbcType=VARCHAR}, #{userAccountId,jdbcType=INTEGER}
values ( #{id,jdbcType=INTEGER}, #{orderNo,jdbcType=VARCHAR}, #{userAccountId,jdbcType=INTEGER}
...
@@ -57,7 +57,6 @@
...
@@ -57,7 +57,6 @@
<if
test=
"id != null"
>
id,
</if>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"orderNo != null"
>
order_no,
</if>
<if
test=
"orderNo != null"
>
order_no,
</if>
<if
test=
"userAccountId != null"
>
user_account_id,
</if>
<if
test=
"userAccountId != null"
>
user_account_id,
</if>
<if
test=
"backUserId != null"
>
back_user_id,
</if>
<if
test=
"orderTotalAmount != null"
>
order_total_amount,
</if>
<if
test=
"orderTotalAmount != null"
>
order_total_amount,
</if>
<if
test=
"salaryAmount != null"
>
salary_amount,
</if>
<if
test=
"salaryAmount != null"
>
salary_amount,
</if>
<if
test=
"cashAmount != null"
>
cash_amount,
</if>
<if
test=
"cashAmount != null"
>
cash_amount,
</if>
...
@@ -70,7 +69,6 @@
...
@@ -70,7 +69,6 @@
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"orderNo != null"
>
#{orderNo,jdbcType=VARCHAR},
</if>
<if
test=
"orderNo != null"
>
#{orderNo,jdbcType=VARCHAR},
</if>
<if
test=
"userAccountId != null"
>
#{userAccountId,jdbcType=INTEGER},
</if>
<if
test=
"userAccountId != null"
>
#{userAccountId,jdbcType=INTEGER},
</if>
<if
test=
"backUserId != null"
>
#{backUserId,jdbcType=INTEGER},
</if>
<if
test=
"orderTotalAmount != null"
>
#{orderTotalAmount,jdbcType=DECIMAL},
</if>
<if
test=
"orderTotalAmount != null"
>
#{orderTotalAmount,jdbcType=DECIMAL},
</if>
<if
test=
"salaryAmount != null"
>
#{salaryAmount,jdbcType=DECIMAL},
</if>
<if
test=
"salaryAmount != null"
>
#{salaryAmount,jdbcType=DECIMAL},
</if>
<if
test=
"cashAmount != null"
>
#{cashAmount,jdbcType=DECIMAL},
</if>
<if
test=
"cashAmount != null"
>
#{cashAmount,jdbcType=DECIMAL},
</if>
...
@@ -89,9 +87,6 @@
...
@@ -89,9 +87,6 @@
<if
test=
"userAccountId != null"
>
<if
test=
"userAccountId != null"
>
user_account_id = #{userAccountId,jdbcType=INTEGER},
user_account_id = #{userAccountId,jdbcType=INTEGER},
</if>
</if>
<if
test=
"backUserId != null"
>
back_user_id = #{backUserId,jdbcType=INTEGER},
</if>
<if
test=
"orderTotalAmount != null"
>
<if
test=
"orderTotalAmount != null"
>
order_total_amount = #{orderTotalAmount,jdbcType=DECIMAL},
order_total_amount = #{orderTotalAmount,jdbcType=DECIMAL},
</if>
</if>
...
@@ -120,7 +115,6 @@
...
@@ -120,7 +115,6 @@
update curriculum_order
update curriculum_order
set order_no = #{orderNo,jdbcType=VARCHAR},
set order_no = #{orderNo,jdbcType=VARCHAR},
user_account_id = #{userAccountId,jdbcType=INTEGER},
user_account_id = #{userAccountId,jdbcType=INTEGER},
back_user_id = #{backUserId,jdbcType=INTEGER},
order_total_amount = #{orderTotalAmount,jdbcType=DECIMAL},
order_total_amount = #{orderTotalAmount,jdbcType=DECIMAL},
salary_amount = #{salaryAmount,jdbcType=DECIMAL},
salary_amount = #{salaryAmount,jdbcType=DECIMAL},
cash_amount = #{cashAmount,jdbcType=DECIMAL},
cash_amount = #{cashAmount,jdbcType=DECIMAL},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论