Explorar el Código

[backend] Facturation : afficher uniquement les bons de livraison pas encore facturés

dev
Guillaume hace 3 años
padre
commit
6976b03959
Se han modificado 2 ficheros con 15 adiciones y 0 borrados
  1. +2
    -0
      backend/controllers/DocumentController.php
  2. +13
    -0
      common/models/DeliveryNote.php

+ 2
- 0
backend/controllers/DocumentController.php Ver fichero

@@ -248,12 +248,14 @@ class DocumentController extends BackendController
$json['delivery_notes'] = [] ;

foreach($deliveryNotesArray as $deliveryNote) {
if(!$deliveryNote->isInvoiced()) {
$json['delivery_notes'][] = array_merge(
$deliveryNote->getAttributes(),
[
'total' => $deliveryNote->getAmountWithTax(Order::INVOICE_AMOUNT_TOTAL)
]
) ;
}
}
}
}

+ 13
- 0
common/models/DeliveryNote.php Ver fichero

@@ -90,4 +90,17 @@ class DeliveryNote extends Document
];
}

public function isInvoiced()
{
if($this->orders && count($this->orders) > 0) {
foreach($this->orders as $order) {
if($order->id_invoice) {
return true;
}
}
}

return false;
}

}

Cargando…
Cancelar
Guardar