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
0f955a0b
Commit
0f955a0b
authored
Aug 24, 2023
by
houjn@hikoon.cn
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/release2.2new' into release2.2new
parents
e48b6378
87bae53c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
10 deletions
+20
-10
addPotentialCustom.vue
src/views/ecw/customer/addPotentialCustom.vue
+2
-0
edit.vue
src/views/ecw/customer/edit.vue
+1
-1
transferCustomer.vue
src/views/ecw/customer/transferCustomer.vue
+13
-5
printVoucher.vue
src/views/ecw/financial/printVoucher.vue
+3
-3
receiptDetail.vue
src/views/ecw/financial/receiptDetail.vue
+1
-1
No files found.
src/views/ecw/customer/addPotentialCustom.vue
View file @
0f955a0b
...
@@ -113,6 +113,8 @@ export default {
...
@@ -113,6 +113,8 @@ export default {
this
.
$emit
(
'
change
'
);
this
.
$emit
(
'
change
'
);
this
.
dialogTableVisible
=
false
;
this
.
dialogTableVisible
=
false
;
this
.
$message
(
this
.
$t
(
'
创建成功
'
));
this
.
$message
(
this
.
$t
(
'
创建成功
'
));
this
.
reset
()
this
.
$refs
.
form
.
resetFields
()
}
}
})
})
}
}
...
...
src/views/ecw/customer/edit.vue
View file @
0f955a0b
...
@@ -863,7 +863,7 @@ export default {
...
@@ -863,7 +863,7 @@ export default {
const
form
=
{...
this
.
form
,
type
:
this
.
form
.
type
?.
join
(
'
,
'
),
transportType
:
(
this
.
form
.
transportType
||
[])?.
join
(
'
,
'
),
taxRate
:
Number
(
this
.
form
.
taxRate
)}
const
form
=
{...
this
.
form
,
type
:
this
.
form
.
type
?.
join
(
'
,
'
),
transportType
:
(
this
.
form
.
transportType
||
[])?.
join
(
'
,
'
),
taxRate
:
Number
(
this
.
form
.
taxRate
)}
form
.
customerContacts
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
form
.
customerContacts
))
form
.
customerContacts
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
form
.
customerContacts
))
form
.
customerContacts
.
forEach
(
e
=>
{
form
.
customerContacts
.
forEach
(
e
=>
{
e
.
email
=
[...
e
.
email
].
join
(
'
,
'
)
e
.
email
=
[...
e
.
email
].
filter
(
i
=>
i
!==
''
).
join
(
'
,
'
)
})
})
// 检查路线是否启用了但是没选择目的仓
// 检查路线是否启用了但是没选择目的仓
let
errors
=
0
let
errors
=
0
...
...
src/views/ecw/customer/transferCustomer.vue
View file @
0f955a0b
...
@@ -65,11 +65,19 @@ export default {
...
@@ -65,11 +65,19 @@ export default {
reason
:
this
.
textarea
reason
:
this
.
textarea
}).
then
(
r
=>
{
}).
then
(
r
=>
{
if
(
r
.
code
===
0
){
if
(
r
.
code
===
0
){
this
.
$emit
(
'
update:show
'
,
false
)
if
(
r
.
data
){
this
.
$emit
(
'
update:customerIds
'
,[])
this
.
$message
.
error
(
r
.
data
)
this
.
service
=
''
;
this
.
$emit
(
'
update:show
'
,
false
)
this
.
textarea
=
''
;
this
.
$emit
(
'
update:customerIds
'
,[])
this
.
$message
.
success
(
this
.
$t
(
'
用户批量转移成功!
'
))
this
.
service
=
''
;
this
.
textarea
=
''
;
}
else
{
this
.
$emit
(
'
update:show
'
,
false
)
this
.
$emit
(
'
update:customerIds
'
,[])
this
.
service
=
''
;
this
.
textarea
=
''
;
this
.
$message
.
success
(
this
.
$t
(
'
用户批量转移成功!
'
))
}
}
}
})
})
},
},
...
...
src/views/ecw/financial/printVoucher.vue
View file @
0f955a0b
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
<td
style=
"font-weight: bold;width:12.5%"
>
{{
$t
(
'
部门
'
)
}}
</td>
<td
style=
"font-weight: bold;width:12.5%"
>
{{
$t
(
'
部门
'
)
}}
</td>
<td
style=
"width:12.5%"
>
{{
form
?
form
.
departmentName
:
$t
(
'
无
'
)
}}
</td>
<td
style=
"width:12.5%"
>
{{
form
?
form
.
departmentName
:
$t
(
'
无
'
)
}}
</td>
<td
style=
"font-weight: bold;width:12.5%"
>
{{
$t
(
'
客户名称
'
)
}}
</td>
<td
style=
"font-weight: bold;width:12.5%"
>
{{
$t
(
'
客户名称
'
)
}}
</td>
<td
colspan=
"2"
style=
"width: 25%;"
>
{{
form
?
form
.
customerName
:
$t
(
'
无
'
)
}}
</td>
<td
colspan=
"2"
style=
"width: 25%;"
>
{{
form
.
payerName
?
form
.
payerName
:(
form
.
customerName
||
$t
(
'
无
'
)
)
}}
</td>
<td
style=
"font-weight: bold;width:12.5%"
>
{{
$t
(
'
收款日期
'
)
}}
</td>
<td
style=
"font-weight: bold;width:12.5%"
>
{{
$t
(
'
收款日期
'
)
}}
</td>
<td
colspan=
"2"
style=
"width: 25%;"
>
{{
form
&&
form
.
payedAt
?
parseTime
(
form
.
payedAt
):
$t
(
'
无
'
)
}}
</td>
<td
colspan=
"2"
style=
"width: 25%;"
>
{{
form
&&
form
.
payedAt
?
parseTime
(
form
.
payedAt
):
$t
(
'
无
'
)
}}
</td>
</tr>
</tr>
...
@@ -141,9 +141,9 @@
...
@@ -141,9 +141,9 @@
that
.
deptArr
.
push
(
item
)
that
.
deptArr
.
push
(
item
)
}
else
{
that
.
deptData
.
push
(
item
)
}
}
that
.
deptData
.
push
(
item
)
}
)
}
)
that
.
deptData
.
forEach
((
value
)
=>
{
that
.
deptData
.
forEach
((
value
)
=>
{
...
...
src/views/ecw/financial/receiptDetail.vue
View file @
0f955a0b
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<el-descriptions-item
:label=
"$t('状态')"
>
<el-descriptions-item
:label=
"$t('状态')"
>
<dict-tag
:type=
"DICT_TYPE.ECW_RECEIPT_STATE"
:value=
"form.state"
/>
<dict-tag
:type=
"DICT_TYPE.ECW_RECEIPT_STATE"
:value=
"form.state"
/>
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('客户')"
>
{{
form
.
customerName
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('客户')"
>
{{
form
.
payerName
?
form
.
payerName
:
form
.
customerName
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('部门')"
>
{{
form
.
departmentName
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('部门')"
>
{{
form
.
departmentName
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('业务员')"
>
{{
form
.
salesmanName
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('业务员')"
>
{{
form
.
salesmanName
}}
</el-descriptions-item>
<!--
<el-descriptions-item
:label=
"$t('手续费(RMB)')"
>
{{
form
.
feeRate
}}
</el-descriptions-item>
-->
<!--
<el-descriptions-item
:label=
"$t('手续费(RMB)')"
>
{{
form
.
feeRate
}}
</el-descriptions-item>
-->
...
...
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