Browse Source

收银完成

cr 4 years ago
parent
commit
3aa3c52ffa

+ 18 - 5
src/pages/manage/cashier/detail.vue

@@ -26,12 +26,25 @@
26
                 <!-- <div>{{ data.tradeNo }}</div> -->
26
                 <!-- <div>{{ data.tradeNo }}</div> -->
27
             </div>
27
             </div>
28
             <ul class="good-list">
28
             <ul class="good-list">
29
-                <li class="item" v-for="item of data.orderItems" :key="item.id" :class="{invalid:item.status === 9}">
29
+                <li
30
+                    class="item"
31
+                    v-for="item of data.orderItems"
32
+                    :key="item.id"
33
+                    :class="{ invalid: item.status === 9 }"
34
+                >
30
                     <div class="name">{{ item.productName }}</div>
35
                     <div class="name">{{ item.productName }}</div>
31
-                    <div class="num">
32
-                        <span class="refund" v-if="item.status === 9">已退货</span>
33
-                        {{ item.count }}
34
-                        </div>
36
+                    <div class="num" v-if="item.weighingGoods">
37
+                        <span class="refund" v-if="item.status === 9"
38
+                            >已退货</span
39
+                        >
40
+                        {{ item.count/100 }} kg
41
+                    </div>
42
+                    <div class="num" v-else>
43
+                        <span class="refund" v-if="item.status === 9"
44
+                            >已退货</span
45
+                        >
46
+                        x{{ item.count}}
47
+                    </div>
35
                 </li>
48
                 </li>
36
             </ul>
49
             </ul>
37
         </div>
50
         </div>

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

@@ -1,7 +1,7 @@
1
 <template>
1
 <template>
2
     <div class="page shop-cart-page" :class="{ page_red: theme === 1 }">
2
     <div class="page shop-cart-page" :class="{ page_red: theme === 1 }">
3
         <div class="page__top">
3
         <div class="page__top">
4
-            <span class="quick-text" @click="addNumGood">无码商品</span>
4
+            <span class="quick-text" @click="addNumGood">{{viewWeighGood?'无码称重商品':'无码商品'}}</span>
5
             <span class="quick-text" @click="goCacheList">挂单列表</span>
5
             <span class="quick-text" @click="goCacheList">挂单列表</span>
6
             <div class="search">
6
             <div class="search">
7
                 <i class="iconfont icontubiao- search__icon"></i>
7
                 <i class="iconfont icontubiao- search__icon"></i>

+ 7 - 7
src/pages/manage/cashier/settlement.vue

@@ -418,8 +418,8 @@ export default {
418
                 return;
418
                 return;
419
             }
419
             }
420
             let sendData = {
420
             let sendData = {
421
-                totalAmount: parseInt(this.totalPrice * 100),
422
-                payAmount: parseInt(this.payAmount * 100),
421
+                totalAmount: Math.round(this.totalPrice * 100),
422
+                payAmount: Math.round(this.payAmount * 100),
423
                 discount: this.discount.show
423
                 discount: this.discount.show
424
                     ? Number(this.discount.ratio)
424
                     ? Number(this.discount.ratio)
425
                     : 100, // 折扣
425
                     : 100, // 折扣
@@ -431,12 +431,12 @@ export default {
431
                     // 无码商品
431
                     // 无码商品
432
                     sendData.orderItems.push({
432
                     sendData.orderItems.push({
433
                         count: item.isWeightGood
433
                         count: item.isWeightGood
434
-                            ? parseInt(item.select_num * 1000)
434
+                            ? Math.round(item.select_num * 1000)
435
                             : item.select_num,
435
                             : item.select_num,
436
                         price: item.price,
436
                         price: item.price,
437
                         weighingGoods: item.isWeightGood ? true : false,
437
                         weighingGoods: item.isWeightGood ? true : false,
438
                         weight: item.isWeightGood
438
                         weight: item.isWeightGood
439
-                            ? parseInt(item.select_num * 1000)
439
+                            ? Math.round(item.select_num * 1000)
440
                             : item.select_num,
440
                             : item.select_num,
441
                     });
441
                     });
442
                 } else {
442
                 } else {
@@ -444,11 +444,11 @@ export default {
444
                         productId: item.id,
444
                         productId: item.id,
445
                         skuId: item._sku ? item._sku.skuId : "",
445
                         skuId: item._sku ? item._sku.skuId : "",
446
                         count: item.isWeightGood
446
                         count: item.isWeightGood
447
-                            ? parseInt(item.select_num * 1000)
447
+                            ? Math.round(item.select_num * 1000)
448
                             : item.select_num,
448
                             : item.select_num,
449
                         weighingGoods: item.isWeightGood ? true : false,
449
                         weighingGoods: item.isWeightGood ? true : false,
450
                         weight: item.isWeightGood
450
                         weight: item.isWeightGood
451
-                            ? parseInt(item.select_num * 1000)
451
+                            ? Math.round(item.select_num * 1000)
452
                             : item.select_num,
452
                             : item.select_num,
453
                     });
453
                     });
454
                 }
454
                 }
@@ -639,6 +639,7 @@ export default {
639
                 }
639
                 }
640
             }
640
             }
641
             n = n.toFixed(2);
641
             n = n.toFixed(2);
642
+            console.log(parseFloat(n));
642
             return parseFloat(n);
643
             return parseFloat(n);
643
             // return 100;
644
             // return 100;
644
         },
645
         },
@@ -653,7 +654,6 @@ export default {
653
         // 收款金额
654
         // 收款金额
654
         payAmount() {
655
         payAmount() {
655
             let v = 0;
656
             let v = 0;
656
-            console.log(this.payType, this.curPayType);
657
             if (this.payType[this.curPayType]) {
657
             if (this.payType[this.curPayType]) {
658
                 v += Number(this.payType[this.curPayType]);
658
                 v += Number(this.payType[this.curPayType]);
659
             }
659
             }