cr 4 anni fa
parent
commit
3aa3c52ffa

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

@@ -26,12 +26,25 @@
26 26
                 <!-- <div>{{ data.tradeNo }}</div> -->
27 27
             </div>
28 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 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 48
                 </li>
36 49
             </ul>
37 50
         </div>

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

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

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

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