mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 13:20:57 -04:00
Notifications for Purchase orders / Viewed / Accepted
This commit is contained in:
parent
c8ef8abce8
commit
9032bc6fa7
@ -75,13 +75,12 @@ class InvitationController extends Controller
|
|||||||
auth()->guard('vendor')->loginUsingId($vendor_contact->id, true);
|
auth()->guard('vendor')->loginUsingId($vendor_contact->id, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (auth()->guard('vendor')->user() && ! request()->has('silent') && ! $invitation->viewed_date) {
|
session()->put('is_silent', request()->has('silent'));
|
||||||
|
|
||||||
if(!session()->get('is_silent')){
|
if (auth()->guard('vendor')->user() && ! session()->get('is_silent') && ! $invitation->viewed_date) {
|
||||||
|
|
||||||
$invitation->markViewed();
|
$invitation->markViewed();
|
||||||
event(new InvitationWasViewed($invitation->purchase_order, $invitation, $invitation->company, Ninja::eventVars()));
|
event(new InvitationWasViewed($invitation->purchase_order, $invitation, $invitation->company, Ninja::eventVars()));
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
@ -0,0 +1,79 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Quote Ninja (https://quoteninja.com).
|
||||||
|
*
|
||||||
|
* @link https://github.com/quoteninja/quoteninja source repository
|
||||||
|
*
|
||||||
|
* @copyright Copyright (c) 2022. Quote Ninja LLC (https://quoteninja.com)
|
||||||
|
*
|
||||||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace App\Listeners\PurchaseOrder;
|
||||||
|
|
||||||
|
use App\Jobs\Mail\NinjaMailer;
|
||||||
|
use App\Jobs\Mail\NinjaMailerJob;
|
||||||
|
use App\Jobs\Mail\NinjaMailerObject;
|
||||||
|
use App\Libraries\MultiDB;
|
||||||
|
use App\Mail\Admin\EntityCreatedObject;
|
||||||
|
use App\Mail\Admin\PurchaseOrderAcceptedObject;
|
||||||
|
use App\Notifications\Admin\EntitySentNotification;
|
||||||
|
use App\Utils\Traits\Notifications\UserNotifies;
|
||||||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
|
||||||
|
class PurchaseOrderAcceptedNotification implements ShouldQueue
|
||||||
|
{
|
||||||
|
use UserNotifies;
|
||||||
|
|
||||||
|
public $delay = 5;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the event.
|
||||||
|
*
|
||||||
|
* @param object $event
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function handle($event)
|
||||||
|
{
|
||||||
|
MultiDB::setDb($event->company->db);
|
||||||
|
|
||||||
|
$first_notification_sent = true;
|
||||||
|
|
||||||
|
$purchase_order = $event->purchase_order;
|
||||||
|
|
||||||
|
$nmo = new NinjaMailerObject;
|
||||||
|
$nmo->mailable = new NinjaMailer( (new PurchaseOrderAcceptedObject($purchase_order, $event->company))->build() );
|
||||||
|
$nmo->company = $event->company;
|
||||||
|
$nmo->settings = $event->company->settings;
|
||||||
|
|
||||||
|
/* We loop through each user and determine whether they need to be notified */
|
||||||
|
foreach ($event->company->company_users as $company_user) {
|
||||||
|
|
||||||
|
/* The User */
|
||||||
|
$user = $company_user->user;
|
||||||
|
|
||||||
|
if(!$user)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
/* Returns an array of notification methods */
|
||||||
|
$methods = $this->findUserNotificationTypes($purchase_order->invitations()->first(), $company_user, 'purchase_order', ['all_notifications', 'purchase_order_accepted', 'purchase_order_accepted_all']);
|
||||||
|
|
||||||
|
/* If one of the methods is email then we fire the EntitySentMailer */
|
||||||
|
if (($key = array_search('mail', $methods)) !== false) {
|
||||||
|
unset($methods[$key]);
|
||||||
|
|
||||||
|
$nmo->to_user = $user;
|
||||||
|
|
||||||
|
NinjaMailerJob::dispatch($nmo);
|
||||||
|
|
||||||
|
/* This prevents more than one notification being sent */
|
||||||
|
$first_notification_sent = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
103
app/Mail/Admin/PurchaseOrderAcceptedObject.php
Normal file
103
app/Mail/Admin/PurchaseOrderAcceptedObject.php
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
<?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\Mail\Admin;
|
||||||
|
|
||||||
|
use App\Libraries\MultiDB;
|
||||||
|
use App\Models\Company;
|
||||||
|
use App\Models\PurchaseOrder;
|
||||||
|
use App\Utils\Ninja;
|
||||||
|
use App\Utils\Number;
|
||||||
|
use Illuminate\Support\Facades\App;
|
||||||
|
use stdClass;
|
||||||
|
|
||||||
|
class PurchaseOrderAcceptedObject
|
||||||
|
{
|
||||||
|
|
||||||
|
public $purchase_order;
|
||||||
|
|
||||||
|
public $company;
|
||||||
|
|
||||||
|
public $settings;
|
||||||
|
|
||||||
|
public function __construct(PurchaseOrder $purchase_order, Company $company)
|
||||||
|
{
|
||||||
|
$this->purchase_order = $purchase_order;
|
||||||
|
$this->company = $company;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function build()
|
||||||
|
{
|
||||||
|
MultiDB::setDb($this->company->db);
|
||||||
|
|
||||||
|
if(!$this->purchase_order)
|
||||||
|
return;
|
||||||
|
|
||||||
|
App::forgetInstance('translator');
|
||||||
|
/* Init a new copy of the translator*/
|
||||||
|
$t = app('translator');
|
||||||
|
/* Set the locale*/
|
||||||
|
App::setLocale($this->company->getLocale());
|
||||||
|
/* Set customized translations _NOW_ */
|
||||||
|
$t->replace(Ninja::transformTranslations($this->company->settings));
|
||||||
|
|
||||||
|
$mail_obj = new stdClass;
|
||||||
|
$mail_obj->amount = $this->getAmount();
|
||||||
|
$mail_obj->subject = $this->getSubject();
|
||||||
|
$mail_obj->data = $this->getData();
|
||||||
|
$mail_obj->markdown = 'email.admin.generic';
|
||||||
|
$mail_obj->tag = $this->company->company_key;
|
||||||
|
|
||||||
|
return $mail_obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getAmount()
|
||||||
|
{
|
||||||
|
return Number::formatMoney($this->purchase_order->amount, $this->company);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getSubject()
|
||||||
|
{
|
||||||
|
return
|
||||||
|
ctrans(
|
||||||
|
"texts.notification_purchase_order_accepted_subject",
|
||||||
|
[
|
||||||
|
'vendor' => $this->purchase_order->vendor->present()->name(),
|
||||||
|
'purchase_order' => $this->purchase_order->number,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getData()
|
||||||
|
{
|
||||||
|
$settings = $this->company->settings;
|
||||||
|
|
||||||
|
$data = [
|
||||||
|
'title' => $this->getSubject(),
|
||||||
|
'message' => ctrans(
|
||||||
|
"texts.notification_purchase_order_accepted",
|
||||||
|
[
|
||||||
|
'amount' => $this->getAmount(),
|
||||||
|
'vendor' => $this->purchase_order->vendor->present()->name(),
|
||||||
|
'purchase_order' => $this->purchase_order->number,
|
||||||
|
]
|
||||||
|
),
|
||||||
|
'url' => $this->purchase_order->invitations->first()->getAdminLink(),
|
||||||
|
'button' => ctrans("texts.view_purchase_order"),
|
||||||
|
'signature' => $settings->email_signature,
|
||||||
|
'logo' => $this->company->present()->logo(),
|
||||||
|
'settings' => $settings,
|
||||||
|
'whitelabel' => $this->company->account->isPaid() ? true : false,
|
||||||
|
];
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
}
|
@ -181,6 +181,7 @@ use App\Listeners\Payment\PaymentNotification;
|
|||||||
use App\Listeners\Payment\PaymentRestoredActivity;
|
use App\Listeners\Payment\PaymentRestoredActivity;
|
||||||
use App\Listeners\PurchaseOrder\CreatePurchaseOrderActivity;
|
use App\Listeners\PurchaseOrder\CreatePurchaseOrderActivity;
|
||||||
use App\Listeners\PurchaseOrder\PurchaseOrderAcceptedActivity;
|
use App\Listeners\PurchaseOrder\PurchaseOrderAcceptedActivity;
|
||||||
|
use App\Listeners\PurchaseOrder\PurchaseOrderAcceptedNotification;
|
||||||
use App\Listeners\PurchaseOrder\PurchaseOrderArchivedActivity;
|
use App\Listeners\PurchaseOrder\PurchaseOrderArchivedActivity;
|
||||||
use App\Listeners\PurchaseOrder\PurchaseOrderDeletedActivity;
|
use App\Listeners\PurchaseOrder\PurchaseOrderDeletedActivity;
|
||||||
use App\Listeners\PurchaseOrder\PurchaseOrderEmailActivity;
|
use App\Listeners\PurchaseOrder\PurchaseOrderEmailActivity;
|
||||||
@ -475,6 +476,7 @@ class EventServiceProvider extends ServiceProvider
|
|||||||
],
|
],
|
||||||
PurchaseOrderWasAccepted::class => [
|
PurchaseOrderWasAccepted::class => [
|
||||||
PurchaseOrderAcceptedActivity::class,
|
PurchaseOrderAcceptedActivity::class,
|
||||||
|
PurchaseOrderAcceptedNotification::class
|
||||||
],
|
],
|
||||||
CompanyDocumentsDeleted::class => [
|
CompanyDocumentsDeleted::class => [
|
||||||
DeleteCompanyDocuments::class,
|
DeleteCompanyDocuments::class,
|
||||||
|
@ -4631,6 +4631,8 @@ $LANG = array(
|
|||||||
'accepted' => 'Accepted',
|
'accepted' => 'Accepted',
|
||||||
'activity_137' => ':contact accepted purchase order :purchase_order',
|
'activity_137' => ':contact accepted purchase order :purchase_order',
|
||||||
'vendor_information' => 'Vendor Information',
|
'vendor_information' => 'Vendor Information',
|
||||||
|
'notification_purchase_order_accepted_subject' => 'Purchase Order :purchase_order was accepted by :vendor',
|
||||||
|
'notification_purchase_order_accepted' => 'The following vendor :vendor accepted Purchase Order :purchase_order for :amount.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $LANG;
|
return $LANG;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user