'date:Y-m-d', // 'due_date' => 'date:Y-m-d', // 'partial_due_date' => 'date:Y-m-d', 'line_items' => 'object', 'backup' => 'object', 'updated_at' => 'timestamp', 'created_at' => 'timestamp', 'deleted_at' => 'timestamp', ]; protected $dates = []; const STATUS_DRAFT = 1; const STATUS_SENT = 2; const STATUS_APPROVED = 3; const STATUS_CONVERTED = 4; const STATUS_EXPIRED = -1; public function getEntityType() { return self::class; } public function getDateAttribute($value) { return $this->dateMutator($value); } public function getDueDateAttribute($value) { return $this->dateMutator($value); } public function getPartialDueDateAttribute($value) { return $this->dateMutator($value); } public function company() { return $this->belongsTo(Company::class); } public function history() { return $this->hasManyThrough(Backup::class, Activity::class); } public function user() { return $this->belongsTo(User::class)->withTrashed(); } public function client() { return $this->belongsTo(Client::class)->withTrashed(); } // public function contacts() // { // return $this->hasManyThrough(ClientContact::class, Client::class); // } public function assigned_user() { return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed(); } public function invitations() { return $this->hasMany(QuoteInvitation::class); } public function documents() { return $this->morphMany(Document::class, 'documentable'); } /** * Access the quote calculator object. * * @return stdClass The quote calculator object getters */ public function calc() { $quote_calc = null; if ($this->uses_inclusive_taxes) { $quote_calc = new InvoiceSumInclusive($this); } else { $quote_calc = new InvoiceSum($this); } return $quote_calc->build(); } /** * Updates Invites to SENT. */ public function markInvitationsSent() { $this->invitations->each(function ($invitation) { if (! isset($invitation->sent_date)) { $invitation->sent_date = Carbon::now(); $invitation->save(); } }); } public function service(): QuoteService { return new QuoteService($this); } public function pdf_file_path($invitation = null) { if (! $invitation) { $invitation = $this->invitations->where('client_contact_id', $this->client->primary_contact()->first()->id)->first(); } $storage_path = Storage::url($this->client->quote_filepath().$this->number.'.pdf'); if (Storage::exists($this->client->quote_filepath().$this->number.'.pdf')) { return $storage_path; } event(new QuoteWasUpdated($this, $this->company, Ninja::eventVars())); CreateEntityPdf::dispatchNow($invitation); return $storage_path; } /** * @param int $status * @return string */ public static function badgeForStatus(int $status) { switch ($status) { case self::STATUS_DRAFT: return '
'.ctrans('texts.draft').'
'; break; case self::STATUS_SENT: return '
'.ctrans('texts.pending').'
'; break; case self::STATUS_APPROVED: return '
'.ctrans('texts.approved').'
'; break; case self::STATUS_EXPIRED: return '
'.ctrans('texts.expired').'
'; break; case self::STATUS_CONVERTED: return '
'.ctrans('texts.converted').'
'; break; default: // code... break; } } /** * Check if the quote has been approved. * * @return bool */ public function isApproved() { if ($this->status_id === $this::STATUS_APPROVED) { return true; } return false; } public function getValidUntilAttribute() { return $this->due_date; } public function getBalanceDueAttribute() { return $this->balance; } public function getTotalAttribute() { return $this->calc()->getTotal(); } }