refactor(admin): 优化前置订单相关功能

- 在 BeforehandOrderLists 中添加 file 字段
- 在 BeforehandOrderLogic 中:
  - 优化订单创建逻辑,添加审批记录
  - 调整订单更新逻辑,仅更新必要的字段
  - 重构订单详情获取方法
  - 添加时间判断逻辑,计算存储和配送时间
- 在 WarehouseProductReturnLogic 中关联前置订单 ID
- 在 OrderAllocation 中更新订单时间相关逻辑
- 在 functions.php 中注释掉未使用的 getNewOrderSn 函数
This commit is contained in:
mkm 2024-11-10 15:59:30 +08:00
parent 37f6381c2d
commit 91546d26d1
5 changed files with 54 additions and 36 deletions

View File

@ -47,7 +47,7 @@ class BeforehandOrderLists extends BaseAdminDataLists implements ListsSearchInte
public function lists(): array public function lists(): array
{ {
return BeforehandOrder::where($this->searchWhere) return BeforehandOrder::where($this->searchWhere)
->field(['id','order_id','store_id','order_type','total_num','total_price','outbound_id','admin_id','create_time', 'status', 'mark','warehousing_id']) ->field(['id','order_id','store_id','order_type','total_num','total_price','outbound_id','admin_id','create_time', 'status', 'mark','warehousing_id','file'])
->limit($this->limitOffset, $this->limitLength) ->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc']) ->order(['id' => 'desc'])
->select()->each(function ($item){ ->select()->each(function ($item){

View File

@ -27,6 +27,7 @@ use app\common\service\xlsx\OrderAllocation;
use app\common\service\xlsx\OrderInfo; use app\common\service\xlsx\OrderInfo;
use app\common\service\xlsx\OrderList; use app\common\service\xlsx\OrderList;
use app\common\service\xlsx\OrderOutbound; use app\common\service\xlsx\OrderOutbound;
use DateTime;
use support\exception\BusinessException; use support\exception\BusinessException;
use think\facade\Db; use think\facade\Db;
@ -102,12 +103,11 @@ class BeforehandOrderLogic extends BaseLogic
'phone' => $params['phone'] ?? '', 'phone' => $params['phone'] ?? '',
'address' => $params['address'] ?? '', 'address' => $params['address'] ?? '',
'mark' => $params['mark'] ?? '', 'mark' => $params['mark'] ?? '',
'arrival_time' => strtotime($params['arrival_time']),
'order_type' => $order_type, 'order_type' => $order_type,
'other_data' => json_encode($params['other_data'], true) 'other_data' => json_encode($params['other_data'], true)
]); ]);
/** 添加审批记录 */ /** 添加审批记录 */
BeforehandOrderRecord::create(['oid'=>$order['id'],'step_id'=>1]); BeforehandOrderRecord::create(['oid' => $order['id'], 'step_id' => 1]);
$product_arr = []; $product_arr = [];
foreach ($datas as $k => $v) { foreach ($datas as $k => $v) {
$datas[$k]['bhoid'] = $order['id']; $datas[$k]['bhoid'] = $order['id'];
@ -308,23 +308,14 @@ class BeforehandOrderLogic extends BaseLogic
{ {
Db::startTrans(); Db::startTrans();
try { try {
BeforehandOrder::where('id', $params['id'])->update([ $find=BeforehandOrder::where('id', $params['id'])->find();
'store_id' => $params['store_id'], $other_data=$find['other_data'];
'order_id' => $params['order_id'], $other_data['arrival_time']=strtotime($params['arrival_time']);
'uid' => $params['uid'], $find->update([
'cart_id' => $params['cart_id'], 'other_data'=>json_encode($other_data, true),
'total_num' => $params['total_num'], 'image' => $params['image'],
'total_price' => $params['total_price'],
'pay_price' => $params['pay_price'],
'deduction_price' => $params['deduction_price'],
'paid' => $params['paid'],
'pay_time' => $params['pay_time'],
'pay_type' => $params['pay_type'],
'source' => $params['source'],
'status' => $params['status'],
'mark' => $params['mark'] 'mark' => $params['mark']
]); ]);
Db::commit(); Db::commit();
return true; return true;
} catch (\Throwable $e) { } catch (\Throwable $e) {
@ -508,8 +499,7 @@ class BeforehandOrderLogic extends BaseLogic
*/ */
public static function detail($params): array public static function detail($params): array
{ {
$res = BeforehandOrder::findOrEmpty($params['id'])->toArray(); $res = BeforehandOrder::where('id',$params['id'])->find()->toArray();
$ids = BeforehandOrderCartInfo::where('bhoid', $params['id'])->column('product_id'); $ids = BeforehandOrderCartInfo::where('bhoid', $params['id'])->column('product_id');
$top_cate_ids = StoreProduct::where('id', 'in', $ids)->column('top_cate_id'); $top_cate_ids = StoreProduct::where('id', 'in', $ids)->column('top_cate_id');
if ($top_cate_ids) { if ($top_cate_ids) {
@ -519,14 +509,13 @@ class BeforehandOrderLogic extends BaseLogic
} }
$res['system_store'] = SystemStore::where('id', $res['store_id'])->value('name'); $res['system_store'] = SystemStore::where('id', $res['store_id'])->value('name');
$res['admin_name'] = Admin::where('id', $res['admin_id'])->value('name'); $res['admin_name'] = Admin::where('id', $res['admin_id'])->value('name');
$record=BeforehandOrderRecord::where('oid',$params['id'])->order('id','desc')->find(); $record = BeforehandOrderRecord::where('oid', $params['id'])->order('id', 'desc')->find();
$res['step_id']=1; $res['step_id'] = 1;
if($record){ if ($record) {
$res['step_id']=$record['step_id']; $res['step_id'] = $record['step_id'];
if($record['check_user_id']>0){ if ($record['check_user_id'] > 0) {
$res['examine_name']=Admin::where('id',$record['check_user_id'])->value('name'); $res['examine_name'] = Admin::where('id', $record['check_user_id'])->value('name');
} }
} }
return $res; return $res;
} }
@ -568,6 +557,19 @@ class BeforehandOrderLogic extends BaseLogic
}); });
$other_data = $order['other_data']; $other_data = $order['other_data'];
unset($order['other_data']); unset($order['other_data']);
$dateTime = new DateTime($order['create_time']);
$hour = (int) $dateTime->format('H');
// 判断时间是否小于18点
if ($hour < 18) {
// 时间小于18点的逻辑
$data['storage_time'] = $dateTime->modify('+60 minutes')->format('Y-m-d H:i:s');
$data['delivery_time'] = $dateTime->modify('+90 minutes')->format('Y-m-d H:i:s');
} else {
// 时间大于或等于18点的逻辑
$data['storage_time'] = $dateTime->modify('+150 minutes')->format('Y-m-d H:i:s');
$data['delivery_time'] = $dateTime->modify('+205 minutes')->format('Y-m-d H:i:s');
}
$data['split_time'] = $dateTime->modify('+10 minutes')->format('Y-m-d H:i:s');
$file_path = $order_allocation->export($data, $order, $other_data); $file_path = $order_allocation->export($data, $order, $other_data);
return $file_path; return $file_path;
} }
@ -595,7 +597,7 @@ class BeforehandOrderLogic extends BaseLogic
return $file_path; return $file_path;
} }
/** /**
* 导出出库 * 导出出库
*/ */
public static function OrderOutbound($params) public static function OrderOutbound($params)
@ -609,7 +611,7 @@ class BeforehandOrderLogic extends BaseLogic
$item['store_name'] = $find['store_name']; $item['store_name'] = $find['store_name'];
return $item; return $item;
}); });
$order['system_store_name']=SystemStore::where('id', $order['store_id'])->value('name'); $order['system_store_name'] = SystemStore::where('id', $order['store_id'])->value('name');
$other_data = $order['other_data']; $other_data = $order['other_data'];
unset($order['other_data']); unset($order['other_data']);
$file_path = $order_info->export($data, $order, $other_data); $file_path = $order_info->export($data, $order, $other_data);

View File

@ -5,6 +5,7 @@ namespace app\admin\logic\warehouse_product_return;
use app\common\model\warehouse_product_return\WarehouseProductReturn; use app\common\model\warehouse_product_return\WarehouseProductReturn;
use app\common\logic\BaseLogic; use app\common\logic\BaseLogic;
use app\common\model\beforehand_order\BeforehandOrder;
use app\common\model\warehouse_product\WarehouseProduct; use app\common\model\warehouse_product\WarehouseProduct;
use app\common\model\warehouse_product_storege\WarehouseProductStorege; use app\common\model\warehouse_product_storege\WarehouseProductStorege;
use support\exception\BusinessException; use support\exception\BusinessException;
@ -33,8 +34,10 @@ class WarehouseProductReturnLogic extends BaseLogic
try { try {
$find=WarehouseProduct::where('id',$params['id'])->find(); $find=WarehouseProduct::where('id',$params['id'])->find();
if($find){ if($find){
$id=BeforehandOrder::where('id',$find['oid'])->value('id');
WarehouseProductReturn::create([ WarehouseProductReturn::create([
'source_id'=>$params['id'], 'source_id'=>$params['id'],
'bhoid'=>$id??0,
'warehouse_id'=>$find['warehouse_id'], 'warehouse_id'=>$find['warehouse_id'],
'supplier_id'=>$find['supplier_id'], 'supplier_id'=>$find['supplier_id'],
'store_id'=>$find['store_id'], 'store_id'=>$find['store_id'],

View File

@ -128,19 +128,17 @@ class OrderAllocation
$sheet->setCellValue('N' . ($count + 8),$other_data->regional_manager??''); $sheet->setCellValue('N' . ($count + 8),$other_data->regional_manager??'');
$sheet->setCellValue('A' . ($count + 9),'接单时间'); $sheet->setCellValue('A' . ($count + 9),'接单时间');
$sheet->setCellValue('B' . ($count + 9),''); $sheet->setCellValue('B' . ($count + 9),$order['create_time']??'');
$sheet->setCellValue('C' . ($count + 9),'分单时间'); $sheet->setCellValue('C' . ($count + 9),'分单时间');
$sheet->setCellValue('D' . ($count + 9),''); $sheet->setCellValue('D' . ($count + 9),$order['split_time']??'');
$sheet->setCellValue('E' . ($count + 9),'入库时间'); $sheet->setCellValue('E' . ($count + 9),'入库时间');
$sheet->setCellValue('F' . ($count + 9),''); $sheet->setCellValue('F' . ($count + 9),$order['storage_time']??'');
$sheet->setCellValue('G' . ($count + 9),' 出库时间'); $sheet->setCellValue('G' . ($count + 9),' 分拣时间');
$sheet->setCellValue('H' . ($count + 9),''); $sheet->setCellValue('H' . ($count + 9),$order['delivery_time']??'');
$sheet->setCellValue('I' . ($count + 9),' 到门店时间'); $sheet->setCellValue('I' . ($count + 9),' 到门店时间');
$sheet->setCellValue('J' . ($count + 9),''); $sheet->setCellValue('J' . ($count + 9),'');
$sheet->setCellValue('K' . ($count + 9),' 下单到货时间'); $sheet->setCellValue('K' . ($count + 9),' 下单到货时间');
$sheet->setCellValue('L' . ($count + 9),''); $sheet->setCellValue('L' . ($count + 9),'');
$sheet->setCellValue('M' . ($count + 9),' 实际到货时间');
$sheet->setCellValue('N' . ($count + 9),'');
// 设置单元格的样式 // 设置单元格的样式
$styleArray = [ $styleArray = [
'font' => [ 'font' => [

View File

@ -546,3 +546,18 @@ function channelLog($data, $type, $title = '更新前')
$log = Log::channel($type); $log = Log::channel($type);
$log->info($title, $data); $log->info($title, $data);
} }
// if (!function_exists('getNewOrderSn')) {
// /**
// * @notes 获取订单号
// * @param $type
// * @return string
// */
// function getNewOrderSn($type)
// {
// list($msec, $sec) = explode(' ', microtime());
// $orderId = $type . date('YmdHis', time());
// return $orderId;
// }
// }