commit
02307dcf3a
@ -143,6 +143,10 @@ class StoreActivityDao extends BaseDao
|
||||
{
|
||||
$orderProductIds = array_column($order->orderProduct->toArray(), 'product_id');
|
||||
$productIds = CloudProduct::whereIn('product_id', $orderProductIds)->where('activity_id', $activityId)->column('product_id');
|
||||
$find = StoreActivityOrderProduct::where('user_id', $order['uid'])->where('status', 1)->find();
|
||||
if ($find && $activityId == 2) {
|
||||
throw new ValidateException('活动商品限购1个');
|
||||
}
|
||||
foreach ($productIds as $productId) {
|
||||
$model = new StoreActivityOrderProduct();
|
||||
$model->user_id = $order['uid'];
|
||||
|
@ -1728,9 +1728,9 @@ class ProductRepository extends BaseRepository
|
||||
if ($this->dao->updates($id, [$field => $status]) === false) {
|
||||
throw new \Exception('商品操作出错', 500);
|
||||
}
|
||||
event('product.sell', ['product_id' => $productIds]);
|
||||
event('product.sell', ['product_id' => $productIds,'status'=>$status]);
|
||||
Db::commit();
|
||||
Queue::push(ChangeSpuStatusJob::class, ['id' => $id, 'product_type' => $product_type]);
|
||||
Queue::push(ChangeSpuStatusJob::class, ['id' => $productIds, 'product_type' => $product_type]);
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
throw new \Exception('商品操作出错', $e->getCode());
|
||||
|
@ -20,10 +20,10 @@ class Open extends BaseController
|
||||
{
|
||||
$timestamp = $this->request->post('timestamp');
|
||||
$data = $this->request->post('data');
|
||||
Log::error('供销平台佣金回调:' . $data);
|
||||
$aes = new \AES();
|
||||
$iv = !empty($timestamp) ? $aes->buildIv($timestamp) : '';
|
||||
$decrypted = $aes->decrypt($data, $iv);
|
||||
Log::error('供销平台佣金回调:' . var_export($decrypted, true));
|
||||
if (!empty($decrypted)) {
|
||||
$storeConsumptionUserDao = new CommissionDao();
|
||||
// "惠农供销,谱写数字新篇章"活动首单分润
|
||||
|
Loading…
x
Reference in New Issue
Block a user