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
79a160bc
Commit
79a160bc
authored
Dec 27, 2022
by
我在何方
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
1c6b1f83
28fa50fe
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
48 additions
and
20 deletions
+48
-20
splitOrder.vue
...views/ecw/box/shippingSea/nodePage/cabinet/splitOrder.vue
+1
-1
seaProcess.vue
src/views/ecw/box/shippingSea/seaProcess.vue
+3
-3
receiptDetail.vue
src/views/ecw/financial/receiptDetail.vue
+9
-4
batchEdit.vue
src/views/ecw/productPrice/batchEdit.vue
+1
-1
index.vue
src/views/ecw/productPrice/index.vue
+34
-11
No files found.
src/views/ecw/box/shippingSea/nodePage/cabinet/splitOrder.vue
View file @
79a160bc
...
...
@@ -145,7 +145,7 @@
</el-table-column>
<el-table-column
:label=
"$t('重量')"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
weight
}}
m³
</span>
<span>
{{
scope
.
row
.
weight
}}
kg
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('箱数')"
align=
"center"
>
...
...
src/views/ecw/box/shippingSea/seaProcess.vue
View file @
79a160bc
...
...
@@ -238,9 +238,9 @@ export default {
node
.
currStatus
=
"
end
"
;
// 判断是否存在异常未处理
if
(
val
.
customsHasAbnormal
||
val
.
shippingHasAbnormal
||
val
.
arrivalHasAbnormal
(
type
===
"
cusDeclaration
"
&&
val
.
customsHasAbnormal
)
||
(
type
===
"
departure
"
&&
val
.
shippingHasAbnormal
)
||
(
type
===
"
arrival
"
&&
val
.
arrivalHasAbnormal
)
)
{
continue
;
}
...
...
src/views/ecw/financial/receiptDetail.vue
View file @
79a160bc
...
...
@@ -220,7 +220,12 @@
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('汇率')
"
align
=
"
center
"
prop
=
"
rate
"
/>
<
el
-
table
-
column
:
label
=
"
$t('核销货币金额')
"
align
=
"
center
"
prop
=
"
writeOffAmount
"
/>
<!--
<
el
-
table
-
column
:
label
=
"
$t('核销货币金额')
"
align
=
"
center
"
prop
=
"
writeOffAmount
"
/>-->
<
el
-
table
-
column
align
=
"
center
"
prop
=
"
writeOffAmount
"
>
<
template
#
header
>
{{
$t
(
'
兑核销基准金额
'
)
}}
(
{{
getCurrencyLabel
(
showCurrencyId
)
}}
)
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('实收日期')
"
align
=
"
center
"
prop
=
"
amountDate
"
>
<!--
<
template
slot
-
scope
=
"
scope
"
>
<
span
>
{{
parseTime
(
scope
.
row
.
amountDate
,
'
{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
...
...
@@ -353,10 +358,10 @@
<
el
-
form
-
item
v
-
if
=
"
showCurrencyId != addForm.currencyId
"
prop
=
"
rate
"
:
rules
=
"
{ required: true, trigger: ['blur', 'change'], message: $t('汇率不能为空')
}
"
:
rules
=
"
{ required: true, trigger: ['blur', 'change'], message: $t('
兑核销基准币种
汇率不能为空')
}
"
>
<
template
slot
=
"
label
"
>
{{
$t
(
'
汇率
'
)
}}
(
{{
getCurrencyLabel
(
showCurrencyId
)
}}
)
{{
$t
(
'
兑核销基准币种
汇率
'
)
}}
(
{{
getCurrencyLabel
(
showCurrencyId
)
}}
)
<
/template
>
<
el
-
input
v
-
if
=
"
!isView
"
v
-
model
=
"
addForm.rate
"
style
=
"
width: 220px
"
><
/el-input
>
<
span
v
-
else
>
{{
addForm
.
rate
}}
<
/span
>
...
...
@@ -365,7 +370,7 @@
v
-
if
=
"
showCurrencyId != addForm.currencyId
"
>
<
template
slot
=
"
label
"
>
{{
$t
(
'
金额
'
)
}}
(
{{
getCurrencyLabel
(
showCurrencyId
)
}}
)
{{
$t
(
'
兑核销基准币种
金额
'
)
}}
(
{{
getCurrencyLabel
(
showCurrencyId
)
}}
)
<
/template
>
<
span
>
{{
addForm
.
writeOffAmount
?
parseFloat
(
addForm
.
writeOffAmount
).
toFixed
(
6
):
''
}}
<
/span
>
<
/el-form-item
>
...
...
src/views/ecw/productPrice/batchEdit.vue
View file @
79a160bc
...
...
@@ -361,7 +361,7 @@ export default {
}
let
data
=
Object
.
assign
({
}
,
this
.
form
,
{
// lineChannelList: this.selectedRoutes,
specialList
:
this
.
specialProducts
,
//
specialList: this.specialProducts,
isAllProduct
:
this
.
isAllProduct
?
1
:
0
}
)
/* if(this.form.stepPrice == 1){
...
...
src/views/ecw/productPrice/index.vue
View file @
79a160bc
...
...
@@ -151,6 +151,27 @@
<el-table-column
prop=
"price"
:label=
"$t('价格')"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<template
v-if=
"scope.row.stepPrice == 1"
>
{{
$t
(
"
第{no
}
阶梯({start
}
~{end
}
{weightUnit
}
)
"
,
{
no
:
1
,
start
:
scope
.
row
.
priceStepList
[
0
].
startNum
,
end
:
scope
.
row
.
priceStepList
[
0
].
endNum
,
weightUnit
:
getUnitTitle
(
scope
.
row
.
priceStepList
[
0
].
weightUnit
),
}
)
}}
<
br
/>
<
div
v
-
if
=
"
scope.row.priceType == 0
"
>
{{
$t
(
'
运费
'
)
}}
:{{
getCurrencySymbol
(
scope
.
row
.
priceStepList
[
0
].
transportPriceUnit
)
+
scope
.
row
.
priceStepList
[
0
].
transportPrice
}}
&
nbsp
;
{{
getCurrencyTitle
(
scope
.
row
.
priceStepList
[
0
].
transportPriceUnit
)
+
'
/
'
+
getUnitTitle
(
scope
.
row
.
priceStepList
[
0
].
transportVolumeUnit
)
}}
<
br
/>
{{
$t
(
'
清关费
'
)
}}
:{{
getCurrencySymbol
(
scope
.
row
.
priceStepList
[
0
].
clearancePriceUnit
)
+
scope
.
row
.
priceStepList
[
0
].
clearancePrice
}}
&
nbsp
;
{{
getCurrencyTitle
(
scope
.
row
.
priceStepList
[
0
].
clearancePriceUnit
)
+
'
/
'
+
getUnitTitle
(
scope
.
row
.
priceStepList
[
0
].
clearanceVolumeUnit
)
}}
<
/div
>
<
div
v
-
if
=
"
scope.row.priceType == 1
"
>
{{
$t
(
'
全包价
'
)
}}
:{{
getCurrencySymbol
(
scope
.
row
.
priceStepList
[
0
].
allPriceUnit
)
+
scope
.
row
.
priceStepList
[
0
].
allPrice
}}
&
nbsp
;
{{
getCurrencyTitle
(
scope
.
row
.
priceStepList
[
0
].
allPriceUnit
)
+
'
/
'
+
getUnitTitle
(
scope
.
row
.
priceStepList
[
0
].
allVolumeUnit
)
}}
<
/div
>
<
/template
>
<
template
v
-
else
>
<
div
v
-
if
=
"
scope.row.priceType == 0
"
>
{{
$t
(
'
运费
'
)
}}
:{{
getCurrencySymbol
(
scope
.
row
.
transportPriceUnit
)
+
scope
.
row
.
transportPrice
}}
&
nbsp
;
{{
getCurrencyTitle
(
scope
.
row
.
transportPriceUnit
)
+
'
/
'
+
getUnitTitle
(
scope
.
row
.
transportVolumeUnit
)
}}
...
...
@@ -163,6 +184,8 @@
{{
getCurrencyTitle
(
scope
.
row
.
allPriceUnit
)
+
'
/
'
+
getUnitTitle
(
scope
.
row
.
allVolumeUnit
)
}}
<
/div
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
auditStatus
"
align
=
"
center
"
:
label
=
"
$t('状态')
"
width
=
"
120
"
>
...
...
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