mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
c339c25d9c
* Fixes for tests * payment terms policies and repo * Bulk actions for payment terms * Fixes for documentation * working on payment failure mailer
34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
namespace App\Transformers;
|
|
|
|
use App\Models\PaymentTerm;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
class PaymentTermTransformer extends EntityTransformer
|
|
{
|
|
use MakesHash;
|
|
|
|
public function transform(PaymentTerm $payment_term)
|
|
{
|
|
return [
|
|
'id' => (string) $this->encodePrimaryKey($payment_term->id),
|
|
'num_days' => (int) $payment_term->num_days,
|
|
'name' => (string) ctrans('texts.payment_terms_net') . ' ' . $payment_term->getNumDays(),
|
|
'is_deleted' => (bool) $payment_term->is_deleted,
|
|
'created_at' => (int) $payment_term->created_at,
|
|
'updated_at' => (int) $payment_term->updated_at,
|
|
'archived_at' => (int) $payment_term->deleted_at,
|
|
];
|
|
}
|
|
|
|
}
|