added import and export recurring bills

This commit is contained in:
Cihan Şentürk
2023-08-14 17:21:40 +03:00
parent 09baf1991f
commit 0bbbe25d7f
31 changed files with 685 additions and 29 deletions

View File

@@ -1,13 +1,13 @@
<?php
namespace App\Exports\Purchases;
namespace App\Exports\Purchases\Bills;
use App\Exports\Purchases\Sheets\Bills as Base;
use App\Exports\Purchases\Sheets\BillItems;
use App\Exports\Purchases\Sheets\BillItemTaxes;
use App\Exports\Purchases\Sheets\BillHistories;
use App\Exports\Purchases\Sheets\BillTotals;
use App\Exports\Purchases\Sheets\BillTransactions;
use App\Exports\Purchases\Bills\Sheets\Bills as Base;
use App\Exports\Purchases\Bills\Sheets\BillItems;
use App\Exports\Purchases\Bills\Sheets\BillItemTaxes;
use App\Exports\Purchases\Bills\Sheets\BillHistories;
use App\Exports\Purchases\Bills\Sheets\BillTotals;
use App\Exports\Purchases\Bills\Sheets\BillTransactions;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Exports\Purchases\Sheets;
namespace App\Exports\Purchases\Bills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentHistory as Model;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Exports\Purchases\Sheets;
namespace App\Exports\Purchases\Bills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentItemTax as Model;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Exports\Purchases\Sheets;
namespace App\Exports\Purchases\Bills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentItem as Model;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Exports\Purchases\Sheets;
namespace App\Exports\Purchases\Bills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentTotal as Model;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Exports\Purchases\Sheets;
namespace App\Exports\Purchases\Bills\Sheets;
use App\Abstracts\Export;
use App\Models\Banking\Transaction as Model;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Exports\Purchases\Sheets;
namespace App\Exports\Purchases\Bills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\Document as Model;

View File

@@ -0,0 +1,36 @@
<?php
namespace App\Exports\Purchases\RecurringBills;
use App\Exports\Purchases\RecurringBills\Sheets\Recurring;
use App\Exports\Purchases\RecurringBills\Sheets\RecurringBills as Base;
use App\Exports\Purchases\RecurringBills\Sheets\RecurringBillItems;
use App\Exports\Purchases\RecurringBills\Sheets\RecurringBillItemTaxes;
use App\Exports\Purchases\RecurringBills\Sheets\RecurringBillHistories;
use App\Exports\Purchases\RecurringBills\Sheets\RecurringBillTotals;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
class RecurringBills implements WithMultipleSheets
{
use Exportable;
public $ids;
public function __construct($ids = null)
{
$this->ids = $ids;
}
public function sheets(): array
{
return [
new Recurring($this->ids),
new Base($this->ids),
new RecurringBillItems($this->ids),
new RecurringBillItemTaxes($this->ids),
new RecurringBillHistories($this->ids),
new RecurringBillTotals($this->ids),
];
}
}

View File

@@ -0,0 +1,36 @@
<?php
namespace App\Exports\Purchases\RecurringBills\Sheets;
use App\Abstracts\Export;
use App\Models\Common\Recurring as Model;
class Recurring extends Export
{
public function collection()
{
return Model::bill()->cursor();
}
public function map($model): array
{
$model->bill_number = $model->recurable->document_number;
return parent::map($model);
}
public function fields(): array
{
return [
'recurable_type',
'bill_number',
'frequency',
'interval',
'started_at',
'status',
'limit_by',
'limit_count',
'auto_send',
];
}
}

View File

@@ -0,0 +1,37 @@
<?php
namespace App\Exports\Purchases\RecurringBills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentHistory as Model;
class RecurringBillHistories extends Export
{
public function collection()
{
return Model::with('document')->billRecurring()->collectForExport($this->ids, null, 'document_id');
}
public function map($model): array
{
$document = $model->document;
if (empty($document)) {
return [];
}
$model->bill_number = $document->document_number;
return parent::map($model);
}
public function fields(): array
{
return [
'bill_number',
'status',
'notify',
'description',
];
}
}

View File

@@ -0,0 +1,39 @@
<?php
namespace App\Exports\Purchases\RecurringBills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentItemTax as Model;
class RecurringBillItemTaxes extends Export
{
public function collection()
{
return Model::with('document', 'item', 'tax')->billRecurring()->collectForExport($this->ids, null, 'document_id');
}
public function map($model): array
{
$document = $model->document;
if (empty($document)) {
return [];
}
$model->bill_number = $document->document_number;
$model->item_name = $model->item->name;
$model->tax_rate = $model->tax->rate;
return parent::map($model);
}
public function fields(): array
{
return [
'bill_number',
'item_name',
'tax_rate',
'amount',
];
}
}

View File

@@ -0,0 +1,44 @@
<?php
namespace App\Exports\Purchases\RecurringBills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentItem as Model;
class RecurringBillItems extends Export
{
public function collection()
{
return Model::with('document', 'item')->billRecurring()->collectForExport($this->ids, null, 'document_id');
}
public function map($model): array
{
$document = $model->document;
if (empty($document)) {
return [];
}
$model->bill_number = $document->document_number;
$model->item_name = $model->item->name;
$model->item_description = $model->item->description;
$model->item_type = $model->item->type;
return parent::map($model);
}
public function fields(): array
{
return [
'bill_number',
'item_name',
'item_description',
'item_type',
'quantity',
'price',
'total',
'tax',
];
}
}

View File

@@ -0,0 +1,38 @@
<?php
namespace App\Exports\Purchases\RecurringBills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentTotal as Model;
class RecurringBillTotals extends Export
{
public function collection()
{
return Model::with('document')->billRecurring()->collectForExport($this->ids, null, 'document_id');
}
public function map($model): array
{
$document = $model->document;
if (empty($document)) {
return [];
}
$model->bill_number = $document->document_number;
return parent::map($model);
}
public function fields(): array
{
return [
'bill_number',
'code',
'name',
'amount',
'sort_order',
];
}
}

View File

@@ -0,0 +1,65 @@
<?php
namespace App\Exports\Purchases\RecurringBills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\Document as Model;
use Maatwebsite\Excel\Concerns\WithColumnFormatting;
use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
class RecurringBills extends Export implements WithColumnFormatting
{
public function collection()
{
return Model::with('category')->billRecurring()->collectForExport($this->ids, ['document_number' => 'desc']);
}
public function map($model): array
{
$country = null;
if ($model->contact_country && array_key_exists($model->contact_country, trans('countries'))) {
$country = trans('countries.' . $model->contact_country);
}
$model->category_name = $model->category->name;
$model->bill_number = $model->document_number;
$model->billed_at = $model->issued_at;
$model->contact_country = $country;
return parent::map($model);
}
public function fields(): array
{
return [
'bill_number',
'order_number',
'status',
'billed_at',
'due_at',
'amount',
'currency_code',
'currency_rate',
'category_name',
'contact_name',
'contact_email',
'contact_tax_number',
'contact_phone',
'contact_address',
'contact_country',
'contact_state',
'contact_zip_code',
'contact_city',
'notes',
];
}
public function columnFormats(): array
{
return [
'D' => NumberFormat::FORMAT_DATE_YYYYMMDD,
'E' => NumberFormat::FORMAT_DATE_YYYYMMDD,
];
}
}