Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-pad
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
ximai
mes-pad
Commits
c5411028
Commit
c5411028
authored
Jul 10, 2024
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
投料校验
parent
966f7057
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
index.vue
pages/mes/prodReport/index.vue
+5
-4
No files found.
pages/mes/prodReport/index.vue
View file @
c5411028
...
...
@@ -553,14 +553,14 @@
<uni-th
width=
"80px"
align=
"center"
>
领料数量
</uni-th>
<uni-th
width=
"110px"
align=
"center"
>
批次号
</uni-th>
</uni-tr>
<uni-tr
v-for=
"(line, index) in feedingInspectionList"
:key=
"index"
>
<uni-tr
v-for=
"(line, index) in feedingInspectionList"
:key=
"index"
:style=
"{background: line.attr3 == 1 ? '#19be6b' : '#fff'}"
>
<uni-td
align=
"center"
>
<view
class=
"uni-group"
>
<button
class=
"uni-button"
size=
"mini"
type=
"primary"
@
click=
"validateFeedingInspection(line)"
>
校验
</button>
</view>
</uni-td>
<uni-td
align=
"center"
>
{{ line.attr3 == 1 ? '校验' : '未校验' }}
</uni-td>
<uni-td
align=
"center"
>
{{ line.attr3 == 1 ? '
已
校验' : '未校验' }}
</uni-td>
<uni-td
align=
"center"
>
{{ line.itemCode.substring(line.itemCode.length - 8, line.itemCode.length) }}
</uni-td>
<uni-td
align=
"center"
>
{{ line.itemName }}({{ line.specification }})/{{ line.unitOfMeasure }}
</uni-td>
<uni-td
align=
"center"
>
{{ line.quantityIssued }}
</uni-td>
...
...
@@ -1345,7 +1345,7 @@ export default {
itemName
:
null
,
applyNum
:
1
,
workorderCode
:
null
,
number
:
1
,
number
:
0
,
},
materialReturnProcessItemData
:
{
itemName
:
null
,
...
...
@@ -2599,6 +2599,7 @@ export default {
/* #endif */
},
validateFeedingInspection
(
line
)
{
// if(line.attr3 == 1) return
const
t
=
this
;
const
taskInfo
=
this
.
tableSelectData
[
0
];
this
.
$u
.
api
.
validateFeedingInspectionById
({
lineId
:
line
.
lineId
}).
then
((
res2
)
=>
{
...
...
@@ -2786,7 +2787,7 @@ export default {
applyNum
:
1
,
workorderCode
:
this
.
materialReturnFormData
.
workorderCode
,
isQualified
:
1
,
number
:
1
,
number
:
0
,
};
this
.
materialReturnSelected
=
line
;
},
...
...
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