$deliveryNote = new DeliveryNote(); | $deliveryNote = new DeliveryNote(); | ||||
$deliveryNote->status = Document::STATUS_DRAFT; | $deliveryNote->status = Document::STATUS_DRAFT; | ||||
$this->initDocumentDate($deliveryNote); | |||||
$this->initDocumentProducer($deliveryNote); | $this->initDocumentProducer($deliveryNote); | ||||
$this->initTaxCalculationMethod($deliveryNote); | $this->initTaxCalculationMethod($deliveryNote); | ||||
} | } | ||||
} | } | ||||
public function initDocumentDate(Document $document) | |||||
{ | |||||
$document->date = date('Y-m-d H:i:s'); | |||||
} | |||||
public function updateDocumentIsSend(Document $document, bool $isSent) | public function updateDocumentIsSend(Document $document, bool $isSent) | ||||
{ | { | ||||
$document->is_sent = $isSent; | $document->is_sent = $isSent; |