invoiceninja/app/Services/PurchaseOrder/PurchaseOrderService.php

159 lines
4.1 KiB
PHP
Raw Permalink Normal View History

2022-05-29 04:13:09 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2022-05-29 04:13:09 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Services\PurchaseOrder;
2022-06-10 17:04:16 +10:00
use App\Jobs\Vendor\CreatePurchaseOrderPdf;
2022-05-29 04:13:09 +02:00
use App\Models\PurchaseOrder;
use App\Utils\Traits\MakesHash;
class PurchaseOrderService
{
use MakesHash;
public PurchaseOrder $purchase_order;
2022-06-06 22:27:17 +10:00
public function __construct(PurchaseOrder $purchase_order)
2022-05-29 04:13:09 +02:00
{
$this->purchase_order = $purchase_order;
}
2022-05-31 08:28:32 +10:00
public function createInvitations()
{
$this->purchase_order = (new CreateInvitations($this->purchase_order))->run();
return $this;
}
public function applyNumber()
{
2022-07-04 15:27:09 +10:00
$this->purchase_order = (new ApplyNumber($this->purchase_order->vendor, $this->purchase_order))->run();
2022-05-31 08:28:32 +10:00
return $this;
}
2022-05-29 04:13:09 +02:00
public function fillDefaults()
{
$settings = $this->purchase_order->company->settings;
2022-05-29 04:13:09 +02:00
2023-02-16 12:36:09 +11:00
if (! $this->purchase_order->design_id) {
$this->purchase_order->design_id = $this->decodePrimaryKey($settings->purchase_order_design_id);
2023-02-16 12:36:09 +11:00
}
2023-02-16 12:36:09 +11:00
if (!isset($this->purchase_order->footer) || empty($this->purchase_order->footer)) {
$this->purchase_order->footer = $settings->purchase_order_footer;
2023-02-16 12:36:09 +11:00
}
2022-05-29 04:13:09 +02:00
2023-02-16 12:36:09 +11:00
if (!isset($this->purchase_order->terms) || empty($this->purchase_order->terms)) {
$this->purchase_order->terms = $settings->purchase_order_terms;
2023-02-16 12:36:09 +11:00
}
2022-05-29 04:13:09 +02:00
2023-02-16 12:36:09 +11:00
if (!isset($this->purchase_order->public_notes) || empty($this->purchase_order->public_notes)) {
$this->purchase_order->public_notes = $this->purchase_order->vendor->public_notes;
2023-02-16 12:36:09 +11:00
}
2023-02-16 12:36:09 +11:00
if ($settings->counter_number_applied == 'when_saved') {
$this->applyNumber()->save();
}
2022-05-29 04:13:09 +02:00
return $this;
}
2022-06-10 17:04:16 +10:00
public function triggeredActions($request)
{
$this->purchase_order = (new TriggeredActions($this->purchase_order->load('invitations'), $request))->run();
return $this;
}
2022-06-06 22:27:17 +10:00
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()
{
2022-06-05 19:22:58 +10:00
$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;
}
2022-06-10 17:04:16 +10:00
public function touchPdf($force = false)
{
try {
2023-02-16 12:36:09 +11:00
if ($force) {
2022-06-10 17:04:16 +10:00
$this->purchase_order->invitations->each(function ($invitation) {
2022-09-07 14:15:27 +10:00
(new CreatePurchaseOrderPdf($invitation))->handle();
2022-06-10 17:04:16 +10:00
});
return $this;
}
$this->purchase_order->invitations->each(function ($invitation) {
CreatePurchaseOrderPdf::dispatch($invitation);
});
2023-02-16 12:36:09 +11:00
} catch(\Exception $e) {
2022-06-10 17:04:16 +10:00
nlog("failed creating purchase orders in Touch PDF");
}
return $this;
}
public function add_to_inventory()
{
2023-02-16 12:36:09 +11:00
if ($this->purchase_order->status_id >= PurchaseOrder::STATUS_RECEIVED) {
2022-07-07 11:20:43 +10:00
return $this->purchase_order;
2023-02-16 12:36:09 +11:00
}
2022-07-07 11:20:43 +10:00
$this->purchase_order = (new PurchaseOrderInventory($this->purchase_order))->run();
return $this;
}
2022-07-06 19:25:22 +10:00
public function expense()
{
$this->markSent();
2023-02-16 12:36:09 +11:00
if ($this->purchase_order->expense()->exists()) {
2022-07-07 22:09:39 +10:00
return $this;
2023-02-16 12:36:09 +11:00
}
2022-07-07 22:09:39 +10:00
2022-07-06 19:25:22 +10:00
$expense = (new PurchaseOrderExpense($this->purchase_order))->run();
return $expense;
}
2022-06-05 19:41:19 +10:00
/**
* Saves the purchase order.
* @return \App\Models\PurchaseOrder object
*/
public function save(): ?PurchaseOrder
{
$this->purchase_order->saveQuietly();
return $this->purchase_order;
}
2022-05-29 04:13:09 +02:00
}