Browse Source

增加收银挂单

cr 4 years ago
parent
commit
8e9b14beaa

+ 4 - 0
releaselog.md

@@ -1,4 +1,8 @@
1 1
 
2
+# 0.4.2 (21.01.13 18:00) 
3
+### 增加收银挂单
4
+
5
+
2 6
 # 0.4.1 (21.01.09 18:00) 
3 7
 ### 收银修改
4 8
 

+ 88 - 74
src/pages/manage/cashier/cache-detail.vue

@@ -3,40 +3,21 @@
3 3
         <div class="head">
4 4
             <section class="item">
5 5
                 <!-- <my-image class="img" src=""></my-image> -->
6
-                订单号: {{ data.tradeNo }}
7
-            </section>
8
-            <section class="item">
9
-                <!-- <my-image class="img" src=""></my-image> -->
10
-                状态: {{ data.status | statusFilter }}
11
-            </section>
12
-            <section class="item">
13
-                <!-- <my-image class="img" src=""></my-image> -->
14
-                备注:
15
-                {{ data.payRemark || "" }}
6
+                挂单号: {{ data.suspendNo }}
16 7
             </section>
17 8
             <my-image class="line-img" src="/static/icon/line.jpg"></my-image>
18 9
         </div>
19 10
         <div class="goods">
20 11
             <div class="good-head">
21 12
                 <div>
22
-                    {{ data.payTime }} 销售{{
23
-                        data.orderItems ? data.orderItems.length : 0
24
-                    }}件
13
+                    {{ data.orderItems ? data.orderItems.length : 0 }}件 商品
25 14
                 </div>
26 15
                 <!-- <div>{{ data.tradeNo }}</div> -->
27 16
             </div>
28 17
             <ul class="good-list">
29
-                <li
30
-                    class="item"
31
-                    v-for="item of data.orderItems"
32
-                    :key="item.id"
33
-                    :class="{ invalid: item.status === 9 }"
34
-                >
18
+                <li class="item" v-for="item of data.orderItems" :key="item.id">
35 19
                     <div class="name">{{ item.productName }}</div>
36 20
                     <div class="num">
37
-                        <span class="refund" v-if="item.status === 9"
38
-                            >已退货</span
39
-                        >
40 21
                         {{ item.count }}
41 22
                     </div>
42 23
                 </li>
@@ -49,90 +30,112 @@
49 30
             </section>
50 31
             <section class="item">
51 32
                 <div>商品总额</div>
52
-                <div>¥{{ data.amount | minuteToRmb2 }}</div>
53
-            </section>
54
-            <section class="item">
55
-                <div>折扣</div>
56
-                <div>
57
-                    -¥{{ (data.amount - data.payAmount) | minuteToRmb2 }}
58
-                </div>
59
-            </section>
60
-            <section class="item color">
61
-                <div>应付</div>
62
-                <div>¥{{ data.payAmount | minuteToRmb2 }}</div>
33
+                <div>¥{{ amount  }}</div>
63 34
             </section>
64 35
         </div>
65 36
 
66
-        <div class="tool">
67
-            <span class="btn" @click="">删除</span>
68
-            <span class="btn btn2" @click="">追加</span>
69
-            <span class="btn btn1" @click="">收银</span>
37
+        <div class="tool" v-if="data.orderItems">
38
+            <span class="btn" @click="remove">删除</span>
39
+            <!-- <span class="btn btn2" @click="">追加</span> -->
40
+            <span class="btn btn1" @click="submit">收银</span>
70 41
         </div>
71 42
     </div>
72 43
 </template>
73 44
 
74 45
 <script>
75 46
 import MyImage from "../../../components/image/index";
76
-let statusEnum = {
77
-    2: "待支付",
78
-    3: "待发货",
79
-    4: "待收货",
80
-    6: "已取消",
81
-    7: "售后中",
82
-    8: "已删除",
83
-    9: "已完成",
84
-    10: "已评价",
85
-    11: "已售后",
86
-    12: "已退款",
87
-    20: "待接单",
88
-    21: "拣货中",
89
-    22: "拣货完成",
90
-    23: "待配送",
91
-    24: "配送中",
92
-    25: "已送达",
93
-    26: "待提货",
94
-    27: "已提货",
95
-    31: "订单已推单",
96
-    32: "订单已被骑手接单",
97
-    33: "骑手已到店",
98
-    34: "骑手已取餐",
99
-    35: "订单完成",
100
-    36: "订单失败",
101
-};
102 47
 export default {
103 48
     name: "",
104 49
     components: { MyImage },
105
-    filters: {
106
-        statusFilter(v) {
107
-            return statusEnum[v] || "";
108
-        },
109
-    },
110 50
     // 数据
111 51
     data() {
112 52
         return {
53
+            suspendNo: "",
113 54
             pageIndex: 1,
114 55
             pageSize: 20,
115 56
             data: {},
57
+            removeLoading: false,
116 58
         };
117 59
     },
118 60
 
119 61
     onLoad(opts) {
120
-        this.orderNo = opts.orderNo;
62
+        this.suspendNo = opts.suspendNo;
121 63
     },
122 64
     async onShow() {
123
-        // this.getData(this.orderNo);
65
+        this.getData();
124 66
     },
125 67
     // 函数
126 68
     methods: {
127 69
         getData(orderNo) {
70
+            uni.showLoading({
71
+                title: "加载中...",
72
+                mask: true,
73
+            });
128 74
             this.api
129
-                .get("/Order/GetSettleDetail", {
130
-                    orderNo: orderNo,
75
+                .get("/Order/GetOrderSuspend", {
76
+                    suspendNo: this.suspendNo,
131 77
                 })
132 78
                 .then((res) => {
79
+                    uni.hideLoading();
133 80
                     this.data = res.data;
134 81
                 });
135 82
         },
83
+
84
+        submit() {
85
+            let list = [];
86
+            for (let item of this.data.orderItems) {
87
+                list.push({
88
+                    ...item,
89
+                    select_num: item.count,
90
+                });
91
+            }
92
+            this.$store.commit("common/update", {
93
+                cashierGoodList: list,
94
+            });
95
+            // this.selectList = [];
96
+            this.router.push("/pages/manage/cashier/settlement");
97
+        },
98
+
99
+        remove() {
100
+            if (this.removeLoading) {
101
+                return;
102
+            }
103
+            this.fn
104
+                .showModal({
105
+                    content: "是否确认删除?",
106
+                })
107
+                .then((res) => {
108
+                    if (res.confirm) {
109
+                        this.removeLoading = true;
110
+                        uni.showLoading({
111
+                            title: "提交中...",
112
+                            mask: true,
113
+                        });
114
+                        this.api
115
+                            .post(
116
+                                "/Order/RemoveOrderSuspend",
117
+                                {
118
+                                    suspendNo: this.suspendNo,
119
+                                    query: true,
120
+                                },
121
+                                { pass: true }
122
+                            )
123
+                            .then((res) => {
124
+                                this.removeLoading = false;
125
+                                uni.hideLoading();
126
+                                if (res.success) {
127
+                                    this.fn.showToast("删除成功");
128
+                                    this.router.back();
129
+                                } else {
130
+                                    this.fn.showModal({
131
+                                        content: res.message,
132
+                                        showCancel: false,
133
+                                    });
134
+                                }
135
+                            });
136
+                    }
137
+                });
138
+        },
136 139
     },
137 140
 
138 141
     // 数据计算
@@ -140,6 +143,17 @@ export default {
140 143
         user() {
141 144
             return this.$store.state.user.user;
142 145
         },
146
+
147
+        amount() {
148
+            let num = 0;
149
+            if (this.data.orderItems) {
150
+                for (let item of this.data.orderItems) {
151
+                    num += (item.price / 100) * item.count;
152
+                }
153
+                num = num.toFixed(2);
154
+            }
155
+            return num;
156
+        },
143 157
     },
144 158
 
145 159
     // 数据监听
@@ -242,12 +256,12 @@ export default {
242 256
         border: 1px solid #f1f1f1;
243 257
         margin-left: px(30);
244 258
     }
245
-    .btn1{
259
+    .btn1 {
246 260
         background-color: #ff1135;
247 261
         border-color: #ff1135;
248 262
         color: #fff;
249 263
     }
250
-    .btn2{
264
+    .btn2 {
251 265
         background-color: #a9998a;
252 266
         border-color: #a9998a;
253 267
         color: #fff;

+ 46 - 37
src/pages/manage/cashier/cache.vue

@@ -18,10 +18,12 @@
18 18
         </div>
19 19
         <div class="page__content">
20 20
             <ul class="list">
21
-                <li class="item" @click="goDetail">100</li>
22
-                <li class="item">12</li>
23
-                <li class="item">130</li>
24
-                <li class="item">1550</li>
21
+                <li class="item" v-for="item of dataList" :key="item._id" @click="goDetail(item)">
22
+                    <div class="box">
23
+                        {{item.suspendNo}}
24
+                    </div>
25
+                </li>
26
+      
25 27
             </ul>
26 28
         </div>
27 29
     </div>
@@ -40,27 +42,26 @@ export default {
40 42
         return {
41 43
             searchVal: "",
42 44
             dataList: [],
43
-            pageIndex:1,
44
-            pageSize:20
45
+            pageIndex: 1,
46
+            pageSize: 20,
45 47
         };
46 48
     },
47 49
 
48
-    onLoad() {},
50
+    onLoad() {
51
+    },
49 52
 
50
-    async onShow() {},
53
+    async onShow() {
54
+        this.getList();},
51 55
 
52 56
     onPullDownRefresh() {
53
-
54 57
         this.getList();
55
-
56 58
     },
57
-    onReachBottom(){
59
+    onReachBottom() {
58 60
         this.getMoreList();
59 61
     },
60 62
 
61 63
     // 函数
62 64
     methods: {
63
-
64 65
         getList() {
65 66
             uni.showLoading({
66 67
                 title: "加载中...",
@@ -68,40 +69,44 @@ export default {
68 69
             });
69 70
             this.pageIndex = 1;
70 71
             this.dataEnd = false;
71
-            this.api
72
-                .get("/Order/GetSettleList", {
73
-                    pageIndex: this.pageIndex,
74
-                    pageSize: this.pageSize,
75
-                })
76
-                .then((res) => {
77
-                    uni.hideLoading();
78
-                    this.dataList = res.data.data;
79
-                });
72
+            let sendData = {
73
+                pageIndex: this.pageIndex,
74
+                pageSize: this.pageSize,
75
+            };
76
+            if (this.searchVal) {
77
+                sendData.suspendNo = this.searchVal;
78
+            }
79
+            this.api.get("/Order/GetOrderSuspendList", sendData).then((res) => {
80
+                uni.hideLoading();
81
+                this.dataList = res.data.data;
82
+            });
80 83
         },
81 84
         getMoreList() {
82 85
             if (this.dataEnd) {
83 86
                 return;
84 87
             }
85 88
             this.pageIndex++;
86
-            this.api
87
-                .get("/Order/GetSettleList", {
88
-                    pageIndex: this.pageIndex,
89
-                    pageSize: this.pageSize,
90
-                })
91
-                .then((res) => {
92
-                    if (res.data.data.length === 0) {
93
-                        this.dataEnd = true;
94
-                    } else {
95
-                        this.dataList = [...this.dataList, ...res.data.data];
96
-                    }
97
-                });
89
+            let sendData = {
90
+                pageIndex: this.pageIndex,
91
+                pageSize: this.pageSize,
92
+            };
93
+            if (this.searchVal) {
94
+                sendData.suspendNo = this.searchVal;
95
+            }
96
+            this.api.get("/Order/GetOrderSuspendList", sendData).then((res) => {
97
+                if (res.data.data.length === 0) {
98
+                    this.dataEnd = true;
99
+                } else {
100
+                    this.dataList = [...this.dataList, ...res.data.data];
101
+                }
102
+            });
98 103
         },
99 104
 
100 105
         goDetail(item) {
101 106
             this.router.push({
102 107
                 path: "/pages/manage/cashier/cache-detail",
103 108
                 query: {
104
-                    
109
+                    suspendNo:item.suspendNo
105 110
                 },
106 111
             });
107 112
         },
@@ -114,7 +119,7 @@ export default {
114 119
         },
115 120
         closeSearchVal() {
116 121
             this.searchVal = "";
117
-            this.getGoodsList();
122
+            this.getList();
118 123
         },
119 124
     },
120 125
 
@@ -167,17 +172,21 @@ export default {
167 172
 }
168 173
 .list {
169 174
     display: flex;
170
-    justify-content: space-between;
175
+    justify-content: flex-start;
171 176
     flex-wrap: wrap;
172 177
     padding: 0 px(35);
173 178
     margin-top: px(30);
174 179
     .item {
180
+        width: 33.333333%;
181
+        margin-top: px(30);
182
+    }
183
+    .box{
175 184
         width: px(300);
176 185
         height: px(100);
186
+        margin: 0 auto;;
177 187
         display: flex;
178 188
         align-items: center;
179 189
         justify-content: center;
180
-        margin-top: px(30);
181 190
         background-color: #fff;
182 191
         border-radius: px(8);
183 192
     }

+ 61 - 48
src/pages/manage/cashier/index.vue

@@ -347,12 +347,22 @@
347 347
         <!-- 规格选择 -->
348 348
         <g-spec-modal ref="spec" @change="modalCartChange()"></g-spec-modal>
349 349
         <!-- 挂单 -->
350
-        <div class="cache-modal" v-if="cacheShow">
351
-            <div class="bg"></div>
350
+        <uni-popup ref="popupCache" type="dialog">
351
+            <uni-popup-dialog
352
+                mode="input"
353
+                :title="'牌号'"
354
+                :inputType="'number'"
355
+                :content="' '"
356
+                placeholder="请输入牌号"
357
+                @confirm="cacheConfirm"
358
+            ></uni-popup-dialog>
359
+        </uni-popup>
360
+        <!-- <div class="cache-modal" v-if="cacheShow">
361
+            <div class="bg" @click="cacheShow = false"></div>
352 362
             <div class="cache-body">
353 363
                 <div class="head">
354 364
                     <div class="tit">挂单</div>
355
-                    <div class="close">取消</div>
365
+                    <div class="close" @click="cacheShow = false">取消</div>
356 366
                 </div>
357 367
                 <div class="body">
358 368
                     <div class="item">
@@ -363,17 +373,10 @@
363 373
                             :maxlength="8"
364 374
                         />
365 375
                     </div>
366
-                    <div class="item">
367
-                        <input
368
-                            type="text"
369
-                            placeholder="备注"
370
-                            v-model="cacheForm.remarks"
371
-                        />
372
-                    </div>
373 376
                 </div>
374 377
                 <div class="cache-btn" @click="cacheSubmit">确定</div>
375 378
             </div>
376
-        </div>
379
+        </div> -->
377 380
     </div>
378 381
 </template>
379 382
 
@@ -433,12 +436,6 @@ export default {
433 436
             selectList: [],
434 437
             showSelectList: false,
435 438
 
436
-            // 挂单
437
-            cacheShow: false,
438
-            cacheForm: {
439
-                num: "",
440
-                remarks: "",
441
-            },
442 439
         };
443 440
     },
444 441
 
@@ -809,40 +806,56 @@ export default {
809 806
 
810 807
         // 挂单显示
811 808
         viewCache() {
812
-            this.cacheForm.num === "";
813
-            this.cacheForm.remarks === "";
814
-            this.cacheShow = true;
809
+            if(this.selectList.length === 0){
810
+                return  this.fn.showToast("请先选择商品");
811
+            }
812
+              this.$refs.popupCache.open({
813
+                type: "dialog",
814
+            });
815 815
         },
816 816
 
817
-        cacheSubmit() {
817
+        cacheConfirm(done,value) {
818
+
818 819
             this.cacheShow = false;
819
-            console.log(this.cacheForm,this.selectList);
820
-            // uni.showLoading({
821
-            //     title: "提交中...",
822
-            //     mask: true,
823
-            // });
824
-            // this.api
825
-            //     .post(
826
-            //         "/order/reverseSettle",
827
-            //         {
828
-            //             query: true,
829
-            //             id: this.data.id,
830
-            //         },
831
-            //         { pass: true }
832
-            //     )
833
-            //     .then((res) => {
834
-            //         this.btnLoading = false;
835
-            //         uni.hideLoading();
836
-            //         if (res.success) {
837
-            //             this.fn.showToast("挂单成功");
838
-            //             this.cacheShow = false;
839
-            //         } else {
840
-            //             this.fn.showModal({
841
-            //                 content: res.message,
842
-            //                 showCancel: false,
843
-            //             });
844
-            //         }
845
-            //     });
820
+            console.log(value)
821
+            if(!value){
822
+                return this.fn.showToast("请输入牌号");
823
+            }
824
+            uni.showLoading({
825
+                title: "提交中...",
826
+                mask: true,
827
+            });
828
+            let sendData = {
829
+                suspendNo: value,
830
+                orderItems: [],
831
+            }
832
+            for(let item of this.selectList){
833
+                sendData.orderItems.push({
834
+                     productId: item.id,
835
+                    skuId: item._sku ? item._sku.skuId : "",
836
+                    count: item.select_num,
837
+                })
838
+            }
839
+            this.api
840
+                .post(
841
+                    "/order/Suspend",
842
+                    sendData,
843
+                    { pass: true }
844
+                )
845
+                .then((res) => {
846
+                    this.btnLoading = false;
847
+                    uni.hideLoading();
848
+                    if (res.success) {
849
+                        this.fn.showToast("挂单成功");
850
+                        this.selectList = [];
851
+                        done();
852
+                    } else {
853
+                        this.fn.showModal({
854
+                            content: res.message,
855
+                            showCancel: false,
856
+                        });
857
+                    }
858
+                });
846 859
         },
847 860
 
848 861
         goCacheList(){

+ 1 - 1
src/pages/manage/index.vue

@@ -62,7 +62,7 @@
62 62
 
63 63
         <button class="btn" @click="layout">退出登录</button>
64 64
 
65
-        <div class="ver">0.4.12</div>
65
+        <div class="ver">0.4.2</div>
66 66
     </div>
67 67
 </template>
68 68