Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TF-MOM-WEB
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
TFMOM
TF-MOM-WEB
Commits
74263a1c
Commit
74263a1c
authored
Feb 27, 2024
by
qhr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
入库单增加免税字段
parent
412d9a12
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
1 deletion
+33
-1
index.vue
...nents/components/PurchasingWarehousingNewOrEdit/index.vue
+33
-1
No files found.
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingNewOrEdit/index.vue
View file @
74263a1c
...
...
@@ -114,6 +114,18 @@ export default {
options
:
[]
}
},
{
title
:
"是否免税"
,
key
:
"hasTax"
,
component
:
{
clearable
:
true
,
name
:
"el-select"
,
options
:
[
{
value
:
"Y"
,
label
:
"是"
},
{
value
:
"N"
,
label
:
"否"
},
],
},
},
{
title
:
'供应商'
,
key
:
'extDxSipplierId'
,
...
...
@@ -209,6 +221,13 @@ export default {
message
:
'请填写表单信息'
,
trigger
:
[
'blur'
,
'change'
]
}
],
hasTax
:
[
{
required
:
true
,
message
:
'请填写表单信息'
,
trigger
:
[
'blur'
,
'change'
]
}
]
},
tools
:
[
...
...
@@ -559,7 +578,20 @@ export default {
},
isSignApproval
()
{
return
this
.
$route
&&
this
.
$route
.
name
===
'TaskCenterHome'
},
invisibleHasTax
:
function
()
{
let
filterData
=
this
.
formData
[
0
].
data
;
if
(
this
.
form
.
billType
===
"OutSource"
)
{
filterData
=
this
.
formData
[
0
].
data
.
filter
((
item
)
=>
item
.
key
!==
"hasTax"
);
}
return
[
{
title
:
"基本信息"
,
split
:
2
,
data
:
filterData
||
[],
},
];
},
},
watch
:
{
},
...
...
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