mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-01-11 15:18:42 +00:00
812 lines
30 KiB
PHP
Executable File
812 lines
30 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package Modules\Billing
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Billing\Controller;
|
|
|
|
use Modules\Auditor\Models\AuditMapper;
|
|
use Modules\Billing\Models\BillElementMapper;
|
|
use Modules\Billing\Models\BillMapper;
|
|
use Modules\Billing\Models\BillStatus;
|
|
use Modules\Billing\Models\BillTransferType;
|
|
use Modules\Billing\Models\BillTypeMapper;
|
|
use Modules\Billing\Models\PurchaseBillMapper;
|
|
use Modules\Billing\Models\SalesBillMapper;
|
|
use Modules\Billing\Models\SettingsEnum;
|
|
use Modules\Billing\Models\StockBillMapper;
|
|
use phpOMS\Asset\AssetType;
|
|
use phpOMS\Contract\RenderableInterface;
|
|
use phpOMS\DataStorage\Database\Query\OrderType;
|
|
use phpOMS\Localization\ISO3166CharEnum;
|
|
use phpOMS\Localization\ISO3166NameEnum;
|
|
use phpOMS\Message\RequestAbstract;
|
|
use phpOMS\Message\ResponseAbstract;
|
|
use phpOMS\Utils\StringUtils;
|
|
use phpOMS\Views\View;
|
|
|
|
/**
|
|
* Billing class.
|
|
*
|
|
* @package Modules\Billing
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
final class BackendController extends Controller
|
|
{
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingSalesList(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/sales-bill-list');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005104001, $request, $response);
|
|
|
|
$mapperQuery = SalesBillMapper::getAll()
|
|
->with('type')
|
|
->with('type/l11n')
|
|
->with('client')
|
|
->where('type/transferType', BillTransferType::SALES)
|
|
->where('type/l11n/language', $response->header->l11n->language)
|
|
->sort('id', OrderType::DESC)
|
|
->limit(25);
|
|
|
|
if ($request->getData('ptype') === 'p') {
|
|
$view->data['bills'] = $mapperQuery
|
|
->where('id', $request->getDataInt('id') ?? 0, '<')
|
|
->where('client', null, '!=')
|
|
->execute();
|
|
} elseif ($request->getData('ptype') === 'n') {
|
|
$view->data['bills'] = $mapperQuery->where('id', $request->getDataInt('id') ?? 0, '>')
|
|
->where('client', null, '!=')
|
|
->execute();
|
|
} else {
|
|
$view->data['bills'] = $mapperQuery->where('id', 0, '>')
|
|
->where('client', null, '!=')
|
|
->execute();
|
|
}
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingSalesInvoice(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/bill-create');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005104001, $request, $response);
|
|
|
|
/** @var \Modules\Billing\Models\Bill $bill */
|
|
$bill = SalesBillMapper::get()
|
|
->with('client')
|
|
->with('elements')
|
|
->with('files')
|
|
->with('files/types')
|
|
->with('notes')
|
|
->where('id', (int) $request->getData('id'))
|
|
->execute();
|
|
|
|
$view->data['bill'] = $bill;
|
|
|
|
/** @var \Modules\Auditor\Models\Auditor[] $logsBill */
|
|
$logsBill = AuditMapper::getAll()
|
|
->with('createdBy')
|
|
->where('module', 'Billing')
|
|
->where('type', StringUtils::intHash(BillMapper::class))
|
|
->where('ref', $bill->id)
|
|
->execute();
|
|
|
|
/** @var \Modules\Auditor\Models\Auditor[] $logsElements */
|
|
$logsElements = AuditMapper::getAll()
|
|
->with('createdBy')
|
|
->where('module', 'Billing')
|
|
->where('type', StringUtils::intHash(BillElementMapper::class))
|
|
->where('ref', \array_keys($bill->getElements()), 'IN')
|
|
->execute();
|
|
|
|
$logs = \array_merge($logsBill, $logsElements);
|
|
|
|
$view->data['logs'] = $logs;
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingSalesInvoiceCreate(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/bill-create');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005104001, $request, $response);
|
|
|
|
$billTypes = BillTypeMapper::getAll()
|
|
->with('l11n')
|
|
->where('isTemplate', false)
|
|
->where('transferType', BillTransferType::SALES)
|
|
->where('l11n/language', $request->header->l11n->language)
|
|
->execute();
|
|
|
|
$view->data['billtypes'] = $billTypes;
|
|
|
|
$mediaListView = new \Modules\Media\Theme\Backend\Components\Media\ListView($this->app->l11nManager, $request, $response);
|
|
$mediaListView->setTemplate('/Modules/Media/Theme/Backend/Components/Media/list');
|
|
$view->data['medialist'] = $mediaListView;
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingPurchaseInvoiceCreate(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/bill-create');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005104001, $request, $response);
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingStockInvoiceCreate(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/bill-create');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005104001, $request, $response);
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingPurchaseList(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/purchase-bill-list');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005105001, $request, $response);
|
|
|
|
$mapperQuery = PurchaseBillMapper::getAll()
|
|
->with('type')
|
|
->with('type/l11n')
|
|
->with('supplier')
|
|
->where('type/transferType', BillTransferType::PURCHASE)
|
|
->sort('id', OrderType::DESC)
|
|
->limit(25);
|
|
|
|
if ($request->getData('ptype') === 'p') {
|
|
$view->data['bills'] = $mapperQuery
|
|
->where('id', $request->getDataInt('id') ?? 0, '<')
|
|
->where('supplier', null, '!=')
|
|
->where('type/l11n/language', $response->header->l11n->language)
|
|
->execute();
|
|
} elseif ($request->getData('ptype') === 'n') {
|
|
$view->data['bills'] = $mapperQuery->where('id', $request->getDataInt('id') ?? 0, '>')
|
|
->where('supplier', null, '!=')
|
|
->where('type/l11n/language', $response->header->l11n->language)
|
|
->execute();
|
|
} else {
|
|
$view->data['bills'] = $mapperQuery->where('id', 0, '>')
|
|
->where('supplier', null, '!=')
|
|
->where('type/l11n/language', $response->header->l11n->language)
|
|
->execute();
|
|
}
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingPurchaseInvoice(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/purchase-bill');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005105001, $request, $response);
|
|
|
|
$bill = PurchaseBillMapper::get()
|
|
->with('elements')
|
|
->with('files')
|
|
->with('files/types')
|
|
->with('notes')
|
|
->where('id', (int) $request->getData('id'))
|
|
->execute();
|
|
|
|
$view->data['bill'] = $bill;
|
|
|
|
/** @var \Model\Setting $previewType */
|
|
$previewType = $this->app->appSettings->get(
|
|
names: SettingsEnum::PREVIEW_MEDIA_TYPE,
|
|
module: self::NAME
|
|
);
|
|
|
|
$view->data['previewType'] = (int) $previewType->content;
|
|
|
|
/** @var \Model\Setting $originalType */
|
|
$originalType = $this->app->appSettings->get(
|
|
names: SettingsEnum::ORIGINAL_MEDIA_TYPE,
|
|
module: self::NAME
|
|
);
|
|
|
|
$view->data['originalType'] = (int) $originalType->content;
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingStockList(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/purchase-bill-list');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005106001, $request, $response);
|
|
|
|
if ($request->getData('ptype') === 'p') {
|
|
$view->data['bills'] = StockBillMapper::getAll()->where('id', $request->getDataInt('id') ?? 0, '<')->limit(25)->execute();
|
|
} elseif ($request->getData('ptype') === 'n') {
|
|
$view->data['bills'] = StockBillMapper::getAll()->where('id', $request->getDataInt('id') ?? 0, '>')->limit(25)->execute();
|
|
} else {
|
|
$view->data['bills'] = StockBillMapper::getAll()->where('id', 0, '>')->limit(25)->execute();
|
|
}
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingStockInvoice(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/purchase-bill');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005106001, $request, $response);
|
|
|
|
$bill = StockBillMapper::get()->where('id', (int) $request->getData('id'))->execute();
|
|
|
|
$view->data['bill'] = $bill;
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewRegionAnalysis(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$head = $response->data['Content']->head;
|
|
$head->addAsset(AssetType::CSS, 'Resources/chartjs/Chartjs/chart.css');
|
|
$head->addAsset(AssetType::JSLATE, 'Resources/chartjs/Chartjs/chart.js');
|
|
$head->addAsset(AssetType::JSLATE, 'Modules/ClientManagement/Controller.js', ['type' => 'module']);
|
|
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/region-analysis');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1001602001, $request, $response);
|
|
|
|
$monthlySalesCosts = [];
|
|
for ($i = 1; $i < 13; ++$i) {
|
|
$monthlySalesCosts[] = [
|
|
'net_sales' => $sales = \mt_rand(1200000000, 2000000000),
|
|
'net_costs' => (int) ($sales * \mt_rand(25, 55) / 100),
|
|
'year' => 2020,
|
|
'month' => $i,
|
|
];
|
|
}
|
|
|
|
$view->data['monthlySalesCosts'] = $monthlySalesCosts;
|
|
|
|
/////
|
|
$currentCustomerRegion = [
|
|
'Europe' => (int) (\mt_rand(200, 400) / 4),
|
|
'America' => (int) (\mt_rand(200, 400) / 4),
|
|
'Asia' => (int) (\mt_rand(200, 400) / 4),
|
|
'Africa' => (int) (\mt_rand(200, 400) / 4),
|
|
'CIS' => (int) (\mt_rand(200, 400) / 4),
|
|
'Other' => (int) (\mt_rand(200, 400) / 4),
|
|
];
|
|
|
|
$view->data['currentCustomerRegion'] = $currentCustomerRegion;
|
|
|
|
$annualCustomerRegion = [];
|
|
for ($i = 1; $i < 11; ++$i) {
|
|
$annualCustomerRegion[] = [
|
|
'year' => 2020 - 10 + $i,
|
|
'Europe' => $a = (int) (\mt_rand(200, 400) / 4),
|
|
'America' => $b = (int) (\mt_rand(200, 400) / 4),
|
|
'Asia' => $c = (int) (\mt_rand(200, 400) / 4),
|
|
'Africa' => $d = (int) (\mt_rand(200, 400) / 4),
|
|
'CIS' => $e = (int) (\mt_rand(200, 400) / 4),
|
|
'Other' => $f = (int) (\mt_rand(200, 400) / 4),
|
|
'Total' => $a + $b + $c + $d + $e + $f,
|
|
];
|
|
}
|
|
|
|
$view->data['annualCustomerRegion'] = $annualCustomerRegion;
|
|
|
|
/////
|
|
$monthlySalesCustomer = [];
|
|
for ($i = 1; $i < 13; ++$i) {
|
|
$monthlySalesCustomer[] = [
|
|
'net_sales' => $sales = \mt_rand(1200000000, 2000000000),
|
|
'customers' => \mt_rand(200, 400),
|
|
'year' => 2020,
|
|
'month' => $i,
|
|
];
|
|
}
|
|
|
|
$view->data['monthlySalesCustomer'] = $monthlySalesCustomer;
|
|
|
|
$annualSalesCustomer = [];
|
|
for ($i = 1; $i < 11; ++$i) {
|
|
$annualSalesCustomer[] = [
|
|
'net_sales' => $sales = \mt_rand(1200000000, 2000000000) * 12,
|
|
'customers' => \mt_rand(200, 400) * 6,
|
|
'year' => 2020 - 10 + $i,
|
|
];
|
|
}
|
|
|
|
$view->data['annualSalesCustomer'] = $annualSalesCustomer;
|
|
|
|
/////
|
|
$monthlyCustomerRetention = [];
|
|
for ($i = 1; $i < 10; ++$i) {
|
|
$monthlyCustomerRetention[] = [
|
|
'customers' => \mt_rand(200, 400),
|
|
'year' => \date('y') - 9 + $i,
|
|
];
|
|
}
|
|
|
|
$view->data['monthlyCustomerRetention'] = $monthlyCustomerRetention;
|
|
|
|
/////
|
|
$currentCustomerRegion = [
|
|
'Europe' => (int) (\mt_rand(200, 400) / 4),
|
|
'America' => (int) (\mt_rand(200, 400) / 4),
|
|
'Asia' => (int) (\mt_rand(200, 400) / 4),
|
|
'Africa' => (int) (\mt_rand(200, 400) / 4),
|
|
'CIS' => (int) (\mt_rand(200, 400) / 4),
|
|
'Other' => (int) (\mt_rand(200, 400) / 4),
|
|
];
|
|
|
|
$view->data['currentCustomerRegion'] = $currentCustomerRegion;
|
|
|
|
$annualCustomerRegion = [];
|
|
for ($i = 1; $i < 11; ++$i) {
|
|
$annualCustomerRegion[] = [
|
|
'year' => 2020 - 10 + $i,
|
|
'Europe' => $a = (int) (\mt_rand(200, 400) / 4),
|
|
'America' => $b = (int) (\mt_rand(200, 400) / 4),
|
|
'Asia' => $c = (int) (\mt_rand(200, 400) / 4),
|
|
'Africa' => $d = (int) (\mt_rand(200, 400) / 4),
|
|
'CIS' => $e = (int) (\mt_rand(200, 400) / 4),
|
|
'Other' => $f = (int) (\mt_rand(200, 400) / 4),
|
|
'Total' => $a + $b + $c + $d + $e + $f,
|
|
];
|
|
}
|
|
|
|
$view->data['annualCustomerRegion'] = $annualCustomerRegion;
|
|
|
|
/////
|
|
$currentCustomersRep = [];
|
|
for ($i = 1; $i < 13; ++$i) {
|
|
$currentCustomersRep['Rep ' . $i] = [
|
|
'customers' => (int) (\mt_rand(200, 400) / 12),
|
|
];
|
|
}
|
|
|
|
\uasort($currentCustomersRep, function($a, $b) {
|
|
return $b['customers'] <=> $a['customers'];
|
|
});
|
|
|
|
$view->data['currentCustomersRep'] = $currentCustomersRep;
|
|
|
|
$annualCustomersRep = [];
|
|
for ($i = 1; $i < 13; ++$i) {
|
|
$annualCustomersRep['Rep ' . $i] = [];
|
|
|
|
for ($j = 1; $j < 11; ++$j) {
|
|
$annualCustomersRep['Rep ' . $i][] = [
|
|
'customers' => (int) (\mt_rand(200, 400) / 12),
|
|
'year' => 2020 - 10 + $j,
|
|
];
|
|
}
|
|
}
|
|
|
|
$view->data['annualCustomersRep'] = $annualCustomersRep;
|
|
|
|
/////
|
|
$currentCustomersCountry = [];
|
|
for ($i = 1; $i < 51; ++$i) {
|
|
$country = ISO3166NameEnum::getRandom();
|
|
$currentCustomersCountry[\substr($country, 0, 20)] = [
|
|
'customers' => (int) (\mt_rand(200, 400) / 12),
|
|
];
|
|
}
|
|
|
|
\uasort($currentCustomersCountry, function($a, $b) {
|
|
return $b['customers'] <=> $a['customers'];
|
|
});
|
|
|
|
$view->data['currentCustomersCountry'] = $currentCustomersCountry;
|
|
|
|
$annualCustomersCountry = [];
|
|
for ($i = 1; $i < 51; ++$i) {
|
|
$countryCode = ISO3166CharEnum::getRandom();
|
|
$countryName = ISO3166NameEnum::getByName('_' . $countryCode);
|
|
$annualCustomersCountry[\substr($countryName, 0, 20)] = [];
|
|
|
|
for ($j = 1; $j < 11; ++$j) {
|
|
$annualCustomersCountry[\substr($countryName, 0, 20)][] = [
|
|
'customers' => (int) (\mt_rand(200, 400) / 12),
|
|
'year' => 2020 - 10 + $j,
|
|
'name' => $countryName,
|
|
'code' => $countryCode,
|
|
];
|
|
}
|
|
}
|
|
|
|
$view->data['annualCustomersCountry'] = $annualCustomersCountry;
|
|
|
|
/////
|
|
$customerGroups = [];
|
|
for ($i = 1; $i < 7; ++$i) {
|
|
$customerGroups['Group ' . $i] = [
|
|
'customers' => (int) (\mt_rand(200, 400) / 12),
|
|
];
|
|
}
|
|
|
|
$view->data['customerGroups'] = $customerGroups;
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillAnalysis(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$head = $response->data['Content']->head;
|
|
$head->addAsset(AssetType::CSS, 'Resources/chartjs/Chartjs/chart.css');
|
|
$head->addAsset(AssetType::JSLATE, 'Resources/chartjs/Chartjs/chart.js');
|
|
$head->addAsset(AssetType::JSLATE, 'Modules/ClientManagement/Controller.js', ['type' => 'module']);
|
|
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/bill-analysis');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1001602001, $request, $response);
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewSalesRepAnalysis(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$head = $response->data['Content']->head;
|
|
$head->addAsset(AssetType::CSS, 'Resources/chartjs/Chartjs/chart.css');
|
|
$head->addAsset(AssetType::JSLATE, 'Resources/chartjs/Chartjs/chart.js');
|
|
$head->addAsset(AssetType::JSLATE, 'Modules/ClientManagement/Controller.js', ['type' => 'module']);
|
|
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/rep-analysis');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1001602001, $request, $response);
|
|
|
|
/////
|
|
$currentCustomerRegion = [
|
|
'Europe' => (int) (\mt_rand(200, 400) / 4),
|
|
'America' => (int) (\mt_rand(200, 400) / 4),
|
|
'Asia' => (int) (\mt_rand(200, 400) / 4),
|
|
'Africa' => (int) (\mt_rand(200, 400) / 4),
|
|
'CIS' => (int) (\mt_rand(200, 400) / 4),
|
|
'Other' => (int) (\mt_rand(200, 400) / 4),
|
|
];
|
|
|
|
$view->data['currentCustomerRegion'] = $currentCustomerRegion;
|
|
|
|
$annualCustomerRegion = [];
|
|
for ($i = 1; $i < 11; ++$i) {
|
|
$annualCustomerRegion[] = [
|
|
'year' => 2020 - 10 + $i,
|
|
'Europe' => $a = (int) (\mt_rand(200, 400) / 4),
|
|
'America' => $b = (int) (\mt_rand(200, 400) / 4),
|
|
'Asia' => $c = (int) (\mt_rand(200, 400) / 4),
|
|
'Africa' => $d = (int) (\mt_rand(200, 400) / 4),
|
|
'CIS' => $e = (int) (\mt_rand(200, 400) / 4),
|
|
'Other' => $f = (int) (\mt_rand(200, 400) / 4),
|
|
'Total' => $a + $b + $c + $d + $e + $f,
|
|
];
|
|
}
|
|
|
|
$view->data['annualCustomerRegion'] = $annualCustomerRegion;
|
|
|
|
/////
|
|
$currentCustomersRep = [];
|
|
for ($i = 1; $i < 13; ++$i) {
|
|
$currentCustomersRep['Rep ' . $i] = [
|
|
'customers' => (int) (\mt_rand(200, 400) / 12),
|
|
];
|
|
}
|
|
|
|
\uasort($currentCustomersRep, function($a, $b) {
|
|
return $b['customers'] <=> $a['customers'];
|
|
});
|
|
|
|
$view->data['currentCustomersRep'] = $currentCustomersRep;
|
|
|
|
$annualCustomersRep = [];
|
|
for ($i = 1; $i < 13; ++$i) {
|
|
$annualCustomersRep['Rep ' . $i] = [];
|
|
|
|
for ($j = 1; $j < 11; ++$j) {
|
|
$annualCustomersRep['Rep ' . $i][] = [
|
|
'customers' => (int) (\mt_rand(200, 400) / 12),
|
|
'year' => 2020 - 10 + $j,
|
|
];
|
|
}
|
|
}
|
|
|
|
$view->data['annualCustomersRep'] = $annualCustomersRep;
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewBillingPurchaseInvoiceUpload(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/purchase-bill-upload');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1002901101, $request, $response);
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewPrivatePurchaseBillUpload(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/user-purchase-bill-upload');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005109001, $request, $response);
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewPrivatePurchaseBillDashboard(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/user-purchase-bill-dashboard');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005109001, $request, $response);
|
|
|
|
$mapperQuery = PurchaseBillMapper::getAll()
|
|
->with('type')
|
|
->with('type/l11n')
|
|
->with('supplier')
|
|
->where('type/transferType', BillTransferType::PURCHASE)
|
|
->where('status', BillStatus::UNPARSED)
|
|
->sort('id', OrderType::DESC)
|
|
->limit(25);
|
|
|
|
if ($request->getData('ptype') === 'p') {
|
|
$view->data['bills'] = $mapperQuery
|
|
->where('id', $request->getDataInt('id') ?? 0, '<')
|
|
->where('type/l11n/language', $response->header->l11n->language)
|
|
->execute();
|
|
} elseif ($request->getData('ptype') === 'n') {
|
|
$view->data['bills'] = $mapperQuery->where('id', $request->getDataInt('id') ?? 0, '>')
|
|
->where('type/l11n/language', $response->header->l11n->language)
|
|
->execute();
|
|
} else {
|
|
$view->data['bills'] = $mapperQuery->where('id', 0, '>')
|
|
->where('type/l11n/language', $response->header->l11n->language)
|
|
->execute();
|
|
}
|
|
|
|
return $view;
|
|
}
|
|
|
|
/**
|
|
* Routing end-point for application behaviour.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return RenderableInterface
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function viewPrivateBillingPurchaseInvoice(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface
|
|
{
|
|
$view = new View($this->app->l11nManager, $request, $response);
|
|
$view->setTemplate('/Modules/Billing/Theme/Backend/user-purchase-bill');
|
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1005109001, $request, $response);
|
|
|
|
$bill = PurchaseBillMapper::get()
|
|
->with('elements')
|
|
->with('files')
|
|
->with('files/types')
|
|
->with('notes')
|
|
->where('id', (int) $request->getData('id'))
|
|
->execute();
|
|
|
|
$view->data['bill'] = $bill;
|
|
|
|
/** @var \Model\Setting $previewType */
|
|
$previewType = $this->app->appSettings->get(
|
|
names: SettingsEnum::PREVIEW_MEDIA_TYPE,
|
|
module: self::NAME
|
|
);
|
|
|
|
$view->data['previewType'] = (int) $previewType->content;
|
|
|
|
/** @var \Model\Setting $originalType */
|
|
$originalType = $this->app->appSettings->get(
|
|
names: SettingsEnum::ORIGINAL_MEDIA_TYPE,
|
|
module: self::NAME
|
|
);
|
|
|
|
$view->data['originalType'] = (int) $originalType->content;
|
|
|
|
return $view;
|
|
}
|
|
}
|