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
79effc3a
Commit
79effc3a
authored
Nov 17, 2023
by
邓春圆
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
11fb9934
7c858866
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
708 additions
and
10 deletions
+708
-10
index.vue
src/views/ecw/order/index.vue
+10
-2
NewProduct.vue
src/views/ecw/order/stocking/components/NewProduct.vue
+675
-0
Package.vue
src/views/ecw/order/stocking/components/Package.vue
+0
-1
index.vue
src/views/ecw/order/stocking/index.vue
+16
-3
edit.vue
src/views/ecw/productPrice/edit.vue
+1
-1
index.vue
src/views/ecw/productPrice/index.vue
+6
-3
No files found.
src/views/ecw/order/index.vue
View file @
79effc3a
...
@@ -343,9 +343,17 @@
...
@@ -343,9 +343,17 @@
</
template
>
</
template
>
<!-- 合单,拆单 -->
<!-- 合单,拆单 -->
<
template
v-if=
" (scope.row.status < 12 || (scope.row.status == 12 && scope.row.shipmentState == 314)) && !scope.row.abnormalState && scope.row.status > 3 && exclude(scope.row.inWarehouseState, [204,205,206,212,213])"
>
<!--可出后不显示拆单(经确认合单也不显示) https://zentao.test.jdshangmen.com/bug-view-5322.html-->
<
template
v-if=
" ([3,4].indexOf(scope.row.transportId) < 0 || scope.row.airShipment < 2) &&
(scope.row.status < 12 || (scope.row.status == 12 && scope.row.shipmentState == 314))
&& !scope.row.abnormalState && scope.row.status > 3
&& exclude(scope.row.inWarehouseState, [204,205,206,212,213])"
>
<el-dropdown-item
@
click.native=
"$router.push(`/order/singleApply?orderNo=$
{scope.row.orderNo}`)" v-hasPermi="['ecw:order:merge']">
{{
$t
(
'
合单申请
'
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"$router.push(`/order/singleApply?orderNo=$
{scope.row.orderNo}`)" v-hasPermi="['ecw:order:merge']">
{{
$t
(
'
合单申请
'
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"$router.push(`/order/splitApply?orderId=$
{scope.row.orderId}`)" v-hasPermi="['ecw:order:split']">
{{
$t
(
'
拆单申请
'
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"$router.push(`/order/splitApply?orderId=$
{scope.row.orderId}`)"
v-hasPermi="['ecw:order:split']">
{{
$t
(
'
拆单申请
'
)
}}
</el-dropdown-item>
</
template
>
</
template
>
<!--撤销拆单,拆单的子订单,预装前显示,预装后变灰不可点击-->
<!--撤销拆单,拆单的子订单,预装前显示,预装后变灰不可点击-->
...
...
src/views/ecw/order/stocking/components/NewProduct.vue
0 → 100644
View file @
79effc3a
This diff is collapsed.
Click to expand it.
src/views/ecw/order/stocking/components/Package.vue
View file @
79effc3a
...
@@ -242,7 +242,6 @@ import ImageAndVideoUpload from "@/components/ImageAndVideoUpload/index.vue";
...
@@ -242,7 +242,6 @@ import ImageAndVideoUpload from "@/components/ImageAndVideoUpload/index.vue";
export
default
{
export
default
{
name
:
"
Package
"
,
name
:
"
Package
"
,
components
:
{
components
:
{
ImageAndVideoUpload
,
ImageAndVideoUpload
,
WarehouseRecordDetail
,
WarehouseRecordDetail
,
...
...
src/views/ecw/order/stocking/index.vue
View file @
79effc3a
...
@@ -5,7 +5,11 @@
...
@@ -5,7 +5,11 @@
<order-base-info
:order=
"order"
stocking
></order-base-info>
<order-base-info
:order=
"order"
stocking
></order-base-info>
<h2>
{{
$t
(
'
货物信息
'
)
}}
</h2>
<div
class=
"flex items-center"
>
<div
class=
"flex-1 page-title"
>
{{
$t
(
'
货物信息
'
)
}}
</div>
<el-button
type=
"primary"
@
click=
"showNewProductDialog=true"
>
{{
$t
(
'
添加新品名
'
)
}}
</el-button>
</div>
<!--
<!--
未入仓的不显示 https://zentao.test.jdshangmen.com/bug-view-5292.html
未入仓的不显示 https://zentao.test.jdshangmen.com/bug-view-5292.html
-->
-->
...
@@ -234,6 +238,11 @@
...
@@ -234,6 +238,11 @@
v-if=
"!!packageOrderItem"
v-if=
"!!packageOrderItem"
@
close=
"onPackageClose"
@
close=
"onPackageClose"
></package>
></package>
<new-product
:order=
"order"
v-if=
"showNewProductDialog"
@
close=
"onPackageClose"
></new-product>
<media-dialog
v-if=
"curPictrues"
:value=
"curPictrues"
@
close=
"curPictrues=null"
></media-dialog>
<media-dialog
v-if=
"curPictrues"
:value=
"curPictrues"
@
close=
"curPictrues=null"
></media-dialog>
</div>
</div>
</template>
</template>
...
@@ -277,7 +286,8 @@ export default {
...
@@ -277,7 +286,8 @@ export default {
PrintWarehouseReceipt
,
PrintWarehouseReceipt
,
imageUpload
,
imageUpload
,
ImageAndVideoUpload
,
ImageAndVideoUpload
,
Package
Package
,
NewProduct
:
()
=>
import
(
'
@/views/ecw/order/stocking/components/NewProduct.vue
'
)
},
},
mounted
()
{
mounted
()
{
...
@@ -346,7 +356,9 @@ export default {
...
@@ -346,7 +356,9 @@ export default {
packageWarehouseItem
:
null
,
packageWarehouseItem
:
null
,
productAttrList
:
[],
productAttrList
:
[],
// 当前查看的影像
// 当前查看的影像
curPictrues
:
null
curPictrues
:
null
,
// 是否显示添加新品弹窗
showNewProductDialog
:
false
}
}
},
},
...
@@ -437,6 +449,7 @@ export default {
...
@@ -437,6 +449,7 @@ export default {
onPackageClose
(){
onPackageClose
(){
this
.
packageOrderItem
=
null
;
this
.
packageOrderItem
=
null
;
this
.
packageOrderItem
=
null
;
this
.
packageOrderItem
=
null
;
this
.
showNewProductDialog
=
false
this
.
getList
()
this
.
getList
()
},
},
showMedia
(
orderItem
){
showMedia
(
orderItem
){
...
...
src/views/ecw/productPrice/edit.vue
View file @
79effc3a
...
@@ -715,7 +715,7 @@ export default {
...
@@ -715,7 +715,7 @@ export default {
}
}
// 显示渠道(修改或者从异常处理等进入携带了渠道参数)
// 显示渠道(修改或者从异常处理等进入携带了渠道参数)
if
(
this
.
form
.
shippingChannelId
){
if
(
this
.
form
.
shippingChannelId
&&
this
.
type
==
'
air
'
){
getChannel
(
this
.
form
.
shippingChannelId
).
then
(
res
=>
{
getChannel
(
this
.
form
.
shippingChannelId
).
then
(
res
=>
{
this
.
channel
=
res
.
data
this
.
channel
=
res
.
data
}
)
}
)
...
...
src/views/ecw/productPrice/index.vue
View file @
79effc3a
...
@@ -157,12 +157,15 @@
...
@@ -157,12 +157,15 @@
{{
getCurrencyTitle
(
scope
.
row
.
priceStepList
[
0
].
transportPriceUnit
)
+
'
/
'
+
getUnitTitle
(
scope
.
row
.
priceStepList
[
0
].
transportVolumeUnit
)
}}
{{
getCurrencyTitle
(
scope
.
row
.
priceStepList
[
0
].
transportPriceUnit
)
+
'
/
'
+
getUnitTitle
(
scope
.
row
.
priceStepList
[
0
].
transportVolumeUnit
)
}}
<
br
/>
<
br
/>
<
template
v
-
if
=
"
[3,4].indexOf(+scope.row.warehouseLineDO.transportType) > -1
"
>
<
template
v
-
if
=
"
[3,4].indexOf(+scope.row.warehouseLineDO.transportType) > -1
"
>
<!--
空运的清关费
-->
<!--
<
template
v
-
if
=
"
scope.row.clearPriceStepList.length
"
>
空运的清关费
根据要求隐藏列表的空运清关费
https
:
//zentao.test.jdshangmen.com/bug-view-5298.html
-->
<!--
<
template
v
-
if
=
"
scope.row.clearPriceStepList.length
"
>
{{
$t
(
'
清关费
'
)
}}
:{{
getCurrencySymbol
(
scope
.
row
.
clearPriceStepList
[
0
].
clearancePriceUnit
)
+
scope
.
row
.
clearPriceStepList
[
0
].
clearancePrice
}}
&
nbsp
;
{{
$t
(
'
清关费
'
)
}}
:{{
getCurrencySymbol
(
scope
.
row
.
clearPriceStepList
[
0
].
clearancePriceUnit
)
+
scope
.
row
.
clearPriceStepList
[
0
].
clearancePrice
}}
&
nbsp
;
{{
getCurrencyTitle
(
scope
.
row
.
clearPriceStepList
[
0
].
clearancePriceUnit
)
+
'
/
'
+
getUnitTitle
(
scope
.
row
.
clearPriceStepList
[
0
].
clearanceVolumeUnit
)
}}
{{
getCurrencyTitle
(
scope
.
row
.
clearPriceStepList
[
0
].
clearancePriceUnit
)
+
'
/
'
+
getUnitTitle
(
scope
.
row
.
clearPriceStepList
[
0
].
clearanceVolumeUnit
)
}}
<
/template
>
<
/template
>
<
template
v
-
else
>
{{
$t
(
'
暂无清关费设置
'
)
}}
<
/template
>
<
template
v
-
else
>
{{
$t
(
'
暂无清关费设置
'
)
}}
<
/template>
--
>
<
/template
>
<
/template
>
<
template
v
-
else
>
<
template
v
-
else
>
<!--
海运的清关费
-->
<!--
海运的清关费
-->
...
...
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