Explorar el Código

[backend] Suppression documents : amélioration script suppression

refactoring
Guillaume Bourgeois hace 4 años
padre
commit
7a17960c9e
Se han modificado 1 ficheros con 23 adiciones y 5 borrados
  1. +23
    -5
      backend/controllers/DocumentController.php

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

@@ -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']);

Cargando…
Cancelar
Guardar