Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
C
chinafrica
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
zhengfg
chinafrica
Commits
66f27f33
提交
66f27f33
authored
11月 28, 2019
作者:
luojie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化代购信息
上级
291c1752
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
16 行增加
和
7 行删除
+16
-7
TbCfExpressTemplateDao.xml
...ain/resources/com/platform/dao/TbCfExpressTemplateDao.xml
+1
-1
TbCfItemOrderRDao.xml
...src/main/resources/com/platform/dao/TbCfItemOrderRDao.xml
+3
-3
TbCfStoreDao.xml
...dmin/src/main/resources/com/platform/dao/TbCfStoreDao.xml
+1
-1
tbcforder.html
...orm-admin/src/main/webapp/WEB-INF/page/sys/tbcforder.html
+6
-2
tbcforder.js
platform-admin/src/main/webapp/js/sys/tbcforder.js
+5
-0
没有找到文件。
platform-admin/src/main/resources/com/platform/dao/TbCfExpressTemplateDao.xml
浏览文件 @
66f27f33
...
@@ -42,7 +42,7 @@
...
@@ -42,7 +42,7 @@
order by ${sidx} ${order}
order by ${sidx} ${order}
</when>
</when>
<otherwise>
<otherwise>
order by
template_id desc
order by
cast(template_id as SIGNED)
</otherwise>
</otherwise>
</choose>
</choose>
<if
test=
"offset != null and limit != null"
>
<if
test=
"offset != null and limit != null"
>
...
...
platform-admin/src/main/resources/com/platform/dao/TbCfItemOrderRDao.xml
浏览文件 @
66f27f33
...
@@ -144,8 +144,8 @@
...
@@ -144,8 +144,8 @@
<!--根据快递单号id,修改物流状态为已入非洲仓库 -->
<!--根据快递单号id,修改物流状态为已入非洲仓库 -->
<update
id=
"updateExpressStatuss"
>
<update
id=
"updateExpressStatuss"
>
update tb_cf_order o,tb_cf_platform_order p
update tb_cf_order o,tb_cf_platform_order p
set
o
.delivery_flag = 40
set
i
.delivery_flag = 40
where o.order_id=p.order_id and
o
.delivery_flag = 20 and p.p_express_number in
where o.order_id=p.order_id and
i
.delivery_flag = 20 and p.p_express_number in
<foreach
collection=
"array"
item=
"sids"
open=
"("
separator=
","
close=
")"
>
<foreach
collection=
"array"
item=
"sids"
open=
"("
separator=
","
close=
")"
>
#{sids}
#{sids}
</foreach>
</foreach>
...
@@ -154,7 +154,7 @@
...
@@ -154,7 +154,7 @@
<!--根据快递单号id,修改物流状态为已签收 -->
<!--根据快递单号id,修改物流状态为已签收 -->
<update
id=
"updateExpressStatusDelivery"
>
<update
id=
"updateExpressStatusDelivery"
>
update tb_cf_order o,tb_cf_platform_order p
update tb_cf_order o,tb_cf_platform_order p
set
o
.delivery_flag = 50
set
i
.delivery_flag = 50
where o.order_id=p.order_id and p.p_express_number in
where o.order_id=p.order_id and p.p_express_number in
<foreach
collection=
"array"
item=
"sids"
open=
"("
separator=
","
close=
")"
>
<foreach
collection=
"array"
item=
"sids"
open=
"("
separator=
","
close=
")"
>
#{sids}
#{sids}
...
...
platform-admin/src/main/resources/com/platform/dao/TbCfStoreDao.xml
浏览文件 @
66f27f33
...
@@ -49,7 +49,7 @@
...
@@ -49,7 +49,7 @@
order by ${sidx} ${order}
order by ${sidx} ${order}
</when>
</when>
<otherwise>
<otherwise>
order by
store_id desc
order by
cast(store_code as SIGNED)
</otherwise>
</otherwise>
</choose>
</choose>
<if
test=
"offset != null and limit != null"
>
<if
test=
"offset != null and limit != null"
>
...
...
platform-admin/src/main/webapp/WEB-INF/page/sys/tbcforder.html
浏览文件 @
66f27f33
...
@@ -216,7 +216,11 @@
...
@@ -216,7 +216,11 @@
<el-input
v-model=
"agentInfo.userName"
disabled=
"true"
></el-input>
<el-input
v-model=
"agentInfo.userName"
disabled=
"true"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"代购平台名称"
:label-width=
"formLabelWidth"
>
<el-form-item
label=
"代购平台名称"
:label-width=
"formLabelWidth"
>
<el-input
v-model=
"agentInfo.platformName"
></el-input>
<i-select
v-model=
"agentInfo.platformName"
>
<i-option
v-for=
"(el,i) in store"
:key =
'el.platformCode'
:value=
"el.platformCode"
>
{{el.platformName}}
</i-option>
</i-select>
</el-form-item>
</el-form-item>
<el-form-item
label=
"原网站订单号"
:label-width=
"formLabelWidth"
>
<el-form-item
label=
"原网站订单号"
:label-width=
"formLabelWidth"
>
<el-input
v-model=
"agentInfo.pOrderId"
></el-input>
<el-input
v-model=
"agentInfo.pOrderId"
></el-input>
...
...
platform-admin/src/main/webapp/js/sys/tbcforder.js
浏览文件 @
66f27f33
...
@@ -41,6 +41,10 @@ $(function () {
...
@@ -41,6 +41,10 @@ $(function () {
$
.
get
(
'../tbcfexpresstemplate/queryAll'
,
function
(
res
)
{
$
.
get
(
'../tbcfexpresstemplate/queryAll'
,
function
(
res
)
{
vm
.
descripition
=
JSON
.
parse
(
res
).
list
;
vm
.
descripition
=
JSON
.
parse
(
res
).
list
;
// console.log(vm.descripition)
// console.log(vm.descripition)
});
$
.
get
(
'../tbcfstore/queryAll'
,
function
(
res
)
{
vm
.
store
=
JSON
.
parse
(
res
).
list
;
console
.
log
(
vm
.
store
)
})
})
});
});
...
@@ -137,6 +141,7 @@ let vm = new Vue({
...
@@ -137,6 +141,7 @@ let vm = new Vue({
showList
:
true
,
showList
:
true
,
descripition
:
[],
descripition
:
[],
title
:
null
,
title
:
null
,
store
:
[],
tbCfOrder
:
{},
tbCfOrder
:
{},
ruleValidate
:
{
ruleValidate
:
{
name
:
[
name
:
[
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论