huangxiaoqiang
2025-05-19 051aa9a0e7f58af6665fb4526e42cf8060fbaa05
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
<template>
    <view><uni-segmented-control :current="current" :values="items" @clickItem="onClickItem">
        </uni-segmented-control>
        <view class="content">
            <view v-if="current === 0" class="headerstyle">
                <u-sticky>
                    <view style="background-color: #ffffff;">
                        <!-- <uni-search-bar @confirm="search" v-model="searchValue"></uni-search-bar> -->
                    </view>
                </u-sticky>
                <uni-list-item direction="column" v-for="(item) in orderDetail" :key="item.id">
                    <template v-slot:body>
                        <view class="uni-list-box">
                            <checkbox @click="click(item)" style="margin-right: 20px;"></checkbox>
                            <view class="uni-content">
                                <view style="font-size: 18px;">单据编号:{{orderNo}}</view>
                                <view style="font-size: 18px;">物料编码:{{item.materielCode}}</view>
                                <view style="font-size: 18px;">物料名称:{{item.materielName}}</view>
                                <view style="font-size: 18px;">单据数量:{{item.orderQuantity}}</view>
                                <view style="font-size: 18px;">出库数量:{{item.overOutQuantity}}</view>
                                <view style="font-size: 18px;">锁定数量:{{item.lockQuantity}}</view>
                            </view>
                        </view>
                    </template>
                </uni-list-item>
                <button @click="OutBound" type="primary" size="default" style="margin-top: 2%;">出库</button>
                <u-toast ref="uToast" />
            </view>
            <view v-if="current === 1" class="headerstyle">
                <u-sticky>
                    <view style="background-color: #ffffff;">
                        <!-- <uni-search-bar @confirm="search" v-model="searchValue"></uni-search-bar> -->
                    </view>
                </u-sticky>
                <uni-list :border="true">
                    <uni-list-item direction="column" clickable @click="groupClick(item.materielCode,item.id)" link
                :to="page+materielCode+'&id='+item.id" v-for="item in orderDetail" :key="item.materielCode">
                        <template v-slot:body>
                            <uni-group margin-top="20">
                                <view style="font-size: 18px;">单据编号:{{orderNo}}</view>
                                <view style="font-size: 18px;">物料编码:{{item.materielCode}}</view>
                                <view style="font-size: 18px;">物料名称:{{item.materielName}}</view>
                                <view style="font-size: 18px;">单据数量:{{item.orderQuantity}}</view>
                                <view style="font-size: 18px;">出库数量:{{item.overOutQuantity}}</view>
                                <view style="font-size: 18px;">锁定数量:{{item.lockQuantity}}</view>
                            </uni-group>
                        </template>
                    </uni-list-item>
                </uni-list>
                <u-toast ref="uToast" />
            </view>
        </view>
    </view>
</template>
 
<script>
    const innerAudioContext = uni.createInnerAudioContext();
    export default {
        data() {
            return {
                page: "/pages/materielGroup/OutOrderDetail?materielCode=",
                items: ['直接出库', '指定出库'],
                current: 0,
                orderNo: "",
                label: "",
                orderDetail: [],
                focus: false,
                orderDetailId: [],
                key:[],
                materielCode:"",
            }
        },
        onShow() {},
        onLoad(res) {
            this.focus = false;
            this.addressFocus = false;
            this.orderNo = res.orderNo;
            this.label = "单据编号:" + this.orderNo;
            this.getData();
        },
        methods: {
            groupClick(materielCode,id){
                window.location="/pages/materielGroup/OutOrderDetail?materielCode="+materielCode+"&id="+id;
                console.log(materielCode,id)
            },
            getData() {
                var postData = this.orderNo
                this.$u.post('/api/OutboundOrder/GetOutboundOrderDetail', postData).then((res) => {
                    if (res.status) {
                        this.orderDetail = res.data;
                        if (this.orderDetail.length > 3) {
                            this.loadVisible = true;
                        }
                    }
                })
            },
            onClickItem(e) {
                this.focus = false;
                this.addressFocus = false;
                if (this.current !== e.currentIndex) {
                    this.current = e.currentIndex;
                    if (this.current == 2) {
                        this.getData();
                    }
                }
            },
            OutBound() {
                var postData = this.key;
                this.$u.post('/api/Task/GenerateOutboundTasks', postData).then(res => {
                    if (res.status) {
                        this.items = [];
                        uni.$showMsg(res.message);
                        setTimeout(() => {
                            this.addressFocus = false;
                        }, 200);
                    } else {
                        this.$refs.uToast.show({
                            title: res.message,
                            type: "error"
                        })
                    }
                }).catch(err => {
                    this.$refs.uToast.show({
                        title: err.message,
                        type: "error"
                    })
                })
            },
            click(e) {
                if (this.key.find(x => x.id == e.id)) {
                    this.key.map((item, index) => {
                        if (item.id == e.id) {
                            this.key.splice(index, 1);
                        }
                    })
                } else {
                    this.key.push(e.id);
                }
            }
        }
    }
</script>
 
<style lang="scss">
    @import '@/common/uni-ui.scss';
 
    .content {
        display: flex;
        height: 150px;
    }
 
    .content-text {
        font-size: 14px;
        color: #666;
    }
 
    .itemstyle {
        margin-top: 30px;
        margin-left: 5%;
    }
 
    .headerstyle {
        width: 90%;
    }
</style>