rabin 2 years ago
parent
commit
86e68ffeb6
1 changed files with 24 additions and 12 deletions
  1. 24 12
      app/cash/lib/Order.php

+ 24 - 12
app/cash/lib/Order.php

@@ -54,21 +54,33 @@ class Order
             $update['source_id'] = $order['source_id'];
         }
 
-        $update['source_order_num'] = $order['order_num'];
-        $update['num'] = $order['num'];
+        if ($info && $jstype == 3) {
 
-        if ($refund) {
-            $update['cash'] = $refund['cash'];
-            $update['p_cash'] = isset($refund['p_cash']) ? $refund['p_cash'] : 0;
         } else {
-            $update['cash'] = $order['price'];
-            $update['p_cash'] = $order['p_price'];
-        }
+            
+            $update['type'] = $order['type'];
+            $update['type_id'] = $order['type_id'];
+            if ($order['source_type']) {
+                $update['source_type'] = $order['source_type'];
+                $update['source_id'] = $order['source_id'];
+            }
 
-        if ($jstype == 2) {
-            $update['cash'] = -1*$update['cash'];
-            $update['p_cash'] = -1*$update['p_cash'];
-            $update['num'] = -1*$update['num'];
+            $update['source_order_num'] = $order['order_num'];
+            $update['num'] = $order['num'];
+
+            if ($refund) {
+                $update['cash'] = $refund['cash'];
+                $update['p_cash'] = isset($refund['p_cash']) ? $refund['p_cash'] : 0;
+            } else {
+                $update['cash'] = $order['price'];
+                $update['p_cash'] = $order['p_price'];
+            }
+
+            if ($jstype == 2) {
+                $update['cash'] = -1*$update['cash'];
+                $update['p_cash'] = -1*$update['p_cash'];
+                $update['num'] = -1*$update['num'];
+            }
         }
 
         if ($info) {