修改:品牌额度变更记录 变更类型值错误

This commit is contained in:
wuhui_zzw 2024-06-07 16:15:48 +08:00
parent 764173a22d
commit 7eb5e0d19b
1 changed files with 2 additions and 2 deletions

View File

@ -1566,7 +1566,7 @@ class StoreOrderCreateRepository extends StoreOrderRepository{
'change_after' => (float)sprintf("%.2f", $quotaHoldInfo->title_brand_limit - $quotaHoldInfo->title_brand_used),
'source' => 1,
'order_id' => $_order->order_id,
'quota_type' => 3
'quota_type' => 2
];
}
// 判断:是否存在其他品牌额度
@ -1584,7 +1584,7 @@ class StoreOrderCreateRepository extends StoreOrderRepository{
'change_after' => (float)sprintf("%.2f", $quotaHoldInfo->other_brand_limit - $quotaHoldInfo->other_brand_used),
'source' => 1,
'order_id' => $_order->order_id,
'quota_type' => 4
'quota_type' => 3
];
}
}