소스 검색

[Backend] Correctif modification / suppression abonnement #157

refactoring
Guillaume 2 년 전
부모
커밋
f95e05ed6c
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  1. +0
    -6
      common/models/Subscription.php

+ 0
- 6
common/models/Subscription.php 파일 보기

@@ -444,11 +444,6 @@ class Subscription extends ActiveRecordCommon
->andWhere('distribution.date >= :date_begin')
->andWhere('order.id_subscription = :id_subscription');

if ($this->date_end) {
$orders->andWhere('distribution.date <= :date_end');
$params[':date_end'] = $this->date_end;
}

$orders->params($params);

$ordersArray = $orders->all();
@@ -470,7 +465,6 @@ class Subscription extends ActiveRecordCommon
);
}

ProductOrder::deleteAll(['id_order' => $order->id]);
$order->delete();
}
}

Loading…
취소
저장