1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Export/CSV/PurchaseOrderItemExport.php

226 lines
7.3 KiB
PHP
Raw Normal View History

2023-07-13 07:23:57 +02:00
<?php
/**
* PurchaseOrder Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2023. PurchaseOrder Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Export\CSV;
2023-12-02 04:09:50 +01:00
use App\Export\Decorators\Decorator;
2023-09-12 03:01:14 +02:00
use App\Libraries\MultiDB;
2023-10-26 04:57:44 +02:00
use App\Models\Company;
2023-07-13 07:23:57 +02:00
use App\Models\PurchaseOrder;
2023-09-12 03:01:14 +02:00
use App\Transformers\PurchaseOrderTransformer;
2023-10-26 04:57:44 +02:00
use App\Utils\Ninja;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Facades\App;
use League\Csv\Writer;
2023-07-13 07:23:57 +02:00
class PurchaseOrderItemExport extends BaseExport
{
private $purchase_order_transformer;
public string $date_key = 'date';
public Writer $csv;
2023-12-02 04:09:50 +01:00
private Decorator $decorator;
2023-07-13 07:23:57 +02:00
private bool $force_keys = false;
2023-08-29 14:56:36 +02:00
private array $storage_array = [];
2023-07-13 07:23:57 +02:00
2023-09-12 03:01:14 +02:00
private array $storage_item_array = [];
2023-07-13 07:23:57 +02:00
public function __construct(Company $company, array $input)
{
$this->company = $company;
$this->input = $input;
$this->purchase_order_transformer = new PurchaseOrderTransformer();
2023-12-02 04:09:50 +01:00
$this->decorator = new Decorator();
2023-07-13 07:23:57 +02:00
}
2023-08-29 14:56:36 +02:00
private function init(): Builder
2023-07-13 07:23:57 +02:00
{
2023-08-29 14:56:36 +02:00
2023-07-13 07:23:57 +02:00
MultiDB::setDb($this->company->db);
App::forgetInstance('translator');
App::setLocale($this->company->locale());
$t = app('translator');
$t->replace(Ninja::transformTranslations($this->company->settings));
if (count($this->input['report_keys']) == 0) {
2023-08-29 14:56:36 +02:00
$this->input['report_keys'] = array_values($this->mergeItemsKeys('purchase_order_report_keys'));
2023-07-13 07:23:57 +02:00
}
2023-10-18 06:22:38 +02:00
$this->input['report_keys'] = array_merge($this->input['report_keys'], array_diff($this->forced_vendor_fields, $this->input['report_keys']));
2023-07-13 07:23:57 +02:00
$query = PurchaseOrder::query()
->withTrashed()
->with('vendor')->where('company_id', $this->company->id)
->where('is_deleted', 0);
$query = $this->addDateRange($query);
if($this->input['document_email_attachment'] ?? false) {
$this->queueDocuments($query);
}
2023-08-29 14:56:36 +02:00
return $query;
}
public function returnJson()
{
$query = $this->init();
$headerdisplay = $this->buildHeader();
2023-10-26 04:57:44 +02:00
$header = collect($this->input['report_keys'])->map(function ($key, $value) use ($headerdisplay) {
return ['identifier' => $key, 'display_value' => $headerdisplay[$value]];
})->toArray();
2023-08-29 14:56:36 +02:00
$query->cursor()
->each(function ($resource) {
2023-10-26 04:57:44 +02:00
$this->iterateItems($resource);
2024-01-14 05:05:00 +01:00
2023-10-26 04:57:44 +02:00
foreach($this->storage_array as $row) {
$this->storage_item_array[] = $this->processItemMetaData($row, $resource);
}
2023-09-12 03:01:14 +02:00
2023-10-26 04:57:44 +02:00
$this->storage_array = [];
2024-01-14 05:05:00 +01:00
2023-10-26 04:57:44 +02:00
});
2024-01-14 05:05:00 +01:00
2023-09-12 03:01:14 +02:00
return array_merge(['columns' => $header], $this->storage_item_array);
2023-08-29 14:56:36 +02:00
}
public function run()
{
//load the CSV document from a string
$this->csv = Writer::createFromString();
$query = $this->init();
//insert the header
$this->csv->insertOne($this->buildHeader());
2023-07-13 07:23:57 +02:00
$query->cursor()
->each(function ($purchase_order) {
$this->iterateItems($purchase_order);
});
2023-08-29 14:56:36 +02:00
$this->csv->insertAll($this->storage_array);
2024-01-14 05:05:00 +01:00
2023-07-13 07:23:57 +02:00
return $this->csv->toString();
2023-08-29 14:56:36 +02:00
2023-07-13 07:23:57 +02:00
}
private function iterateItems(PurchaseOrder $purchase_order)
{
2023-07-18 06:39:04 +02:00
$transformed_purchase_order = $this->buildRow($purchase_order);
2023-07-13 07:23:57 +02:00
$transformed_items = [];
2023-07-13 07:23:57 +02:00
foreach ($purchase_order->line_items as $item) {
$item_array = [];
2023-09-12 03:01:14 +02:00
foreach (array_values(array_intersect($this->input['report_keys'], $this->item_report_keys)) as $key) { //items iterator produces item array
2024-01-14 05:05:00 +01:00
2023-07-13 07:23:57 +02:00
if (str_contains($key, "item.")) {
2023-10-20 00:39:25 +02:00
$tmp_key = str_replace("item.", "", $key);
2024-01-14 05:05:00 +01:00
2023-10-20 00:39:25 +02:00
if($tmp_key == 'type_id') {
$tmp_key = 'type';
2023-07-13 07:23:57 +02:00
}
2023-10-20 00:39:25 +02:00
if($tmp_key == 'tax_id') {
$tmp_key = 'tax_category';
2023-07-13 07:23:57 +02:00
}
2023-10-20 00:39:25 +02:00
if (property_exists($item, $tmp_key)) {
$item_array[$key] = $item->{$tmp_key};
2023-07-13 07:23:57 +02:00
} else {
2023-08-29 14:56:36 +02:00
$item_array[$key] = '';
2023-07-13 07:23:57 +02:00
}
}
}
2023-07-18 06:39:04 +02:00
$transformed_items = array_merge($transformed_purchase_order, $item_array);
2023-07-13 07:23:57 +02:00
$entity = $this->decorateAdvancedFields($purchase_order, $transformed_items);
2023-10-20 00:22:33 +02:00
$entity = array_merge(array_flip(array_values($this->input['report_keys'])), $entity);
2023-07-13 07:23:57 +02:00
2023-08-29 14:56:36 +02:00
$this->storage_array[] = $entity;
2023-07-13 07:23:57 +02:00
}
}
2024-01-14 05:05:00 +01:00
private function buildRow(PurchaseOrder $purchase_order): array
2023-07-13 07:23:57 +02:00
{
2023-07-18 06:39:04 +02:00
$transformed_purchase_order = $this->purchase_order_transformer->transform($purchase_order);
2023-07-13 07:23:57 +02:00
$entity = [];
foreach (array_values($this->input['report_keys']) as $key) {
2023-08-29 14:56:36 +02:00
$parts = explode('.', $key);
2023-07-13 07:23:57 +02:00
2023-08-29 14:56:36 +02:00
if(is_array($parts) && $parts[0] == 'item') {
continue;
2023-07-13 07:23:57 +02:00
}
2023-08-29 14:56:36 +02:00
if (is_array($parts) && $parts[0] == 'purchase_order' && array_key_exists($parts[1], $transformed_purchase_order)) {
$entity[$key] = $transformed_purchase_order[$parts[1]];
} elseif (array_key_exists($key, $transformed_purchase_order)) {
$entity[$key] = $transformed_purchase_order[$key];
2023-07-13 07:23:57 +02:00
} else {
2023-12-02 04:09:50 +01:00
// nlog($key);
$entity[$key] = $this->decorator->transform($key, $purchase_order);
// $entity[$key] = '';
// $entity[$key] = $this->resolveKey($key, $purchase_order, $this->purchase_order_transformer);
2023-07-13 07:23:57 +02:00
}
}
return $this->decorateAdvancedFields($purchase_order, $entity);
}
2024-01-14 05:05:00 +01:00
private function decorateAdvancedFields(PurchaseOrder $purchase_order, array $entity): array
2023-07-13 07:23:57 +02:00
{
if (in_array('currency_id', $this->input['report_keys'])) {
$entity['currency'] = $purchase_order->vendor->currency() ? $purchase_order->vendor->currency()->code : $purchase_order->company->currency()->code;
}
if(array_key_exists('type', $entity)) {
$entity['type'] = $purchase_order->typeIdString($entity['type']);
}
if(array_key_exists('tax_category', $entity)) {
$entity['tax_category'] = $purchase_order->taxTypeString($entity['tax_category']);
}
if($this->force_keys) {
$entity['vendor'] = $purchase_order->vendor->present()->name();
$entity['vendor_id_number'] = $purchase_order->vendor->id_number;
$entity['vendor_number'] = $purchase_order->vendor->number;
$entity['status'] = $purchase_order->stringStatus($purchase_order->status_id);
}
2023-12-12 00:46:23 +01:00
if (in_array('purchase_order.user_id', $this->input['report_keys'])) {
$entity['purchase_order.user_id'] = $purchase_order->user ? $purchase_order->user->present()->name() : '';
}
if (in_array('purchase_order.assigned_user_id', $this->input['report_keys'])) {
$entity['purchase_order.assigned_user_id'] = $purchase_order->assigned_user ? $purchase_order->assigned_user->present()->name() : '';
}
2023-07-13 07:23:57 +02:00
return $entity;
}
2023-09-12 03:01:14 +02:00
2023-07-13 07:23:57 +02:00
}