This commit is contained in:
杨建炊 2024-12-12 16:03:13 +08:00
parent 0b72923c4e
commit 12bfcb0241
2 changed files with 5 additions and 4 deletions

View File

@ -49,11 +49,12 @@ class CheckSkuQualityPeriod extends Command
//查询未处理过的快过期的异常订单
$purchaseRecords = DB::table('purchase_records as a')
->select("a.created_at", "a.num", "b.title", "b.stock", "a.id", "b.id as sku_id", "b.external_sku_id")
->leftJoin('goods_skus as b', 'a.sku_id', '=', 'b.id')
->select("a.created_at","a.date", "a.num", "b.title", "b.stock", "a.id", "b.id as sku_id", "b.external_sku_id")
->leftJoin('goods_skus as b', 'a.external_sku_id', '=', 'b.external_sku_id')
->where("a.check_status", "=", 0)
->whereBetween('a.expire_time', [$startTime, $endTime])->get();
Log::info('purchaseRecords', (array)$purchaseRecords);
Log::info('采购临期记录', [$purchaseRecords]);
if ($purchaseRecords->isNotEmpty()) {
$messageService = new MessageService();
$updateIds = [];
@ -67,7 +68,6 @@ class CheckSkuQualityPeriod extends Command
}
$updateIds[] = $v->id;
//更新下状态
}
PurchaseRecords::query()->whereIn('id', $updateIds)->update([
"check_status" => 1

1
public/nginx.htaccess Normal file
View File

@ -0,0 +1 @@
try_files $uri $uri/ /index.php?$query_string;