cqpCow 1 год назад
Родитель
Сommit
e955d95cf8
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      app/Service/ConstructionService.php

+ 3 - 0
app/Service/ConstructionService.php

@@ -283,6 +283,9 @@ class ConstructionService extends Service
             $address = $tmp;
         }
         $construction['address'] = $address;
+        $start_time = $construction['start_time'] ? date("Y-m-d H:i",$construction['start_time']) : '';
+        $end_time = $construction['end_time'] ? date("Y-m-d H:i",$construction['end_time']) : '';
+        $construction['construction_period'] = $start_time . '——' . $end_time;
         $sales = SalesOrder::where('id',$construction['sales_order_id'])->value('order_number');
         $construction['sales_order_number'] = $sales;
         $customer_title = Customer::where('id',$construction['customer_id'])->value('title');