Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-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-app-operator-master
Commits
46227a32
Commit
46227a32
authored
Sep 10, 2024
by
yujinyao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单列表重置,提货状态改用字典
parent
1dffdad4
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
47 additions
and
29 deletions
+47
-29
en_US.json
src/i18n/languages/en_US.json
+0
-3
dict.js
src/utils/dict.js
+1
-0
customerFollow.vue
src/views/ecw/customer/components/customerFollow.vue
+7
-7
query.vue
src/views/ecw/customer/query.vue
+8
-6
cargoControl.vue
src/views/ecw/order/cargoControl.vue
+7
-5
index.vue
src/views/ecw/order/exception/index.vue
+5
-0
index.vue
src/views/ecw/order/index.vue
+8
-6
penddingList.vue
src/views/ecw/order/penddingList.vue
+5
-1
stockingList.vue
src/views/ecw/order/stockingList.vue
+6
-1
No files found.
src/i18n/languages/en_US.json
View file @
46227a32
...
@@ -4706,9 +4706,6 @@
...
@@ -4706,9 +4706,6 @@
"下次跟进时间"
:
"Next follow-up time"
,
"下次跟进时间"
:
"Next follow-up time"
,
"提交结果"
:
"Submit result"
,
"提交结果"
:
"Submit result"
,
"增加计划"
:
"add plan"
,
"增加计划"
:
"add plan"
,
"提货状态"
:
"pickup status"
,
"未提货"
:
"not pickup"
,
"部分提货"
:
"portion pickup"
,
"是否确认导出客户跟进记录数据项?"
:
"Are you sure to export all customer follow-up record data items?"
,
"是否确认导出客户跟进记录数据项?"
:
"Are you sure to export all customer follow-up record data items?"
,
"请选择需要核销的收款明细"
:
"Please select the collection details that need to be written off"
"请选择需要核销的收款明细"
:
"Please select the collection details that need to be written off"
}
}
src/utils/dict.js
View file @
46227a32
...
@@ -220,6 +220,7 @@ export const DICT_TYPE = {
...
@@ -220,6 +220,7 @@ export const DICT_TYPE = {
TARGET_TYPE
:
"
target_type
"
,
//部门业绩目标类型
TARGET_TYPE
:
"
target_type
"
,
//部门业绩目标类型
CEBE_UNIT
:
"
cube_unit
"
,
//目标单位
CEBE_UNIT
:
"
cube_unit
"
,
//目标单位
RECEIPT_ITEM_STATE
:
"
receipt_item_state
"
,
//收款单明细状态
RECEIPT_ITEM_STATE
:
"
receipt_item_state
"
,
//收款单明细状态
PICK_STATE
:
"
pick_state
"
,
//提货状态
// ========== 出货模块 ==========
// ========== 出货模块 ==========
BOX_SHIPPING_TRAILER_STATUS
:
"
shipping_trailer_status
"
,
// 拖车状态
BOX_SHIPPING_TRAILER_STATUS
:
"
shipping_trailer_status
"
,
// 拖车状态
BOX_SHIPPING_CUSTOMS_TYPE
:
"
shipping_customs_type
"
,
// 报关方式
BOX_SHIPPING_CUSTOMS_TYPE
:
"
shipping_customs_type
"
,
// 报关方式
...
...
src/views/ecw/customer/components/customerFollow.vue
View file @
46227a32
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
</el-col>
</el-col>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('跟进类型')"
required
>
<el-form-item
:label=
"$t('跟进类型')"
required
>
<el-select
v-model=
"form.followType"
:placeholder=
"$t('请选择')"
@
change=
"handleFollowType"
:disabled=
"isView"
>
<el-select
v-model=
"form.followType"
clearable
:placeholder=
"$t('请选择')"
@
change=
"handleFollowType"
:disabled=
"isView"
>
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.CUSTOMER_FOLLOWUP_TYPE)"
:key=
"dict.value"
:label=
"isChinese ? dict.label : dict.labelEn"
:value=
"parseInt(dict.value)"
/>
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.CUSTOMER_FOLLOWUP_TYPE)"
:key=
"dict.value"
:label=
"isChinese ? dict.label : dict.labelEn"
:value=
"parseInt(dict.value)"
/>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
...
@@ -36,12 +36,12 @@
...
@@ -36,12 +36,12 @@
-->
-->
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('跟进时间')"
required
>
<el-form-item
:label=
"$t('跟进时间')"
required
>
<el-date-picker
v-model=
"form.followTime"
type=
"datetime"
:placeholder=
"$t('请选择')"
:disabled=
"isView"
></el-date-picker
>
<el-date-picker
v-model=
"form.followTime"
clearable
type=
"datetime"
:placeholder=
"$t('请选择')"
:disabled=
"isView"
/
>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('联系人')"
required
>
<el-form-item
:label=
"$t('联系人')"
required
>
<el-select
v-model=
"form.contactName"
:placeholder=
"$t('请选择')"
:disabled=
"isView"
>
<el-select
v-model=
"form.contactName"
clearable
:placeholder=
"$t('请选择')"
:disabled=
"isView"
>
<el-option
v-for=
"(item, index) in customerContactsList"
:key=
"index"
:label=
"item.name"
:value=
"item.name"
>
<el-option
v-for=
"(item, index) in customerContactsList"
:key=
"index"
:label=
"item.name"
:value=
"item.name"
>
</el-option>
</el-option>
</el-select>
</el-select>
...
@@ -49,15 +49,15 @@
...
@@ -49,15 +49,15 @@
</el-col>
</el-col>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('客户经理')"
required
>
<el-form-item
:label=
"$t('客户经理')"
required
>
<el-select
v-model=
"form.followUserId"
:placeholder=
"$t('请选择')"
:disabled=
"isView"
>
<el-select
v-model=
"form.followUserId"
clearable
:placeholder=
"$t('请选择')"
:disabled=
"isView"
>
<el-option
v-for=
"item in serviceUserList"
:key=
"item.id"
:label=
"item.nickname"
:value=
"item.id"
>
<el-option
v-for=
"item in serviceUserList"
:key=
"item.id"
:label=
"item.nickname"
:value=
"item.id"
>
</el-option>
</el-option>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('跟进方式')"
required
>
<el-form-item
:label=
"$t('跟进方式')"
required
>
<dict-selector
ref=
"dictMethod"
v-model=
"form.followMethod"
:disabled=
"isView"
:type=
"DICT_TYPE.CUSTOMER_FOLLOWUP_METHOD"
></dict-selector>
<dict-selector
ref=
"dictMethod"
v-model=
"form.followMethod"
clearable
:disabled=
"isView"
:type=
"DICT_TYPE.CUSTOMER_FOLLOWUP_METHOD"
></dict-selector>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
...
@@ -67,7 +67,7 @@
...
@@ -67,7 +67,7 @@
</el-col>
</el-col>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('跟进结果')"
prop=
"followMethod"
>
<el-form-item
:label=
"$t('跟进结果')"
prop=
"followMethod"
>
<el-select
v-model=
"form.resultType"
:placeholder=
"$t('请选择')"
:disabled=
"isView"
>
<el-select
v-model=
"form.resultType"
clearable
:placeholder=
"$t('请选择')"
:disabled=
"isView"
>
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.CUSTOMER_FOLLOWUP_RESULT_TYPE)"
:key=
"dict.value"
:label=
"isChinese ? dict.label : dict.labelEn"
:value=
"parseInt(dict.value)"
/>
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.CUSTOMER_FOLLOWUP_RESULT_TYPE)"
:key=
"dict.value"
:label=
"isChinese ? dict.label : dict.labelEn"
:value=
"parseInt(dict.value)"
/>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
...
...
src/views/ecw/customer/query.vue
View file @
46227a32
...
@@ -155,14 +155,16 @@
...
@@ -155,14 +155,16 @@
<
el
-
descriptions
-
item
:
label
=
"
$t('已出货订单')
"
>
{{
orderStatisticsObj
.
shipmentTotal
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('已出货订单')
"
>
{{
orderStatisticsObj
.
shipmentTotal
||
0
}}
<
/el-descriptions-item
>
<
/el-descriptions
>
<
/el-descriptions
>
<
el
-
table
:
data
=
"
orderList
"
>
<
el
-
table
:
data
=
"
orderList
"
>
<
el
-
table
-
column
:
label
=
"
$t('订单编号')
"
width
=
"
120px
"
align
=
"
center
"
prop
=
"
orderNo
"
>
<
el
-
table
-
column
:
label
=
"
$t('订单编号')
"
width
=
"
120px
"
align
=
"
center
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
template
slot
-
scope
=
"
{row
}
"
>
<
router
-
link
:
to
=
"
{path: '/order/detail',query: {orderId: scope.row.orderId
}}
"
class
=
"
link-type
"
>
<
el
-
link
type
=
"
primary
"
@
click
.
native
=
"
$router.push('/order/detail?orderId=' + row.orderId)
"
>
{{
row
.
orderNo
}}
<
/el-link
>
<
span
>
{{
scope
.
row
.
orderNo
}}
<
/span
>
<
/template
>
<
/router-link
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('报价单号')
"
align
=
"
center
"
width
=
"
120px
"
>
<
template
slot
-
scope
=
"
{row
}
"
>
<
el
-
link
type
=
"
primary
"
@
click
.
native
=
"
$router.push('/offer/detail?offerId=' + row.offerId)
"
>
{{
row
.
offerNo
}}
<
/el-link
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('报价单号')
"
align
=
"
center
"
prop
=
"
offerNumbers
"
/>
<
el
-
table
-
column
:
label
=
"
$t('唛头')
"
align
=
"
center
"
prop
=
"
marks
"
/>
<
el
-
table
-
column
:
label
=
"
$t('唛头')
"
align
=
"
center
"
prop
=
"
marks
"
/>
<
el
-
table
-
column
:
label
=
"
$t('总箱数/入仓箱数')
"
align
=
"
center
"
prop
=
"
sumNum
"
>
<
el
-
table
-
column
:
label
=
"
$t('总箱数/入仓箱数')
"
align
=
"
center
"
prop
=
"
sumNum
"
>
<
template
slot
-
scope
=
"
{row
}
"
>
<
template
slot
-
scope
=
"
{row
}
"
>
...
...
src/views/ecw/order/cargoControl.vue
View file @
46227a32
...
@@ -170,11 +170,13 @@
...
@@ -170,11 +170,13 @@
</el-form-item>-->
</el-form-item>-->
<el-form-item
:label=
"$t('提货状态')"
v-show=
"showSearch"
>
<el-form-item
:label=
"$t('提货状态')"
v-show=
"showSearch"
>
<el-select
multiple
clearable
v-model=
"queryParams.pickStateList"
>
<dict-selector
<el-option
:label=
"$t('未提货')"
:value=
"0"
/>
:type=
"DICT_TYPE.PICK_STATE"
<el-option
:label=
"$t('部分提货')"
:value=
"1"
/>
multiple
<el-option
:label=
"$t('已提货')"
:value=
"2"
/>
v-model=
"queryParams.pickStateList"
</el-select>
clearable
@
change=
"handleQuery"
/>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('提货率')"
v-show=
"showSearch"
>
<el-form-item
:label=
"$t('提货率')"
v-show=
"showSearch"
>
<el-input
<el-input
...
...
src/views/ecw/order/exception/index.vue
View file @
46227a32
...
@@ -1060,6 +1060,11 @@ export default {
...
@@ -1060,6 +1060,11 @@ export default {
marksKey
:
"
in
"
,
marksKey
:
"
in
"
,
goodsNameKey
:
"
in
"
,
goodsNameKey
:
"
in
"
,
};
};
this
.
destCountryId
=
null
this
.
destWarehouseId
=
null
this
.
objectiveId
=
null
this
.
queryParams
.
channelIds
=
null
this
.
getList
();
this
.
getList
();
},
},
importCityName
(
id
)
{
importCityName
(
id
)
{
...
...
src/views/ecw/order/index.vue
View file @
46227a32
...
@@ -339,11 +339,13 @@
...
@@ -339,11 +339,13 @@
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('提货状态')"
v-show=
"showSearch"
>
<el-form-item
:label=
"$t('提货状态')"
v-show=
"showSearch"
>
<el-select
multiple
clearable
v-model=
"queryParams.pickStateList"
>
<dict-selector
<el-option
:label=
"$t('未提货')"
:value=
"0"
/>
:type=
"DICT_TYPE.PICK_STATE"
<el-option
:label=
"$t('部分提货')"
:value=
"1"
/>
multiple
<el-option
:label=
"$t('已提货')"
:value=
"2"
/>
v-model=
"queryParams.pickStateList"
</el-select>
clearable
@
change=
"handleQuery"
/>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('提货率')"
v-show=
"showSearch"
>
<el-form-item
:label=
"$t('提货率')"
v-show=
"showSearch"
>
<el-input
<el-input
...
@@ -2052,7 +2054,7 @@ export default {
...
@@ -2052,7 +2054,7 @@ export default {
this
.
destWarehouseId
=
null
this
.
destWarehouseId
=
null
this
.
objectiveId
=
null
this
.
objectiveId
=
null
this
.
queryParams
.
channelId
=
""
;
this
.
queryParams
.
channelId
s
=
null
;
this
.
noParam
.
value
=
""
;
this
.
noParam
.
value
=
""
;
this
.
prodParam
.
value
=
""
;
this
.
prodParam
.
value
=
""
;
this
.
dateFilter
=
[];
this
.
dateFilter
=
[];
...
...
src/views/ecw/order/penddingList.vue
View file @
46227a32
...
@@ -562,7 +562,11 @@ export default {
...
@@ -562,7 +562,11 @@ export default {
rows
:
10
rows
:
10
}
}
this
.
dateFilter
=
[]
this
.
dateFilter
=
[]
// this.queryParams.channelId = ''
this
.
destCountryId
=
null
this
.
destWarehouseId
=
null
this
.
objectiveId
=
null
this
.
queryParams
.
channelIds
=
null
this
.
handleQuery
();
this
.
handleQuery
();
},
},
/** 新增按钮操作 */
/** 新增按钮操作 */
...
...
src/views/ecw/order/stockingList.vue
View file @
46227a32
...
@@ -727,7 +727,12 @@ export default {
...
@@ -727,7 +727,12 @@ export default {
page
:
1
,
page
:
1
,
rows
:
10
,
rows
:
10
,
};
};
this
.
dateFilter
=
[];
this
.
dateFilter
=
[]
this
.
destCountryId
=
null
this
.
destWarehouseId
=
null
this
.
objectiveId
=
null
this
.
queryParams
.
channelIds
=
null
this
.
handleQuery
();
this
.
handleQuery
();
},
},
/** 新增按钮操作 */
/** 新增按钮操作 */
...
...
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