1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/Jobs/Inventory/AdjustProductInventory.php

154 lines
4.3 KiB
PHP
Raw Normal View History

2022-05-31 13:17:18 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Jobs\Inventory;
2022-06-08 06:25:44 +02:00
use App\Jobs\Mail\NinjaMailer;
use App\Jobs\Mail\NinjaMailerJob;
use App\Jobs\Mail\NinjaMailerObject;
2022-05-31 13:17:18 +02:00
use App\Libraries\MultiDB;
2022-06-08 06:25:44 +02:00
use App\Mail\Admin\InventoryNotificationObject;
2022-05-31 13:17:18 +02:00
use App\Models\Company;
use App\Models\Invoice;
use App\Models\Product;
use App\Utils\Traits\NumberFormatter;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
2022-06-08 06:25:44 +02:00
use Illuminate\Queue\Middleware\WithoutOverlapping;
2022-05-31 13:17:18 +02:00
use Illuminate\Queue\SerializesModels;
class AdjustProductInventory implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public Company $company;
public Invoice $invoice;
public array $old_invoice;
2022-10-05 02:21:55 +02:00
public function __construct(Company $company, Invoice $invoice, $old_invoice = [])
2022-05-31 13:17:18 +02:00
{
$this->company = $company;
$this->invoice = $invoice;
$this->old_invoice = $old_invoice;
}
/**
* Execute the job.
*
*
* @return false
*/
public function handle()
{
MultiDB::setDb($this->company->db);
if (count($this->old_invoice) > 0) {
2022-06-08 12:40:26 +02:00
$this->existingInventoryAdjustment();
}
2022-05-31 13:17:18 +02:00
return $this->newInventoryAdjustment();
}
public function handleDeletedInvoice()
{
MultiDB::setDb($this->company->db);
foreach ($this->invoice->line_items as $item) {
$p = Product::where('product_key', $item->product_key)->where('company_id', $this->company->id)->first();
if (! $p) {
continue;
}
$p->in_stock_quantity += $item->quantity;
$p->saveQuietly();
}
}
public function handleRestoredInvoice()
{
MultiDB::setDb($this->company->db);
foreach ($this->invoice->line_items as $item) {
$p = Product::where('product_key', $item->product_key)->where('company_id', $this->company->id)->first();
if (! $p) {
continue;
}
$p->in_stock_quantity -= $item->quantity;
$p->saveQuietly();
}
}
2022-06-08 06:25:44 +02:00
public function middleware()
{
return [new WithoutOverlapping($this->company->company_key)];
}
2022-05-31 13:17:18 +02:00
private function newInventoryAdjustment()
{
$line_items = $this->invoice->line_items;
foreach ($line_items as $item) {
2022-05-31 13:17:18 +02:00
$p = Product::where('product_key', $item->product_key)->where('company_id', $this->company->id)->where('in_stock_quantity', '>', 0)->first();
2022-06-08 06:25:44 +02:00
if (! $p) {
2022-06-08 06:25:44 +02:00
continue;
}
2022-06-08 06:25:44 +02:00
2022-05-31 13:17:18 +02:00
$p->in_stock_quantity -= $item->quantity;
2022-06-08 12:40:26 +02:00
$p->saveQuietly();
2022-09-02 13:26:59 +02:00
if ($this->company->stock_notification && $p->stock_notification && $p->stock_notification_threshold && $p->in_stock_quantity <= $p->stock_notification_threshold) {
2022-05-31 13:17:18 +02:00
$this->notifyStockLevels($p, 'product');
2022-09-02 13:26:59 +02:00
} elseif ($this->company->stock_notification && $p->stock_notification && $this->company->inventory_notification_threshold && $p->in_stock_quantity <= $this->company->inventory_notification_threshold) {
2022-05-31 13:17:18 +02:00
$this->notifyStocklevels($p, 'company');
}
2022-05-31 13:17:18 +02:00
}
}
private function existingInventoryAdjustment()
{
foreach ($this->old_invoice as $item) {
2022-06-08 12:40:26 +02:00
$p = Product::where('product_key', $item->product_key)->where('company_id', $this->company->id)->first();
2022-06-08 06:25:44 +02:00
if (! $p) {
2022-06-08 06:25:44 +02:00
continue;
}
2022-06-08 06:25:44 +02:00
2022-06-08 12:40:26 +02:00
$p->in_stock_quantity += $item->quantity;
$p->saveQuietly();
2022-06-08 06:25:44 +02:00
}
2022-05-31 13:17:18 +02:00
}
private function notifyStocklevels(Product $product, string $notification_level)
{
2022-06-08 06:25:44 +02:00
$nmo = new NinjaMailerObject;
$nmo->mailable = new NinjaMailer((new InventoryNotificationObject($product, $notification_level))->build());
2022-06-08 06:25:44 +02:00
$nmo->company = $this->company;
$nmo->settings = $this->company->settings;
$nmo->to_user = $this->company->owner();
NinjaMailerJob::dispatch($nmo);
2022-05-31 13:17:18 +02:00
}
}