spring
4 天以前 435881d494e2be4ba5ce8bfccb02d6ef49e07314
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<template>
    <view class="wrap">
        <scroll-view class="scroll-list proudct-in-list" scroll-y="true">
            <u-cell-group class="list proudct-in-list-cell" :border="false">
                <u-card :title="item.partNo" :sub-title="item.partNo" v-for="(item, index) in list" :key="item.id"
                    :index="item.id" :showHead="showCardHead">
                    <view slot="body">
                        <view class="item u-border-bottom">
                            <view>
                                <view style="text-align: right;">
                                    <u-button v-show="item.id==null" type="success" text="保存" size="mini"
                                        @click.stop="saveProductIn(item)">保存</u-button>
                                    <u-button v-show="item.id!=null" type="primary" text="更新" size="mini"
                                        @click.stop="updateProductIn(item)">更新</u-button>
                                    <u-button type="error" text="删除" size="mini" :customStyle="{marginLeft:'20rpx'}"
                                        @click.stop="deleteProductIn(index,item)">删除</u-button>
                                </view>
                            </view>
                            <view>
                                <view class="row-list">
                                    <u-row justify="space-between">
                                        <u-col span="4">
                                            <span class="span-lable">报工单号</span>
                                        </u-col>
                                        <u-col span="8">
                                            <view>
                                                <span>{{item.productNo}}</span>
                                            </view>
                                        </u-col>
                                    </u-row>
                                </view>
                                <view class="row-list">
                                    <u-row justify="space-between">
                                        <u-col span="4">
                                            <span class="span-lable">SN号</span>
                                        </u-col>
                                        <u-col span="8">
                                            <view>
                                                <span>{{item.partBatchNo}}</span>
 
                                            </view>
                                        </u-col>
                                    </u-row>
                                </view>
 
                                <view class="row-list">
                                    <u-row justify="space-between">
                                        <u-col span="4">
                                            <span class="span-lable">零件编号</span>
                                        </u-col>
                                        <u-col span="8">
                                            <view>
                                                <span>{{item.partNo}}</span>
                                            </view>
                                        </u-col>
                                    </u-row>
                                </view>
                                <view class="row-list">
                                    <u-row justify="space-between">
                                        <u-col span="4">
                                            <span class="span-lable">零件名称</span>
                                        </u-col>
                                        <u-col span="8">
                                            <view>
                                                <span>{{item.partName}}</span>
                                            </view>
                                        </u-col>
                                    </u-row>
                                </view>
                                <view class="row-list">
                                    <u-row justify="space-between">
                                        <u-col span="4">
                                            <span class="span-lable">IFS批次号</span>
                                        </u-col>
                                        <u-col span="8">
                                            <view>
                                                <span>{{item.ifsBatchNo}}</span>
                                            </view>
                                        </u-col>
                                    </u-row>
                                </view>
                                <view class="row-list">
                                    <u-row justify="space-between">
                                        <u-col span="4">
                                            <span class="span-lable">投入数量</span>
                                        </u-col>
                                        <u-col span="8">
                                            <view>
                                                <u-input class="custom-edit-input" v-model="item.inputQuantity"
                                                    type="text" :clearable=false height="50">
                                                </u-input>
                                            </view>
                                        </u-col>
                                    </u-row>
                                </view>
                                <view class="row-list">
                                    <u-row justify="space-between">
                                        <u-col span="4">
                                            <span class="span-lable">单位</span>
                                        </u-col>
                                        <u-col span="8">
                                            <view>
 
                                                <span>{{item.unit}}</span>
                                            </view>
                                        </u-col>
                                    </u-row>
                                </view>
                            </view>
                        </view>
                    </view>
 
                </u-card>
            </u-cell-group>
        </scroll-view>
        <view class="view-fixed-two" style="width: 750rpx;text-align: center;">
            <u-button type="success" text="投入" size="medium" :customStyle="{borderRadius:'0rpx'}" @click="openFeed()">投入
            </u-button>
        </view>
    </view>
</template>
<script>
    export default {
        data() {
            return {
                showCardHead: false,
                list: [],
                currId: null,
                workstationId: null,
                productMainId: null,
                productNo: null
            };
        },
        onLoad(params) {
            if (params && params.id !== "undefined") {
                this.currId = params.id
                this.workstationId = params.workstationId
                this.productMainId = params.productMainId
                this.productNo = params.productNo
                this.loadList();
            }
        },
        onShow() {
 
        },
        methods: {
            updateProductIn(item) {
                if (item.inputQuantity != null && item.inputQuantity.trim != '') {
                    let updateParam = {
                        id: item.id,
                        inputQuantity: item.inputQuantity
                    }
 
                    this.$u.api.outputRegister.updateProductInput(updateParam).then(res => {
                        let _code = res.code
                        let _data = res.data
                        let _msg = res.msg
                        if (_code === 0) {
                            this.$u.toast(`更新投入成功`);
                            this.search('')
                        } else {
                            this.$u.toast('更新投入失败');
                        }
 
                    });
                } else {
                    this.$u.toast('投入不能为空');
                }
            },
            deleteProductIn(index, item) {
                if (item.id != null) {
                    // 则需调用后台删除并删除前端投入
                    let delParam = {
                        id: item.id
                    }
                    this.$u.api.outputRegister.deleteProductInputById(delParam).then(res => {
                        let _code = res.code
                        let _data = res.data
                        let _msg = res.msg
                        if (_code === 0) {
                            this.list.splice(index, 1)
                            this.$u.toast('删除投入成功');
                            this.search('')
                        } else {
                            this.$u.toast('删除投入失败');
                        }
                    });
                } else {
                    // 删除前端投入
                    this.list.splice(index, 1)
                    this.$message.success('删除投入成功')
                }
            },
            openFeed() {
                uni.navigateTo({
                    url: '/pages/product/outputRegister/workstationFeedList?workstationId=' + this.workstationId,
                })
            },
            selectWorkstationFeed(selectedFeedList) {
                if (selectedFeedList != null && selectedFeedList.length > 0) {
                    for (let i = 0; i < selectedFeedList.length; i++) {
                        this.addProductIn(selectedFeedList[i])
                    }
                }
            },
            addProductIn(inPartInfo) {
                let productInput = {}
                productInput.id = null
                productInput.stockId = inPartInfo.id
                productInput.inputQuantity = null
                productInput.productMainId = this.productMainId
                productInput.productNo = this.productNo
                productInput.partNo = inPartInfo.partNo
                productInput.partName = inPartInfo.partName
                productInput.partDescription = null
                productInput.unit = inPartInfo.unit
                productInput.partBatchNo = inPartInfo.partBatchNo
                productInput.ifsBatchNo = inPartInfo.ifsBatchNo
                this.list.push(productInput)
            },
            saveProductIn(item) {
                if (item.inputQuantity != null && item.inputQuantity.trim != '') {
                    let saveParam = {
                        stockId: item.stockId,
                        productMainId: item.productMainId,
                        inputQuantity: item.inputQuantity
                    }
                    this.$u.api.outputRegister.saveProductInput(saveParam).then(res => {
                        let _code = res.code
                        let _data = res.data
                        let _msg = res.msg
                        //保存明细成功时
                        if (_code === 0) {
                            this.$u.toast('添加投入成功');
                            item.id = _data
                            this.search('')
                        } else {
                            this.$u.toast('添加投入失败');
                        }
                    });
                } else {
                    this.$u.toast('投入不能为空');
                }
            },
            loadList() {
                let queryParam = {
                    id: this.currId
                }
                this.$u.api.outputRegister.queryProductMainDetail(queryParam).then(res => {
                    let _code = res.code
                    let _data = res.data
                    let _msg = res.msg
                    if (_code === 0) {
                        this.list = _data.productInputList
                    } else {
                        this.list = []
                    }
                });
            },
            search(value) {
                this.list = [];
                this.$nextTick(() => {
                    this.loadList();
                })
            }
        }
    };
</script>
<style lang="scss">
    .custom-edit-input {
        border-bottom: 2rpx solid #F8F8F8;
    }
 
    .list .content {
        font-size: 12px;
        background-color: #efefef;
        box-sizing: border-box;
        border-radius: 14rpx;
        margin: 8px;
        padding: 5px 10px;
        box-shadow: none;
    }
 
    .proudct-in-list {
        background-color: #F8F8F8;
    }
 
    .proudct-in-list-cell {
        ::v-deep .u-cell-item-box {
            background-color: #F8F8F8;
        }
    }
</style>