Ver código fonte

[backend] Suppression documents : amélioration script suppression

refactoring
Guillaume Bourgeois 4 anos atrás
pai
commit
7a17960c9e
1 arquivos alterados com 23 adições e 5 exclusões
  1. +23
    -5
      backend/controllers/DocumentController.php

+ 23
- 5
backend/controllers/DocumentController.php Ver arquivo

@@ -154,11 +154,29 @@ class DocumentController extends BackendController

$model->delete();

Order::updateAll([
'order.id_delivery_note' => null
], [
'order.id_delivery_note' => $id
]);
if($this->getClass() == 'DeliveryNote') {
Order::updateAll([
'order.id_delivery_note' => null
], [
'order.id_delivery_note' => $id
]);
}

if($this->getClass() == 'Quotation') {
Order::updateAll([
'order.id_quotation' => null
], [
'order.id_quotation' => $id
]);
}

if($this->getClass() == 'Invoice') {
Order::updateAll([
'order.id_invoice' => null
], [
'order.id_invoice' => $id
]);
}

Yii::$app->getSession()->setFlash('success', $this->getFlashMessage('delete', $model));
$this->redirect([$this->getControllerUrl().'/index']);

Carregando…
Cancelar
Salvar