mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 00:57:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			142 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			142 lines
		
	
	
		
			3.6 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;
 | 
						|
 | 
						|
class PurchaseOrderService
 | 
						|
{
 | 
						|
    use MakesHash;
 | 
						|
 | 
						|
    public function __construct(public PurchaseOrder $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 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
 | 
						|
     */
 | 
						|
    public function save(): ?PurchaseOrder
 | 
						|
    {
 | 
						|
        $this->purchase_order->saveQuietly();
 | 
						|
 | 
						|
        return $this->purchase_order;
 | 
						|
    }
 | 
						|
}
 |