mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
37a826374b
* Implement client/group/company level counters clientCounter, groupCounter and counter * Implement functionalityfor customising the timing of invoice_number creation * Add Jobs * adjustments * clean line items at the request layer * Clean line items at the request layer * minor formatting for notification * Schema Fixes * schema changes, cast country_id to stirng * Fixes for tests * force line item ids to string * Map company gateway fees and limits * Schema changes * Remove id from invoice item stdClass * Remove settings object from invoice table
69 lines
1.3 KiB
PHP
69 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
use App\DataMapper\BaseSettings;
|
|
use App\DataMapper\InvoiceItem;
|
|
|
|
|
|
/**
|
|
* Class CleanLineItems.
|
|
*/
|
|
trait CleanLineItems
|
|
{
|
|
|
|
public function cleanItems($items) :array
|
|
{
|
|
|
|
if(!isset($items))
|
|
return [];
|
|
|
|
$cleaned_items = [];
|
|
|
|
foreach($items as $item)
|
|
$cleaned_items[] = $this->cleanLineItem($item);
|
|
|
|
return $cleaned_items;
|
|
|
|
}
|
|
|
|
/**
|
|
* Sets default values for the line_items
|
|
* @return $this
|
|
*/
|
|
private function cleanLineItem($item)
|
|
{
|
|
$invoice_item = (object)get_class_vars(InvoiceItem::class);
|
|
unset($invoice_item->casts);
|
|
|
|
foreach($invoice_item as $key => $value)
|
|
{
|
|
|
|
if(!array_key_exists($key, $item) || !isset($item[$key])){
|
|
$item[$key] = $value;
|
|
$item[$key] = BaseSettings::castAttribute(InvoiceItem::$casts[$key], $value);
|
|
}
|
|
|
|
}
|
|
|
|
if(array_key_exists("id", $item))
|
|
{
|
|
unset($item['id']);
|
|
}
|
|
|
|
|
|
return $item;
|
|
}
|
|
|
|
}
|
|
|