Commit 2c7eb3c3 by 孙龙

修改订单

parent 6eb0329a
Showing with 4 additions and 4 deletions
......@@ -117,18 +117,18 @@ class OrderService extends BaseService
// dd($returnItems);
foreach ($orderItems as $orderItem){
OrderItem::updateOrderItem(["rec_id"=>$orderItem["order_items_id"]],[
"goods_price"=>floatval($orderItem["goods_price"]) <= 0 ? 0 : $orderItem["goods_price"],
"goods_price"=>floatval($orderItem["goods_price"]) <= 0 ? 0 : decimal_number_format($orderItem["goods_price"],DIGITS_SIX),
"goods_number"=>intval($orderItem["goods_number"]) <= 0 ? 0 : $orderItem["goods_number"],
]);
$returnItems = OrderReturnItems::getOrderReturnItem($orderItem["order_items_id"]);
$insertReturnItemData = [
"type"=>$orderItem["return_type"],
"type"=>intval($orderItem["return_type"]),
"order_id"=>$order_id,
"rec_id"=>$orderItem["order_items_id"],
"return_num"=>intval($orderItem["return_goods_number"]) <= 0 ? 0 : intval($orderItem["return_goods_number"]),
"return_price"=>floatval($orderItem["return_goods_price"]) <= 0 ? 0 : $orderItem["return_goods_price"],
"return_amount"=> $orderItem["return_amount"],
"return_price"=>floatval($orderItem["return_goods_price"]) <= 0 ? 0 : decimal_number_format($orderItem["return_goods_price"],DIGITS_SIX),
"return_amount"=> decimal_number_format($orderItem["return_amount"]),
// "return_amount"=> decimal_number_format($orderItem["return_goods_number"] * $orderItem["return_goods_price"]),
];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment