dever 3 years ago
parent
commit
d1f38d2a5f
2 changed files with 4 additions and 4 deletions
  1. 1 1
      app/mshop/lib/Buy.php
  2. 3 3
      app/shop/lib/Sell.php

+ 1 - 1
app/mshop/lib/Buy.php

@@ -1583,7 +1583,7 @@ class Buy
             $shop = Dever::db('shop/info')->find($info['type_id']);
 
             if ($audit == 2) {
-                Dever::db('shop/buy_order')->update(array('where_id' => $info['id'], 'audit' => $audit, 'audit_desc' => $audit_text));
+                Dever::db('shop/buy_order')->update(array('where_id' => $info['id'], 'status' => 3, 'audit' => $audit, 'audit_desc' => $audit_text));
                 # 成功
                 if (strstr($info['order_num'], '_')) {
                     $temp = explode('_', $info['order_num']);

+ 3 - 3
app/shop/lib/Sell.php

@@ -1724,7 +1724,7 @@ class Sell
                             Dever::load('mshop/lib/buy')->getSelect($source, $v1['source_id'], $v1['order_goods_id']),
                             $v1['num'],
                             $goods_info['unit'],
-                            $v1['p_price'] * $v1['num'],
+                            $v1['price'] * $v1['num'],
                         );
 
                         $body[] = $d;
@@ -1750,7 +1750,7 @@ class Sell
                         Dever::load('mshop/lib/buy')->getSelect($source, false, $v['id']),
                         $v['num'],
                         $goods_info['unit'],
-                        $v['p_price'] * $v['num'],
+                        $v['price'] * $v['num'],
                     );
 
                     $body[] = $d;
@@ -1878,7 +1878,7 @@ class Sell
             $shop = Dever::db('shop/info')->find($info['shop_id']);
 
             if ($audit == 2) {
-                Dever::db('shop/sell_order')->update(array('where_id' => $info['id'], 'audit' => $audit, 'audit_desc' => $audit_text));
+                Dever::db('shop/sell_order')->update(array('where_id' => $info['id'], 'status' => 3, 'audit' => $audit, 'audit_desc' => $audit_text));
                 # 成功
                 if (strstr($info['order_num'], '_')) {
                     $temp = explode('_', $info['order_num']);