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
cfdb8007
Commit
cfdb8007
authored
Nov 07, 2022
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复部分bug
parent
42a92dde
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
104 additions
and
11 deletions
+104
-11
Commossion.vue
src/views/ecw/offer/components/Commossion.vue
+19
-1
SpecialDiscount.vue
src/views/ecw/offer/components/SpecialDiscount.vue
+19
-1
CargoControlDetail.vue
src/views/ecw/order/components/CargoControlDetail.vue
+2
-2
index.vue
src/views/ecw/order/index.vue
+1
-1
Commission.vue
src/views/ecw/order/special/Commission.vue
+21
-4
Discount.vue
src/views/ecw/order/special/Discount.vue
+22
-1
Preferential.vue
src/views/ecw/order/special/Preferential.vue
+20
-1
No files found.
src/views/ecw/offer/components/Commossion.vue
View file @
cfdb8007
...
...
@@ -79,6 +79,8 @@
<
el
-
button
type
=
"
primary
"
@
click
=
"
$router.push('/bpm/process-instance/detail?id=' + form.formId)
"
>
<
dict
-
tag
:
type
=
"
DICT_TYPE.APPLY_STATUS
"
:
value
=
"
form.applyStatus
"
/>
<
/el-button
>
<
el
-
button
type
=
"
primary
"
@
click
=
"
cancelAudit
"
>
取消审核
<
/el-button
>
<
el
-
button
type
=
"
default
"
@
click
=
"
closeDialog
"
>
返回
<
/el-button
>
<
/div
>
<
/el-dialog
>
<
/template
>
...
...
@@ -93,6 +95,8 @@ import { getCurrencyList } from '@/api/ecw/currency'
import
{
getProductTypeList
}
from
'
@/api/ecw/productType
'
import
WorkFlow
from
'
@/components/WorkFlow
'
import
{
getDarkReturnCommission
}
from
'
@/api/ecw/customerCommission
'
import
{
cancelProcessInstance
}
from
'
@/api/bpm/processInstance
'
export
default
{
name
:
"
Commossion
"
,
props
:
{
...
...
@@ -225,7 +229,21 @@ export default {
}
).
then
(
res
=>
{
this
.
darkCommission
=
res
.
data
?.
darkCommission
}
)
}
}
,
cancelAudit
(){
this
.
$prompt
(
this
.
$t
(
'
请输入取消原因?
'
),
this
.
$t
(
"
取消审批
"
),
{
type
:
'
warning
'
,
confirmButtonText
:
this
.
$t
(
"
确定
"
),
cancelButtonText
:
this
.
$t
(
"
取消
"
),
inputPattern
:
/^
[\s\S]
*.*
[^\s][\s\S]
*$/
,
// 判断非空,且非空格
inputErrorMessage
:
this
.
$t
(
"
取消原因不能为空
"
),
}
).
then
(({
value
}
)
=>
{
return
cancelProcessInstance
(
this
.
form
.
formId
,
value
);
}
).
then
(()
=>
{
this
.
$modal
.
msgSuccess
(
this
.
$t
(
"
取消成功
"
));
this
.
closeDialog
()
}
)
}
,
}
}
<
/script
>
src/views/ecw/offer/components/SpecialDiscount.vue
View file @
cfdb8007
...
...
@@ -62,6 +62,8 @@
<
el
-
button
type
=
"
primary
"
@
click
=
"
$router.push('/bpm/process-instance/detail?id=' + form.formId)
"
>
<
dict
-
tag
:
type
=
"
DICT_TYPE.APPLY_STATUS
"
:
value
=
"
form.applyStatus
"
/>
<
/el-button
>
<
el
-
button
type
=
"
primary
"
@
click
=
"
cancelAudit
"
>
取消审核
<
/el-button
>
<
el
-
button
type
=
"
default
"
@
click
=
"
closeDialog
"
>
返回
<
/el-button
>
<
/div
>
<
/el-dialog
>
<
/template
>
...
...
@@ -75,6 +77,8 @@ import {getChannelList} from "@/api/ecw/channel"
import
{
getCurrencyList
}
from
'
@/api/ecw/currency
'
import
{
getProductTypeList
}
from
'
@/api/ecw/productType
'
import
WorkFlow
from
'
@/components/WorkFlow
'
import
{
cancelProcessInstance
}
from
'
@/api/bpm/processInstance
'
export
default
{
name
:
"
specialDiscount
"
,
props
:
{
...
...
@@ -139,7 +143,21 @@ export default {
}
,
closeDialog
(){
this
.
$emit
(
'
close
'
)
}
}
,
cancelAudit
(){
this
.
$prompt
(
this
.
$t
(
'
请输入取消原因?
'
),
this
.
$t
(
"
取消审批
"
),
{
type
:
'
warning
'
,
confirmButtonText
:
this
.
$t
(
"
确定
"
),
cancelButtonText
:
this
.
$t
(
"
取消
"
),
inputPattern
:
/^
[\s\S]
*.*
[^\s][\s\S]
*$/
,
// 判断非空,且非空格
inputErrorMessage
:
this
.
$t
(
"
取消原因不能为空
"
),
}
).
then
(({
value
}
)
=>
{
return
cancelProcessInstance
(
this
.
form
.
formId
,
value
);
}
).
then
(()
=>
{
this
.
$modal
.
msgSuccess
(
this
.
$t
(
"
取消成功
"
));
this
.
closeDialog
()
}
)
}
,
}
,
computed
:
{
// 是否可以提交
...
...
src/views/ecw/order/components/CargoControlDetail.vue
View file @
cfdb8007
...
...
@@ -2,7 +2,7 @@
<
template
>
<div
v-if=
"order"
>
<el-descriptions
:column=
"3"
>
<el-descriptions-item
label=
"订单号"
>
{{
detail
.
orderNo
}}
</el-descriptions-item>
<el-descriptions-item
label=
"订单号"
>
{{
order
.
orderNo
}}
</el-descriptions-item>
<el-descriptions-item
label=
"运输方式"
>
<dict-tag
:type=
"DICT_TYPE.TRANSPORT_TYPE"
:value=
"order.transportId"
/>
</el-descriptions-item>
...
...
@@ -28,7 +28,7 @@
<!-- 调货 -->
<el-descriptions-item
label=
"申请原因"
v-if=
"applyType == 9"
>
{{
detail
.
reason
}}
{{
$l
(
detail
,
'
reason
'
)
}}
</el-descriptions-item>
<!-- 取消放货 -->
...
...
src/views/ecw/order/index.vue
View file @
cfdb8007
...
...
@@ -238,7 +238,7 @@
</
template
>
<!-- 合单,拆单 -->
<
template
v-if=
" (scope.row.status < 12 || (scope.row.status == 12 && scope.row.shipmentState == 314)) && !scope.row.abnormalState"
>
<
template
v-if=
" (scope.row.status < 12 || (scope.row.status == 12 && scope.row.shipmentState == 314)) && !scope.row.abnormalState
&& scope.row.status
"
>
<el-dropdown-item
@
click.native=
"$router.push(`/order/singleApply?orderNo=$
{scope.row.orderNo}`)" >
{{
$t
(
'
合单申请
'
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"$router.push(`/order/splitApply?orderId=$
{scope.row.orderId}`)" >
{{
$t
(
'
拆单申请
'
)
}}
</el-dropdown-item>
</
template
>
...
...
src/views/ecw/order/special/Commission.vue
View file @
cfdb8007
...
...
@@ -58,7 +58,7 @@
<!--
明佣
+
暗佣显示
-->
<
div
v
-
if
=
"
form.commissionType == 3
"
>
{{
$t
(
'
成本价
'
)
}}
:
{{
Decimal
(
form
.
freight
).
minus
(
form
.
shadeCommissionAmount
)
}}
{{
currencyMap
[
form
.
freightCurrency
]
}}
/
{{
unitMap
[
form
.
freightVolume
]
}}
{{
$t
(
'
成本价
'
)
}}
:
{{
Decimal
(
form
.
freight
||
orderItem
.
oneSeaFreight
).
minus
(
form
.
shadeCommissionAmount
)
}}
{{
currencyMap
[
form
.
freightCurrency
]
}}
/
{{
unitMap
[
form
.
freightVolume
]
}}
<
/div
>
<!--
暗佣显示
-->
...
...
@@ -70,7 +70,7 @@
<
el
-
link
type
=
"
primary
"
@
click
.
native
=
"
$router.push('/customer/customerCommission?customerId=' + order.customerId)
"
>
{{
$t
(
'
去设置
'
)
}}
<
/el-link
>
<
/div
>
<
div
v
-
if
=
"
form.commissionType == 1 || form.commissionType == 3
"
>
{{
$t
(
'
销售价
'
)
}}
:
{{
Decimal
(
form
.
freight
).
plus
(
form
.
lightCommissionAmount
)
}}
{{
currencyMap
[
form
.
freightCurrency
]
}}
/
{{
unitMap
[
form
.
freightVolume
]
}}
<
/div
>
<
div
v
-
if
=
"
form.commissionType == 1 || form.commissionType == 3
"
>
{{
$t
(
'
销售价
'
)
}}
:
{{
Decimal
(
form
.
freight
||
orderItem
.
oneSeaFreight
).
plus
(
form
.
lightCommissionAmount
)
}}
{{
currencyMap
[
form
.
freightCurrency
]
}}
/
{{
unitMap
[
form
.
freightVolume
]
}}
<
/div
>
<
div
v
-
if
=
"
form.commissionType == 3
"
>
{{
$t
(
'
实际佣金返点
'
)
}}
:
{{
form
.
shadeCommissionAmount
+
form
.
lightCommissionAmount
}}
{{
currencyMap
[
form
.
freightCurrency
]
}}
/
{{
unitMap
[
form
.
freightVolume
]
}}
<
/div
>
<
/div
>
...
...
@@ -84,6 +84,8 @@
<
el
-
button
type
=
"
primary
"
@
click
=
"
$router.push('/bpm/process-instance/detail?id=' + form.formId)
"
>
<
dict
-
tag
:
type
=
"
DICT_TYPE.APPLY_STATUS
"
:
value
=
"
form.applyStatus
"
/>
<
/el-button
>
<
el
-
button
type
=
"
primary
"
@
click
=
"
cancelAudit
"
>
取消审核
<
/el-button
>
<
el
-
button
type
=
"
default
"
@
click
=
"
closeDialog
"
>
返回
<
/el-button
>
<
/div
>
<
/el-dialog
>
<
/template
>
...
...
@@ -97,7 +99,7 @@ import { getProductType } from '@/api/ecw/productType'
import
WorkFlow
from
'
@/components/WorkFlow
'
import
{
getDarkReturnCommission
}
from
'
@/api/ecw/customerCommission
'
import
Decimal
from
'
decimal.js
'
import
{
cancelProcessInstance
}
from
'
@/api/bpm/processInstance
'
export
default
{
name
:
"
OrderSpecialCommission
"
,
props
:
{
...
...
@@ -160,6 +162,7 @@ export default {
}
,
methods
:
{
Decimal
(
n
){
if
(
!
n
)
return
Decimal
return
new
Decimal
(
n
)
}
,
handleSubmit
(){
...
...
@@ -196,7 +199,21 @@ export default {
}
).
then
(
res
=>
{
this
.
darkCommission
=
res
.
data
?.
darkCommission
}
)
}
}
,
cancelAudit
(){
this
.
$prompt
(
this
.
$t
(
'
请输入取消原因?
'
),
this
.
$t
(
"
取消审批
"
),
{
type
:
'
warning
'
,
confirmButtonText
:
this
.
$t
(
"
确定
"
),
cancelButtonText
:
this
.
$t
(
"
取消
"
),
inputPattern
:
/^
[\s\S]
*.*
[^\s][\s\S]
*$/
,
// 判断非空,且非空格
inputErrorMessage
:
this
.
$t
(
"
取消原因不能为空
"
),
}
).
then
(({
value
}
)
=>
{
return
cancelProcessInstance
(
this
.
form
.
formId
,
value
);
}
).
then
(()
=>
{
this
.
$modal
.
msgSuccess
(
this
.
$t
(
"
取消成功
"
));
this
.
closeDialog
()
}
)
}
,
}
,
computed
:
{
// 是否可以提交
...
...
src/views/ecw/order/special/Discount.vue
View file @
cfdb8007
...
...
@@ -64,6 +64,8 @@
<
el
-
button
type
=
"
primary
"
@
click
=
"
$router.push('/bpm/process-instance/detail?id=' + form.formId)
"
>
<
dict
-
tag
:
type
=
"
DICT_TYPE.APPLY_STATUS
"
:
value
=
"
form.applyStatus
"
/>
<
/el-button
>
<
el
-
button
type
=
"
primary
"
@
click
=
"
cancelAudit
"
>
取消审核
<
/el-button
>
<
el
-
button
type
=
"
default
"
@
click
=
"
closeDialog
"
>
返回
<
/el-button
>
<
/div
>
<
/el-dialog
>
<
/template
>
...
...
@@ -74,7 +76,9 @@ import {getUnitList} from "@/api/ecw/unit"
import
{
getChannel
,
getChannelList
}
from
"
@/api/ecw/channel
"
import
{
getCurrencyList
}
from
'
@/api/ecw/currency
'
import
{
getProductType
}
from
'
@/api/ecw/productType
'
import
{
cancelProcessInstance
}
from
'
@/api/bpm/processInstance
'
import
WorkFlow
from
'
@/components/WorkFlow
'
console
.
log
({
cancelProcessInstance
}
)
export
default
{
name
:
"
OrderSpecialDiscount
"
,
props
:
{
...
...
@@ -114,7 +118,7 @@ export default {
ccIdArr
:
[],
form
:
{
}
,
rules
:{
seaF
reight
:
{
required
:
true
,
message
:
'
运费不能为空
'
}
,
f
reight
:
{
required
:
true
,
message
:
'
运费不能为空
'
}
,
clearanceFreight
:
{
required
:
true
,
message
:
'
清关费不能为空
'
}
}
,
productType
:
null
,
...
...
@@ -143,6 +147,20 @@ export default {
/* getProductTypeNameById(id){
return this.$l(this.productTypeList.find(e => e.id === id), 'title')
}
, */
cancelAudit
(){
this
.
$prompt
(
this
.
$t
(
'
请输入取消原因?
'
),
this
.
$t
(
"
取消审批
"
),
{
type
:
'
warning
'
,
confirmButtonText
:
this
.
$t
(
"
确定
"
),
cancelButtonText
:
this
.
$t
(
"
取消
"
),
inputPattern
:
/^
[\s\S]
*.*
[^\s][\s\S]
*$/
,
// 判断非空,且非空格
inputErrorMessage
:
this
.
$t
(
"
取消原因不能为空
"
),
}
).
then
(({
value
}
)
=>
{
return
cancelProcessInstance
(
this
.
form
.
formId
,
value
);
}
).
then
(()
=>
{
this
.
$modal
.
msgSuccess
(
this
.
$t
(
"
取消成功
"
));
this
.
closeDialog
()
}
)
}
,
closeDialog
(){
this
.
$emit
(
'
close
'
)
}
...
...
@@ -151,6 +169,9 @@ export default {
// 是否可以提交
submitable
(){
let
submitable
=
false
;
if
(
!
this
.
form
.
freight
||
!
this
.
form
.
clearanceFreight
){
return
false
}
[
[
'
orgClearanceFreight
'
,
'
clearanceFreight
'
],
[
'
orgFreight
'
,
'
freight
'
]
...
...
src/views/ecw/order/special/Preferential.vue
View file @
cfdb8007
...
...
@@ -29,6 +29,9 @@
<el-button
type=
"primary"
@
click=
"$router.push('/bpm/process-instance/detail?id=' + form.formId)"
>
<dict-tag
:type=
"DICT_TYPE.APPLY_STATUS"
:value=
"form.applyStatus"
/>
</el-button>
<el-button
type=
"primary"
@
click=
"cancelAudit"
>
取消审核
</el-button>
<el-button
type=
"default"
@
click=
"closeDialog"
>
返回
</el-button>
</div>
</el-dialog>
</template>
...
...
@@ -40,6 +43,8 @@ import {getChannel, getChannelList} from "@/api/ecw/channel"
import
{
getCurrencyList
}
from
'
@/api/ecw/currency
'
import
{
getProductType
}
from
'
@/api/ecw/productType
'
import
WorkFlow
from
'
@/components/WorkFlow
'
import
{
cancelProcessInstance
}
from
'
@/api/bpm/processInstance
'
export
default
{
name
:
"
OrderSpecialDiscount
"
,
props
:
{
...
...
@@ -93,7 +98,21 @@ export default {
},
closeDialog
(){
this
.
$emit
(
'
close
'
)
}
},
cancelAudit
(){
this
.
$prompt
(
this
.
$t
(
'
请输入取消原因?
'
),
this
.
$t
(
"
取消审批
"
),
{
type
:
'
warning
'
,
confirmButtonText
:
this
.
$t
(
"
确定
"
),
cancelButtonText
:
this
.
$t
(
"
取消
"
),
inputPattern
:
/^
[\s\S]
*.*
[^\s][\s\S]
*$/
,
// 判断非空,且非空格
inputErrorMessage
:
this
.
$t
(
"
取消原因不能为空
"
),
}).
then
(({
value
})
=>
{
return
cancelProcessInstance
(
this
.
form
.
formId
,
value
);
}).
then
(()
=>
{
this
.
$modal
.
msgSuccess
(
this
.
$t
(
"
取消成功
"
));
this
.
closeDialog
()
})
},
}
}
</
script
>
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