mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
168 lines
4.3 KiB
PHP
168 lines
4.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Services\PurchaseOrder;
|
|
|
|
use App\Models\PurchaseOrder;
|
|
use App\Utils\Traits\MakesHash;
|
|
use App\Services\PurchaseOrder\SendEmail;
|
|
use App\Jobs\Vendor\CreatePurchaseOrderPdf;
|
|
|
|
class PurchaseOrderService
|
|
{
|
|
use MakesHash;
|
|
|
|
public PurchaseOrder $purchase_order;
|
|
|
|
public function __construct(PurchaseOrder $purchase_order)
|
|
{
|
|
$this->purchase_order = $purchase_order;
|
|
}
|
|
|
|
public function createInvitations()
|
|
{
|
|
$this->purchase_order = (new CreateInvitations($this->purchase_order))->run();
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function applyNumber()
|
|
{
|
|
$this->purchase_order = (new ApplyNumber($this->purchase_order->vendor, $this->purchase_order))->run();
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function fillDefaults()
|
|
{
|
|
$settings = $this->purchase_order->company->settings;
|
|
|
|
if (! $this->purchase_order->design_id) {
|
|
$this->purchase_order->design_id = $this->decodePrimaryKey($settings->purchase_order_design_id);
|
|
}
|
|
|
|
if (!isset($this->purchase_order->footer) || empty($this->purchase_order->footer)) {
|
|
$this->purchase_order->footer = $settings->purchase_order_footer;
|
|
}
|
|
|
|
if (!isset($this->purchase_order->terms) || empty($this->purchase_order->terms)) {
|
|
$this->purchase_order->terms = $settings->purchase_order_terms;
|
|
}
|
|
|
|
if (!isset($this->purchase_order->public_notes) || empty($this->purchase_order->public_notes)) {
|
|
$this->purchase_order->public_notes = $this->purchase_order->vendor->public_notes;
|
|
}
|
|
|
|
if ($settings->counter_number_applied == 'when_saved') {
|
|
$this->applyNumber()->save();
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function triggeredActions($request)
|
|
{
|
|
$this->purchase_order = (new TriggeredActions($this->purchase_order->load('invitations'), $request))->run();
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPurchaseOrderPdf($contact = null)
|
|
{
|
|
return (new GetPurchaseOrderPdf($this->purchase_order, $contact))->run();
|
|
}
|
|
|
|
public function setStatus($status)
|
|
{
|
|
$this->purchase_order->status_id = $status;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function markSent()
|
|
{
|
|
$this->purchase_order = (new MarkSent($this->purchase_order->vendor, $this->purchase_order))->run();
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function adjustBalance($adjustment)
|
|
{
|
|
$this->purchase_order->balance += $adjustment;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function touchPdf($force = false)
|
|
{
|
|
try {
|
|
if ($force) {
|
|
$this->purchase_order->invitations->each(function ($invitation) {
|
|
(new CreatePurchaseOrderPdf($invitation))->handle();
|
|
});
|
|
|
|
return $this;
|
|
}
|
|
|
|
$this->purchase_order->invitations->each(function ($invitation) {
|
|
CreatePurchaseOrderPdf::dispatch($invitation);
|
|
});
|
|
} catch(\Exception $e) {
|
|
nlog("failed creating purchase orders in Touch PDF");
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function add_to_inventory()
|
|
{
|
|
if ($this->purchase_order->status_id >= PurchaseOrder::STATUS_RECEIVED) {
|
|
return $this->purchase_order;
|
|
}
|
|
|
|
$this->purchase_order = (new PurchaseOrderInventory($this->purchase_order))->run();
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function expense()
|
|
{
|
|
$this->markSent();
|
|
|
|
if ($this->purchase_order->expense()->exists()) {
|
|
return $this;
|
|
}
|
|
|
|
$expense = (new PurchaseOrderExpense($this->purchase_order))->run();
|
|
|
|
return $expense;
|
|
}
|
|
|
|
public function sendEmail($contact = null)
|
|
{
|
|
$send_email = new SendEmail($this->purchase_order, null, $contact);
|
|
|
|
return $send_email->run();
|
|
}
|
|
|
|
|
|
/**
|
|
* Saves the purchase order.
|
|
* @return \App\Models\PurchaseOrder object
|
|
*/
|
|
public function save(): ?PurchaseOrder
|
|
{
|
|
$this->purchase_order->saveQuietly();
|
|
|
|
return $this->purchase_order;
|
|
}
|
|
}
|