2022-05-31 13:17:18 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-05-31 13:17:18 +02:00
|
|
|
*
|
|
|
|
* @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;
|
2023-01-19 07:20:31 +01:00
|
|
|
use App\Utils\Traits\Notifications\UserNotifies;
|
2022-05-31 13:17:18 +02:00
|
|
|
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
|
|
|
|
{
|
2023-01-19 07:20:31 +01:00
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, UserNotifies;
|
2022-05-31 13:17:18 +02:00
|
|
|
|
2023-03-15 00:46:36 +01:00
|
|
|
public function __construct(public Company $company, public Invoice $invoice, public $old_invoice = [])
|
2022-05-31 13:17:18 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return false
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
MultiDB::setDb($this->company->db);
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (count($this->old_invoice) > 0) {
|
2022-06-08 12:40:26 +02:00
|
|
|
$this->existingInventoryAdjustment();
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-05-31 13:17:18 +02:00
|
|
|
|
|
|
|
return $this->newInventoryAdjustment();
|
|
|
|
}
|
|
|
|
|
2022-10-29 03:14:25 +02:00
|
|
|
public function handleDeletedInvoice()
|
|
|
|
{
|
2023-02-16 02:36:09 +01:00
|
|
|
MultiDB::setDb($this->company->db);
|
2022-10-29 03:14:25 +02:00
|
|
|
|
2023-03-15 00:46:36 +01:00
|
|
|
// 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();
|
|
|
|
// }
|
|
|
|
|
2023-03-18 08:24:56 +01:00
|
|
|
collect($this->invoice->line_items)->filter(function ($item) {
|
2023-03-15 00:46:36 +01:00
|
|
|
return $item->type_id == '1';
|
2023-03-18 08:24:56 +01:00
|
|
|
})->each(function ($i) {
|
2023-03-15 00:46:36 +01:00
|
|
|
$p = Product::where('product_key', $i->product_key)->where('company_id', $this->company->id)->first();
|
|
|
|
|
|
|
|
if ($p) {
|
|
|
|
$p->in_stock_quantity += $i->quantity;
|
|
|
|
|
|
|
|
$p->saveQuietly();
|
2022-10-29 03:14:25 +02:00
|
|
|
}
|
2023-03-15 00:46:36 +01:00
|
|
|
});
|
2022-10-29 03:14:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function handleRestoredInvoice()
|
|
|
|
{
|
2023-02-16 02:36:09 +01:00
|
|
|
MultiDB::setDb($this->company->db);
|
2022-10-29 03:14:25 +02:00
|
|
|
|
2023-03-15 00:46:36 +01:00
|
|
|
collect($this->invoice->line_items)->filter(function ($item) {
|
|
|
|
return $item->type_id == '1';
|
|
|
|
})->each(function ($i) {
|
|
|
|
$p = Product::where('product_key', $i->product_key)->where('company_id', $this->company->id)->first();
|
2022-10-29 03:14:25 +02:00
|
|
|
|
2023-03-15 00:46:36 +01:00
|
|
|
if ($p) {
|
|
|
|
$p->in_stock_quantity -= $i->quantity;
|
|
|
|
|
|
|
|
$p->saveQuietly();
|
2022-10-29 03:14:25 +02:00
|
|
|
}
|
2023-03-15 00:46:36 +01:00
|
|
|
});
|
2022-10-29 03:14:25 +02:00
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
{
|
2023-03-15 00:46:36 +01:00
|
|
|
|
|
|
|
collect($this->invoice->line_items)->filter(function ($item) {
|
|
|
|
return $item->type_id == '1';
|
|
|
|
})->each(function ($i) {
|
|
|
|
$p = Product::where('product_key', $i->product_key)->where('company_id', $this->company->id)->first();
|
|
|
|
|
|
|
|
if ($p) {
|
|
|
|
$p->in_stock_quantity -= $i->quantity;
|
2022-06-08 06:25:44 +02:00
|
|
|
|
2023-03-15 00:46:36 +01:00
|
|
|
$p->saveQuietly();
|
2023-04-03 15:40:57 +02:00
|
|
|
nlog("threshold ".$p->stock_notification_threshold);
|
|
|
|
nlog("stock q".$p->in_stock_quantity);
|
|
|
|
nlog("p stock not".$p->stock_notification_threshold);
|
2023-03-15 00:46:36 +01:00
|
|
|
|
|
|
|
if ($this->company->stock_notification && $p->stock_notification && $p->stock_notification_threshold && $p->in_stock_quantity <= $p->stock_notification_threshold) {
|
|
|
|
$this->notifyStockLevels($p, 'product');
|
|
|
|
} elseif ($this->company->stock_notification && $p->stock_notification && $this->company->inventory_notification_threshold && $p->in_stock_quantity <= $this->company->inventory_notification_threshold) {
|
|
|
|
$this->notifyStocklevels($p, 'company');
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2023-03-15 00:46:36 +01:00
|
|
|
});
|
2022-05-31 13:17:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function existingInventoryAdjustment()
|
|
|
|
{
|
2023-03-20 05:51:49 +01:00
|
|
|
|
2023-04-03 15:40:57 +02:00
|
|
|
collect($this->old_invoice)->filter(function ($item) {
|
2023-03-15 00:46:36 +01:00
|
|
|
return $item->type_id == '1';
|
|
|
|
})->each(function ($i) {
|
|
|
|
$p = Product::where('product_key', $i->product_key)->where('company_id', $this->company->id)->first();
|
2022-06-08 06:25:44 +02:00
|
|
|
|
2023-03-15 00:46:36 +01:00
|
|
|
if ($p) {
|
|
|
|
$p->in_stock_quantity += $i->quantity;
|
|
|
|
|
|
|
|
$p->saveQuietly();
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2023-03-15 00:46:36 +01: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;
|
2022-06-21 11:57:17 +02:00
|
|
|
$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;
|
2023-01-19 07:20:31 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
$this->company->company_users->each(function ($cu) use ($product, $nmo) {
|
2023-03-20 05:51:49 +01:00
|
|
|
if ($this->checkNotificationExists($cu, $product, ['inventory_all', 'inventory_user', 'inventory_threshold_all', 'inventory_threshold_user'])) {
|
2023-01-24 22:26:32 +01:00
|
|
|
$nmo->to_user = $cu->user;
|
|
|
|
NinjaMailerJob::dispatch($nmo);
|
|
|
|
}
|
|
|
|
});
|
2022-05-31 13:17:18 +02:00
|
|
|
}
|
|
|
|
}
|