mirror of
https://github.com/Karaka-Management/oms-Finance.git
synced 2026-01-11 12:58:42 +00:00
started with template fixes
This commit is contained in:
parent
37faaf62b6
commit
82f8e4f022
|
|
@ -58,52 +58,6 @@
|
|||
"children": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 1008103001,
|
||||
"pid": "/",
|
||||
"type": 2,
|
||||
"subtype": 1,
|
||||
"name": "TaxCombinations",
|
||||
"uri": "{/base}/finance/tax/combination/list?{?}",
|
||||
"target": "self",
|
||||
"icon": null,
|
||||
"order": 2,
|
||||
"from": "Finance",
|
||||
"permission": { "permission": 2, "category": null, "element": null },
|
||||
"parent": 1008101001,
|
||||
"children": [
|
||||
{
|
||||
"id": 1008103002,
|
||||
"pid": "/finance/tax/combination",
|
||||
"type": 3,
|
||||
"subtype": 1,
|
||||
"name": "List",
|
||||
"uri": "{/base}/finance/tax/combination/list?{?}",
|
||||
"target": "self",
|
||||
"icon": null,
|
||||
"order": 1,
|
||||
"from": "Finance",
|
||||
"permission": { "permission": 2, "category": null, "element": null },
|
||||
"parent": 1008103001,
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"id": 1008103003,
|
||||
"pid": "/finance/tax/combination",
|
||||
"type": 3,
|
||||
"subtype": 1,
|
||||
"name": "Create",
|
||||
"uri": "{/base}/finance/tax/combination/create?{?}",
|
||||
"target": "self",
|
||||
"icon": null,
|
||||
"order": 5,
|
||||
"from": "Finance",
|
||||
"permission": { "permission": 2, "category": null, "element": null },
|
||||
"parent": 1008103001,
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
10
Admin/Install/item_tax_categories.json
Normal file
10
Admin/Install/item_tax_categories.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"DEU": {
|
||||
"DE_V07": {
|
||||
"names": [
|
||||
"Kartoffeln", "Apfel", "Äpfel", "Milch", "Hörgerät", "Buch", "Bücher", "Brot", "Butter", "Pilz", "Pilze",
|
||||
"Implantat", "Implantate", "Tee", "Kaffee", "Cafe", "Tiernahrung"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -51,26 +51,4 @@ return [
|
|||
],
|
||||
],
|
||||
],
|
||||
'^.*/finance/tax/combination/list(\?.*$|$)' => [
|
||||
[
|
||||
'dest' => '\Modules\Finance\Controller\BackendController:viewCombinationList',
|
||||
'verb' => RouteVerb::GET,
|
||||
'permission' => [
|
||||
'module' => BackendController::NAME,
|
||||
'type' => PermissionType::CREATE,
|
||||
'state' => PermissionCategory::TAX,
|
||||
],
|
||||
],
|
||||
],
|
||||
'^.*/finance/tax/combination/create(\?.*$|$)' => [
|
||||
[
|
||||
'dest' => '\Modules\Finance\Controller\BackendController:viewCombinationCreate',
|
||||
'verb' => RouteVerb::GET,
|
||||
'permission' => [
|
||||
'module' => BackendController::NAME,
|
||||
'type' => PermissionType::CREATE,
|
||||
'state' => PermissionCategory::TAX,
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ final class ApiController extends Controller
|
|||
$code = new TaxCode();
|
||||
$code->abbr = $request->getDataString('abbr') ?? '';
|
||||
$code->percentageInvoice = $request->getDataInt('percentage_invoice') ?? 0;
|
||||
$code->percentageSales = $request->getDataInt('percentage_sales_tax') ?? 0;
|
||||
$code->percentageOutput = $request->getDataInt('percentage_sales_tax') ?? 0;
|
||||
$code->percentageInput = $request->getDataInt('percentage_input_tax') ?? 0;
|
||||
$code->taxAccount1 = $request->getDataString('tax1');
|
||||
$code->taxAccount2 = $request->getDataString('tax2');
|
||||
|
|
@ -225,7 +225,7 @@ final class ApiController extends Controller
|
|||
{
|
||||
$new->abbr = $request->getDataString('abbr') ?? $new->abbr;
|
||||
$new->percentageInvoice = $request->getDataInt('percentage_invoice') ?? $new->percentageInvoice;
|
||||
$new->percentageSales = $request->getDataInt('percentage_sales_tax') ?? $new->percentageSales;
|
||||
$new->percentageOutput = $request->getDataInt('percentage_sales_tax') ?? $new->percentageOutput;
|
||||
$new->percentageInput = $request->getDataInt('percentage_input_tax') ?? $new->percentageInput;
|
||||
|
||||
return $new;
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ declare(strict_types=1);
|
|||
|
||||
namespace Modules\Finance\Controller;
|
||||
|
||||
use Modules\Finance\Models\TaxCodeMapper;
|
||||
use phpOMS\Asset\AssetType;
|
||||
use phpOMS\Contract\RenderableInterface;
|
||||
use phpOMS\Message\RequestAbstract;
|
||||
|
|
@ -42,42 +43,37 @@ final class BackendController extends Controller
|
|||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public function viewDashboard(RequestAbstract $request, ResponseAbstract $response, array $data = []) : RenderableInterface
|
||||
public function viewTaxList(RequestAbstract $request, ResponseAbstract $response, array $data = []) : RenderableInterface
|
||||
{
|
||||
$head = $response->data['Content']->head;
|
||||
$nonce = $this->app->appSettings->getOption('script-nonce');
|
||||
|
||||
$head->addAsset(AssetType::CSS, 'Resources/chartjs/chart.css?v=' . $this->app->version);
|
||||
$head->addAsset(AssetType::JSLATE, 'Resources/chartjs/chart.js?v=' . $this->app->version, ['nonce' => $nonce]);
|
||||
$head->addAsset(AssetType::JSLATE, 'Modules/ClientManagement/Controller.js?v=' . self::VERSION, ['nonce' => $nonce, 'type' => 'module']);
|
||||
|
||||
$view = new View($this->app->l11nManager, $request, $response);
|
||||
$view->setTemplate('/Modules/Sales/Theme/Backend/sales-analysis-dashboard');
|
||||
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1001602001, $request, $response);
|
||||
$view->setTemplate('/Modules/Finance/Theme/Backend/finance-taxcode-list');
|
||||
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1008102001, $request, $response);
|
||||
|
||||
/////
|
||||
$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['taxcode'] = TaxCodeMapper::getAll()
|
||||
->executeGetArray();
|
||||
|
||||
$view->data['monthlySalesCustomer'] = $monthlySalesCustomer;
|
||||
return $view;
|
||||
}
|
||||
|
||||
$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,
|
||||
];
|
||||
}
|
||||
/**
|
||||
* Method which shows the sales dashboard
|
||||
*
|
||||
* @param RequestAbstract $request Request
|
||||
* @param ResponseAbstract $response Response
|
||||
* @param array $data Generic data
|
||||
*
|
||||
* @return RenderableInterface Response can be rendered
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public function viewTaxView(RequestAbstract $request, ResponseAbstract $response, array $data = []) : RenderableInterface
|
||||
{
|
||||
$view = new View($this->app->l11nManager, $request, $response);
|
||||
$view->setTemplate('/Modules/Finance/Theme/Backend/finance-taxcode-view');
|
||||
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1008102001, $request, $response);
|
||||
|
||||
$view->data['annualSalesCustomer'] = $annualSalesCustomer;
|
||||
$view->data['taxcode'] = TaxCodeMapper::getAll()
|
||||
->executeGetArray();
|
||||
|
||||
return $view;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,9 +34,10 @@ class TaxCode implements \JsonSerializable
|
|||
|
||||
public string $abbr = '';
|
||||
|
||||
/** @todo Turn into FloatInt */
|
||||
public int $percentageInvoice = 0;
|
||||
|
||||
public int $percentageSales = 0;
|
||||
public int $percentageOutput = 0;
|
||||
|
||||
public int $percentageInput = 0;
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ final class TaxCodeMapper extends DataMapperFactory
|
|||
'tax_code_id' => ['name' => 'tax_code_id', 'type' => 'int', 'internal' => 'id'],
|
||||
'tax_code_abbr' => ['name' => 'tax_code_abbr', 'type' => 'string', 'internal' => 'abbr'],
|
||||
'tax_code_invoice' => ['name' => 'tax_code_invoice', 'type' => 'int', 'internal' => 'percentageInvoice'],
|
||||
'tax_code_sales' => ['name' => 'tax_code_sales', 'type' => 'int', 'internal' => 'percentageSales'],
|
||||
'tax_code_sales' => ['name' => 'tax_code_sales', 'type' => 'int', 'internal' => 'percentageOutput'],
|
||||
'tax_code_input' => ['name' => 'tax_code_input', 'type' => 'int', 'internal' => 'percentageInput'],
|
||||
'tax_code_tax1_account' => ['name' => 'tax_code_tax1_account', 'type' => 'string', 'internal' => 'taxAccount1'],
|
||||
'tax_code_tax2_account' => ['name' => 'tax_code_tax2_account', 'type' => 'string', 'internal' => 'taxAccount2'],
|
||||
|
|
|
|||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'الحساب',
|
||||
'Active' => 'نشيط',
|
||||
'Activity' => 'نشاط',
|
||||
'Address' => 'تبوك',
|
||||
'All' => 'الجميع',
|
||||
'Amount' => 'مقدار',
|
||||
'Analysis' => 'التحليلات',
|
||||
'Analyze' => '',
|
||||
'Area' => 'مساحة',
|
||||
'Article' => 'مقالة - سلعة',
|
||||
'Articles' => 'مقالات',
|
||||
'Available' => 'متوفرة',
|
||||
'Calculate' => 'حساب',
|
||||
'City' => 'مدينة',
|
||||
'Class' => 'فصل',
|
||||
'Client' => 'عميل',
|
||||
'ClientID' => 'معرف العميل',
|
||||
'ClientName' => 'اسم العميل',
|
||||
'Clients' => 'عملاء',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'تأكيد',
|
||||
'CoreData' => 'البيانات الأساسية',
|
||||
'Country' => 'دولة',
|
||||
'Created' => 'خلقت',
|
||||
'Creator' => 'المنشئ',
|
||||
'CreditNote' => 'اشعار دائن',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO.',
|
||||
'Date' => 'تاريخ',
|
||||
'DefaultInternational' => 'افتراضي الدولية',
|
||||
'DefaultNational' => 'الوضع الوطني الافتراضي',
|
||||
'Delivery' => 'توصيل',
|
||||
'DeliveryNote' => 'مذكرة تسليم',
|
||||
'Description' => 'وصف',
|
||||
'Discount' => 'خصم',
|
||||
'DiscountP' => 'خصم في٪',
|
||||
'Documentation' => 'توثيق',
|
||||
'Employee' => 'موظف',
|
||||
'End' => '',
|
||||
'FAO' => 'الفاو',
|
||||
'From' => 'من',
|
||||
'Group' => 'مجموعة',
|
||||
'Groups' => 'مجموعات',
|
||||
'Highest' => 'أعلى',
|
||||
'Inactive' => 'غير نشط',
|
||||
'Interval' => 'فترة',
|
||||
'Invoice' => 'فاتورة',
|
||||
'Invoices' => 'الفواتير',
|
||||
'IsDefault' => 'افتراضي؟',
|
||||
'Language' => 'لغة',
|
||||
'Last' => 'الاخير',
|
||||
'Localization' => 'الموقع',
|
||||
'Loginname' => 'اسم الدخول',
|
||||
'Matchcode' => 'رمز مطابق',
|
||||
'Media' => 'وسائط',
|
||||
'MinPrice' => 'سعر دقيقة',
|
||||
'Name' => 'اسم',
|
||||
'Name1' => 'الاسم 1.',
|
||||
'Name2' => 'الاسم 2.',
|
||||
'Name3' => 'الاسم 3.',
|
||||
'Offer' => 'عرض',
|
||||
'Order' => 'طلب',
|
||||
'Ordered' => 'أمر',
|
||||
'OrderedBy' => 'أمر من قبل',
|
||||
'Orders' => 'الطلب #٪ s',
|
||||
'Payment' => 'دفع',
|
||||
'Price' => 'السعر',
|
||||
'Priority' => 'أفضلية',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'كمية',
|
||||
'Receipt' => 'إيصال',
|
||||
'Reference' => 'المرجعي',
|
||||
'Sales' => 'مبيعات',
|
||||
'Settings' => 'إعدادات',
|
||||
'Single' => 'غير مرتبطة',
|
||||
'Start' => '',
|
||||
'State' => 'ولاية',
|
||||
'Statistics' => 'إحصائيات',
|
||||
'Status' => 'حالة',
|
||||
'Stock' => 'المخزون',
|
||||
'Street' => 'شارع',
|
||||
'Subgroup' => 'مجموعة فرعية',
|
||||
'Tax' => 'ضريبة',
|
||||
'Terms' => 'شروط',
|
||||
'To' => 'ل',
|
||||
'TopArticles' => 'أفضل المقالات',
|
||||
'Trend' => 'اتجاه',
|
||||
'Turnover' => 'دوران',
|
||||
'Type' => 'نوع',
|
||||
'ZipCode' => 'رمز بريدي',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Účet',
|
||||
'Active' => 'Aktivní',
|
||||
'Activity' => 'Aktivita',
|
||||
'Address' => 'Adresa',
|
||||
'All' => 'Všechno',
|
||||
'Amount' => 'Množství',
|
||||
'Analysis' => 'Analýza',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Plocha',
|
||||
'Article' => 'Článek',
|
||||
'Articles' => 'Články',
|
||||
'Available' => 'Dostupný',
|
||||
'Calculate' => 'Vypočítat',
|
||||
'City' => 'Město',
|
||||
'Class' => 'Třída',
|
||||
'Client' => 'Klienta',
|
||||
'ClientID' => 'ID klienta',
|
||||
'ClientName' => 'jméno klienta',
|
||||
'Clients' => 'Klienti',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'potvrzení',
|
||||
'CoreData' => 'Základní data',
|
||||
'Country' => 'Země',
|
||||
'Created' => 'Vytvořený',
|
||||
'Creator' => 'Tvůrce',
|
||||
'CreditNote' => 'Dobropis',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO.',
|
||||
'Date' => 'datum',
|
||||
'DefaultInternational' => 'Výchozí mezinárodní',
|
||||
'DefaultNational' => 'Výchozí státní příslušník',
|
||||
'Delivery' => 'dodávka',
|
||||
'DeliveryNote' => 'Dodací list',
|
||||
'Description' => 'Popis',
|
||||
'Discount' => 'Sleva',
|
||||
'DiscountP' => 'Sleva v%',
|
||||
'Documentation' => 'Dokumentace',
|
||||
'Employee' => 'Zaměstnanec',
|
||||
'End' => '',
|
||||
'FAO' => 'Fao.',
|
||||
'From' => 'Z',
|
||||
'Group' => 'Skupina',
|
||||
'Groups' => 'Skupiny',
|
||||
'Highest' => 'Nejvyšší',
|
||||
'Inactive' => 'Neaktivní',
|
||||
'Interval' => 'Interval',
|
||||
'Invoice' => 'Faktura',
|
||||
'Invoices' => 'Faktury',
|
||||
'IsDefault' => 'Je výchozí?',
|
||||
'Language' => 'Jazyk',
|
||||
'Last' => 'Poslední',
|
||||
'Localization' => 'Lokalizace',
|
||||
'Loginname' => 'Přihlašovací jméno',
|
||||
'Matchcode' => 'MatchCode.',
|
||||
'Media' => 'Mediální',
|
||||
'MinPrice' => 'Min',
|
||||
'Name' => 'název',
|
||||
'Name1' => 'Jméno 1.',
|
||||
'Name2' => 'Jméno 2.',
|
||||
'Name3' => 'Jméno 3.',
|
||||
'Offer' => 'Nabídka',
|
||||
'Order' => 'Objednat',
|
||||
'Ordered' => 'Objednaný',
|
||||
'OrderedBy' => 'Objednáno někým',
|
||||
'Orders' => 'Objednávky',
|
||||
'Payment' => 'Způsob platby',
|
||||
'Price' => 'Cena',
|
||||
'Priority' => 'Přednost',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Množství',
|
||||
'Receipt' => 'Účtenka',
|
||||
'Reference' => 'Odkaz',
|
||||
'Sales' => 'Odbyt',
|
||||
'Settings' => 'Nastavení',
|
||||
'Single' => 'Singl',
|
||||
'Start' => '',
|
||||
'State' => 'Stát',
|
||||
'Statistics' => 'Statistika',
|
||||
'Status' => 'Postavení',
|
||||
'Stock' => 'Skladem',
|
||||
'Street' => 'ulice',
|
||||
'Subgroup' => 'Podskupina',
|
||||
'Tax' => 'Daň',
|
||||
'Terms' => 'Podmínky',
|
||||
'To' => 'Na',
|
||||
'TopArticles' => 'Nejlepší články',
|
||||
'Trend' => 'Trend',
|
||||
'Turnover' => 'Obrat',
|
||||
'Type' => 'Typ',
|
||||
'ZipCode' => 'PSČ',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Konto',
|
||||
'Active' => 'Aktiv',
|
||||
'Activity' => 'Aktivitet',
|
||||
'Address' => 'Adresse',
|
||||
'All' => 'Alle',
|
||||
'Amount' => 'Beløb',
|
||||
'Analysis' => 'Analyse',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Areal',
|
||||
'Article' => 'Artikel',
|
||||
'Articles' => 'Artikler',
|
||||
'Available' => 'Ledig',
|
||||
'Calculate' => 'Beregn',
|
||||
'City' => 'City.',
|
||||
'Class' => 'Klasse',
|
||||
'Client' => 'Klient',
|
||||
'ClientID' => 'Klient ID.',
|
||||
'ClientName' => 'Kundenavn',
|
||||
'Clients' => 'Klienter.',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Bekræftelse',
|
||||
'CoreData' => 'Kernedata.',
|
||||
'Country' => 'Land',
|
||||
'Created' => 'Oprettet',
|
||||
'Creator' => 'Skaber.',
|
||||
'CreditNote' => 'Kreditnota',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO.',
|
||||
'Date' => 'Dato',
|
||||
'DefaultInternational' => 'Standard International',
|
||||
'DefaultNational' => 'Standard National',
|
||||
'Delivery' => 'Levering',
|
||||
'DeliveryNote' => 'Levering note',
|
||||
'Description' => 'Beskrivelse',
|
||||
'Discount' => 'Rabat',
|
||||
'DiscountP' => 'Rabat i%',
|
||||
'Documentation' => 'Dokumentation',
|
||||
'Employee' => 'Medarbejder',
|
||||
'End' => '',
|
||||
'FAO' => 'FAO.',
|
||||
'From' => 'Fra',
|
||||
'Group' => 'Gruppe',
|
||||
'Groups' => 'Grupper.',
|
||||
'Highest' => 'Højeste',
|
||||
'Inactive' => 'Inaktiv.',
|
||||
'Interval' => 'Interval',
|
||||
'Invoice' => 'Faktura',
|
||||
'Invoices' => 'Fakturaer.',
|
||||
'IsDefault' => 'Er standard?',
|
||||
'Language' => 'Sprog',
|
||||
'Last' => 'Sidst',
|
||||
'Localization' => 'Lokalisering',
|
||||
'Loginname' => 'Login-navn',
|
||||
'Matchcode' => 'MatchCode.',
|
||||
'Media' => 'Medier',
|
||||
'MinPrice' => 'Min',
|
||||
'Name' => 'Navn',
|
||||
'Name1' => 'Navn 1',
|
||||
'Name2' => 'Navn 2.',
|
||||
'Name3' => 'Navn 3.',
|
||||
'Offer' => 'Tilbud',
|
||||
'Order' => 'Bestille',
|
||||
'Ordered' => 'Bestilt.',
|
||||
'OrderedBy' => 'Bestilt af',
|
||||
'Orders' => 'Ordre:% s',
|
||||
'Payment' => 'Betaling',
|
||||
'Price' => 'Pris',
|
||||
'Priority' => 'Prioritet',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Antal',
|
||||
'Receipt' => 'Kvittering',
|
||||
'Reference' => 'Reference',
|
||||
'Sales' => 'SALG',
|
||||
'Settings' => 'Indstillinger.',
|
||||
'Single' => 'Enkelt',
|
||||
'Start' => '',
|
||||
'State' => 'Stat',
|
||||
'Statistics' => 'Statistikker',
|
||||
'Status' => 'Status.',
|
||||
'Stock' => 'Lager',
|
||||
'Street' => 'Gade',
|
||||
'Subgroup' => 'Undergruppe',
|
||||
'Tax' => 'Skat',
|
||||
'Terms' => 'Vilkår',
|
||||
'To' => 'Til',
|
||||
'TopArticles' => 'Top artikler',
|
||||
'Trend' => 'Trend.',
|
||||
'Turnover' => 'Omsætning',
|
||||
'Type' => 'Type',
|
||||
'ZipCode' => 'Postnummer',
|
||||
]];
|
||||
|
|
@ -103,4 +103,9 @@ return ['Finance' => [
|
|||
'Turnover' => 'Umsatz',
|
||||
'Type' => 'Typ',
|
||||
'ZipCode' => 'Postleitzahl',
|
||||
'TaxCodes' => 'Steuerkz.',
|
||||
'TaxCode' => 'Steuerkz.',
|
||||
'Purchase' => 'Einkauf',
|
||||
'Tax1Account' => 'Steuerkonto 1',
|
||||
'Tax2Account' => 'Steyerkonto 2',
|
||||
]];
|
||||
|
|
|
|||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'λογαριασμός',
|
||||
'Active' => 'Ενεργός',
|
||||
'Activity' => 'Δραστηριότητα',
|
||||
'Address' => 'Διεύθυνση',
|
||||
'All' => 'Ολα',
|
||||
'Amount' => 'Ποσό',
|
||||
'Analysis' => 'Ανάλυση',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Περιοχή',
|
||||
'Article' => 'Αρθρο',
|
||||
'Articles' => 'Είδη',
|
||||
'Available' => 'Διαθέσιμος',
|
||||
'Calculate' => 'Υπολογίζω',
|
||||
'City' => 'Πόλη',
|
||||
'Class' => 'Τάξη',
|
||||
'Client' => 'Πελάτης',
|
||||
'ClientID' => 'ταυτότητα πελάτη',
|
||||
'ClientName' => 'Όνομα Πελάτη',
|
||||
'Clients' => 'Πελάτες',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Επιβεβαίωση',
|
||||
'CoreData' => 'Βασικά δεδομένα',
|
||||
'Country' => 'Χώρα',
|
||||
'Created' => 'Δημιουργήθηκε',
|
||||
'Creator' => 'Δημιουργός',
|
||||
'CreditNote' => 'Πιστωτικό σημείωμα',
|
||||
'Current' => '',
|
||||
'DSO' => 'ΔΣΟ',
|
||||
'Date' => 'Ημερομηνία',
|
||||
'DefaultInternational' => 'Προεπιλογή Διεθνής',
|
||||
'DefaultNational' => 'Προεπιλεγμένος Εθνικός',
|
||||
'Delivery' => 'Διανομή',
|
||||
'DeliveryNote' => 'Δελτίο παράδοσης',
|
||||
'Description' => 'Περιγραφή',
|
||||
'Discount' => 'Εκπτωση',
|
||||
'DiscountP' => 'Έκπτωση σε%',
|
||||
'Documentation' => 'Τεκμηρίωση',
|
||||
'Employee' => 'Υπάλληλος',
|
||||
'End' => '',
|
||||
'FAO' => 'Φλυαρία',
|
||||
'From' => 'Από',
|
||||
'Group' => 'Ομάδα',
|
||||
'Groups' => 'Ομάδες',
|
||||
'Highest' => 'Υψιστος',
|
||||
'Inactive' => 'Αδρανής',
|
||||
'Interval' => 'Διάστημα',
|
||||
'Invoice' => 'Τιμολόγιο',
|
||||
'Invoices' => 'Τιμολόγια',
|
||||
'IsDefault' => 'Είναι προεπιλογή;',
|
||||
'Language' => 'Γλώσσα',
|
||||
'Last' => 'τελευταίος',
|
||||
'Localization' => 'Εντοπισμός',
|
||||
'Loginname' => 'Ονομα σύνδεσης',
|
||||
'Matchcode' => 'Matchcode',
|
||||
'Media' => 'Μεσο ΜΑΖΙΚΗΣ ΕΝΗΜΕΡΩΣΗΣ',
|
||||
'MinPrice' => 'Ελάχιστη τιμή',
|
||||
'Name' => 'Ονομα',
|
||||
'Name1' => 'Όνομα 1',
|
||||
'Name2' => 'Όνομα 2',
|
||||
'Name3' => 'Όνομα 3',
|
||||
'Offer' => 'Προσφορά',
|
||||
'Order' => 'Σειρά',
|
||||
'Ordered' => 'Διέταξε',
|
||||
'OrderedBy' => 'Παραγγέλθηκε από',
|
||||
'Orders' => 'Εντολές',
|
||||
'Payment' => 'Πληρωμή',
|
||||
'Price' => 'Τιμή',
|
||||
'Priority' => 'Προτεραιότητα',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Ποσότητα',
|
||||
'Receipt' => 'Παραλαβή',
|
||||
'Reference' => 'Αναφορά',
|
||||
'Sales' => 'Εκπτώσεις',
|
||||
'Settings' => 'Ρυθμίσεις',
|
||||
'Single' => 'Μονόκλινο',
|
||||
'Start' => '',
|
||||
'State' => 'κατάσταση',
|
||||
'Statistics' => 'Στατιστική',
|
||||
'Status' => 'Κατάσταση',
|
||||
'Stock' => 'Στοκ',
|
||||
'Street' => 'Δρόμος',
|
||||
'Subgroup' => 'Υποομάδα',
|
||||
'Tax' => 'Φόρος',
|
||||
'Terms' => 'Οροι',
|
||||
'To' => 'Προς το',
|
||||
'TopArticles' => 'Κορυφαία άρθρα',
|
||||
'Trend' => 'Τάση',
|
||||
'Turnover' => 'Τζίρος',
|
||||
'Type' => 'Τύπος',
|
||||
'ZipCode' => 'Ταχυδρομικός κώδικας',
|
||||
]];
|
||||
|
|
@ -102,5 +102,10 @@ return ['Finance' => [
|
|||
'Trend' => 'Trend',
|
||||
'Turnover' => 'Turnover',
|
||||
'Type' => 'Type',
|
||||
'ZipCode' => 'ZipCode',
|
||||
'ZipCode' => 'Zip Code',
|
||||
'TaxCodes' => 'Tax Codes',
|
||||
'TaxCode' => 'Tax Code',
|
||||
'Purchase' => 'Purchase',
|
||||
'Tax1Account' => 'Tax Account 1',
|
||||
'Tax2Account' => 'Tax Account 2',
|
||||
]];
|
||||
|
|
|
|||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Cuenta',
|
||||
'Active' => 'Activo',
|
||||
'Activity' => 'Actividad',
|
||||
'Address' => 'Habla a',
|
||||
'All' => 'Todo',
|
||||
'Amount' => 'Monto',
|
||||
'Analysis' => 'Análisis',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Área',
|
||||
'Article' => 'Artículo',
|
||||
'Articles' => 'Artículos',
|
||||
'Available' => 'Disponible',
|
||||
'Calculate' => 'Calcular',
|
||||
'City' => 'Ciudad',
|
||||
'Class' => 'Clase',
|
||||
'Client' => 'Cliente',
|
||||
'ClientID' => 'Identificación del cliente',
|
||||
'ClientName' => 'nombre del cliente',
|
||||
'Clients' => 'Clientela',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Confirmación',
|
||||
'CoreData' => 'Datos principales',
|
||||
'Country' => 'País',
|
||||
'Created' => 'Creado',
|
||||
'Creator' => 'Creador',
|
||||
'CreditNote' => 'Nota de crédito',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO',
|
||||
'Date' => 'Fecha',
|
||||
'DefaultInternational' => 'Internacional predeterminado',
|
||||
'DefaultNational' => 'Nacional predeterminado',
|
||||
'Delivery' => 'Entrega',
|
||||
'DeliveryNote' => 'Nota de entrega',
|
||||
'Description' => 'Descripción',
|
||||
'Discount' => 'Descuento',
|
||||
'DiscountP' => 'Descuento en%',
|
||||
'Documentation' => 'Documentación',
|
||||
'Employee' => 'Empleado',
|
||||
'End' => '',
|
||||
'FAO' => 'Fao',
|
||||
'From' => 'Desde',
|
||||
'Group' => 'Grupo',
|
||||
'Groups' => 'Grupo',
|
||||
'Highest' => 'Más alto',
|
||||
'Inactive' => 'Inactivo',
|
||||
'Interval' => 'Intervalo',
|
||||
'Invoice' => 'Factura',
|
||||
'Invoices' => 'Facturas',
|
||||
'IsDefault' => 'Es por defecto?',
|
||||
'Language' => 'Idioma',
|
||||
'Last' => 'Ultimo',
|
||||
'Localization' => 'Localización',
|
||||
'Loginname' => 'Nombre de inicio de sesión',
|
||||
'Matchcode' => 'Código de asociación',
|
||||
'Media' => 'Medios de comunicación',
|
||||
'MinPrice' => 'Precio mínimo',
|
||||
'Name' => 'Nombre',
|
||||
'Name1' => 'Nombre 1',
|
||||
'Name2' => 'Nombre 2',
|
||||
'Name3' => 'Nombre 3',
|
||||
'Offer' => 'Oferta',
|
||||
'Order' => 'Pedido',
|
||||
'Ordered' => 'Ordenado',
|
||||
'OrderedBy' => 'Ordenado por',
|
||||
'Orders' => 'Pedidos',
|
||||
'Payment' => 'Pago',
|
||||
'Price' => 'Precio',
|
||||
'Priority' => 'Prioridad',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Cantidad',
|
||||
'Receipt' => 'Recibo',
|
||||
'Reference' => 'Referencia',
|
||||
'Sales' => 'Ventas',
|
||||
'Settings' => 'Ajustes',
|
||||
'Single' => 'Único',
|
||||
'Start' => '',
|
||||
'State' => 'Expresar',
|
||||
'Statistics' => 'Estadísticas',
|
||||
'Status' => 'Estado',
|
||||
'Stock' => 'Valores',
|
||||
'Street' => 'calle',
|
||||
'Subgroup' => 'Subgrupo',
|
||||
'Tax' => 'Impuesto',
|
||||
'Terms' => 'Condiciones',
|
||||
'To' => 'A',
|
||||
'TopArticles' => 'Artículos principales',
|
||||
'Trend' => 'Tendencia',
|
||||
'Turnover' => 'Rotación',
|
||||
'Type' => 'Escribe',
|
||||
'ZipCode' => 'Código postal',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Tili',
|
||||
'Active' => 'Aktiivinen',
|
||||
'Activity' => 'Toiminta',
|
||||
'Address' => 'Osoite',
|
||||
'All' => 'Kaikki',
|
||||
'Amount' => 'Määrä',
|
||||
'Analysis' => 'Analyysi',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Alue',
|
||||
'Article' => 'Artikla',
|
||||
'Articles' => 'Artikkelit',
|
||||
'Available' => 'Saatavilla',
|
||||
'Calculate' => 'Laskea',
|
||||
'City' => 'Kaupunki',
|
||||
'Class' => 'Luokka',
|
||||
'Client' => 'Asiakas',
|
||||
'ClientID' => 'Asiakastunnus',
|
||||
'ClientName' => 'Asiakkaan Nimi',
|
||||
'Clients' => 'Asiakkaat',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Vahvistus',
|
||||
'CoreData' => 'Keskeiset tiedot',
|
||||
'Country' => 'Maa',
|
||||
'Created' => 'Luotu',
|
||||
'Creator' => 'Luoja',
|
||||
'CreditNote' => 'Luottoluotto',
|
||||
'Current' => '',
|
||||
'DSO' => 'Dso',
|
||||
'Date' => 'Päivämäärä',
|
||||
'DefaultInternational' => 'Oletus kansainvälinen',
|
||||
'DefaultNational' => 'Oletusarvoinen kansallinen',
|
||||
'Delivery' => 'Toimitus',
|
||||
'DeliveryNote' => 'Saapumisilmoitus',
|
||||
'Description' => 'Kuvaus',
|
||||
'Discount' => 'Alennus',
|
||||
'DiscountP' => 'Alennus%',
|
||||
'Documentation' => 'Dokumentointi',
|
||||
'Employee' => 'Työntekijä',
|
||||
'End' => '',
|
||||
'FAO' => 'Fao',
|
||||
'From' => 'Peräkkäin',
|
||||
'Group' => 'Ryhmä',
|
||||
'Groups' => 'Ryhmät',
|
||||
'Highest' => 'Korkein',
|
||||
'Inactive' => 'Epäaktiivinen',
|
||||
'Interval' => 'Aikaväli',
|
||||
'Invoice' => 'Lasku',
|
||||
'Invoices' => 'Laskut',
|
||||
'IsDefault' => 'On oletusarvo?',
|
||||
'Language' => 'Kieli',
|
||||
'Last' => 'Kestää',
|
||||
'Localization' => 'Lokalisointi',
|
||||
'Loginname' => 'Kirjautumisnimi',
|
||||
'Matchcode' => 'Matchcode',
|
||||
'Media' => 'Media',
|
||||
'MinPrice' => 'Min hinta',
|
||||
'Name' => 'Nimi',
|
||||
'Name1' => 'Nimi 1',
|
||||
'Name2' => 'Nimi 2',
|
||||
'Name3' => 'Nimi 3',
|
||||
'Offer' => 'Tarjous',
|
||||
'Order' => 'Tilaus',
|
||||
'Ordered' => 'Tilattu',
|
||||
'OrderedBy' => 'Tilaama',
|
||||
'Orders' => 'Tilaus',
|
||||
'Payment' => 'Maksu',
|
||||
'Price' => 'Hinta',
|
||||
'Priority' => 'Etusija',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Määrä',
|
||||
'Receipt' => 'Kuitti',
|
||||
'Reference' => 'Viite',
|
||||
'Sales' => 'Myynti',
|
||||
'Settings' => 'asetukset',
|
||||
'Single' => 'Yksittäinen',
|
||||
'Start' => '',
|
||||
'State' => 'Osavaltio',
|
||||
'Statistics' => 'Tilastot',
|
||||
'Status' => 'Tila',
|
||||
'Stock' => 'Varasto',
|
||||
'Street' => 'Katu',
|
||||
'Subgroup' => 'Alaryhmä',
|
||||
'Tax' => 'Verottaa',
|
||||
'Terms' => 'Ehdot',
|
||||
'To' => 'Jllek',
|
||||
'TopArticles' => 'Top artikkelit',
|
||||
'Trend' => 'Trendi',
|
||||
'Turnover' => 'Liikevaihto',
|
||||
'Type' => 'Tyyppi',
|
||||
'ZipCode' => 'Postinumero',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Compte',
|
||||
'Active' => 'actif',
|
||||
'Activity' => 'Activité',
|
||||
'Address' => 'Adresse',
|
||||
'All' => 'Tout',
|
||||
'Amount' => 'Quantité',
|
||||
'Analysis' => 'Analyse',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Zone',
|
||||
'Article' => 'Article',
|
||||
'Articles' => 'Des articles',
|
||||
'Available' => 'Disponible',
|
||||
'Calculate' => 'Calculer',
|
||||
'City' => 'Ville',
|
||||
'Class' => 'Classer',
|
||||
'Client' => 'Client',
|
||||
'ClientID' => 'identité du client',
|
||||
'ClientName' => 'Nom du client',
|
||||
'Clients' => 'Clients',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Confirmation',
|
||||
'CoreData' => 'Données de base',
|
||||
'Country' => 'Pays',
|
||||
'Created' => 'Établi',
|
||||
'Creator' => 'Créateur',
|
||||
'CreditNote' => 'Note de crédit',
|
||||
'Current' => '',
|
||||
'DSO' => 'Dso',
|
||||
'Date' => 'Date',
|
||||
'DefaultInternational' => 'International par défaut',
|
||||
'DefaultNational' => 'National par défaut',
|
||||
'Delivery' => 'Livraison',
|
||||
'DeliveryNote' => 'Bon de livraison',
|
||||
'Description' => 'La description',
|
||||
'Discount' => 'Remise',
|
||||
'DiscountP' => 'Rabais en%',
|
||||
'Documentation' => 'Documentation',
|
||||
'Employee' => 'Employé',
|
||||
'End' => '',
|
||||
'FAO' => 'Fao',
|
||||
'From' => 'À partir de',
|
||||
'Group' => 'Grouper',
|
||||
'Groups' => 'Groupes',
|
||||
'Highest' => 'Plus haut',
|
||||
'Inactive' => 'Inactif',
|
||||
'Interval' => 'Intervalle',
|
||||
'Invoice' => 'Facture d\'achat',
|
||||
'Invoices' => 'Factures',
|
||||
'IsDefault' => 'Est par défaut?',
|
||||
'Language' => 'Langue',
|
||||
'Last' => 'Dernier',
|
||||
'Localization' => 'Localisation',
|
||||
'Loginname' => 'Identifiant',
|
||||
'Matchcode' => 'Encadrement',
|
||||
'Media' => 'Médias',
|
||||
'MinPrice' => "Prix \u{200b}\u{200b}min",
|
||||
'Name' => 'Nom',
|
||||
'Name1' => 'Nom 1',
|
||||
'Name2' => 'Nom 2',
|
||||
'Name3' => 'Nom 3',
|
||||
'Offer' => 'Offrir',
|
||||
'Order' => 'Commander',
|
||||
'Ordered' => 'Commandé',
|
||||
'OrderedBy' => 'Commander par',
|
||||
'Orders' => 'Ordres',
|
||||
'Payment' => 'Paiement',
|
||||
'Price' => 'Prix',
|
||||
'Priority' => 'Priorité',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Quantité',
|
||||
'Receipt' => 'Reçu',
|
||||
'Reference' => 'Référence',
|
||||
'Sales' => 'Ventes',
|
||||
'Settings' => 'Réglages',
|
||||
'Single' => 'Seul',
|
||||
'Start' => '',
|
||||
'State' => 'État',
|
||||
'Statistics' => 'Statistiques',
|
||||
'Status' => 'Statut',
|
||||
'Stock' => 'Stocker',
|
||||
'Street' => 'rue',
|
||||
'Subgroup' => 'Sous-groupe',
|
||||
'Tax' => 'Impôt',
|
||||
'Terms' => 'termes',
|
||||
'To' => 'À',
|
||||
'TopArticles' => 'Top articles',
|
||||
'Trend' => 'Tendance',
|
||||
'Turnover' => 'Chiffre d\'affaires',
|
||||
'Type' => 'Taper',
|
||||
'ZipCode' => 'Code postal',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Számla',
|
||||
'Active' => 'Aktív',
|
||||
'Activity' => 'Tevékenység',
|
||||
'Address' => 'Cím',
|
||||
'All' => 'Minden',
|
||||
'Amount' => 'Összeg',
|
||||
'Analysis' => 'Elemzés',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Terület',
|
||||
'Article' => 'Cikk',
|
||||
'Articles' => 'Árucikkek',
|
||||
'Available' => 'Elérhető',
|
||||
'Calculate' => 'Kiszámítja',
|
||||
'City' => 'Város',
|
||||
'Class' => 'Osztály',
|
||||
'Client' => 'Ügyfél',
|
||||
'ClientID' => 'Ügyfélazonosító',
|
||||
'ClientName' => 'Ügyfél Neve',
|
||||
'Clients' => 'Kliensek',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Megerősítés',
|
||||
'CoreData' => 'Alapvető adatok',
|
||||
'Country' => 'Ország',
|
||||
'Created' => 'Létrehozott',
|
||||
'Creator' => 'Teremtő',
|
||||
'CreditNote' => 'Jóváírás',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO',
|
||||
'Date' => 'Dátum',
|
||||
'DefaultInternational' => 'Alapértelmezett nemzetközi',
|
||||
'DefaultNational' => 'Alapértelmezett nemzeti',
|
||||
'Delivery' => 'Szállítás',
|
||||
'DeliveryNote' => 'Fuvarlevél',
|
||||
'Description' => 'Leírás',
|
||||
'Discount' => 'Kedvezmény',
|
||||
'DiscountP' => 'Kedvezmény%',
|
||||
'Documentation' => 'Dokumentáció',
|
||||
'Employee' => 'Munkavállaló',
|
||||
'End' => '',
|
||||
'FAO' => 'FAO',
|
||||
'From' => 'Tól től',
|
||||
'Group' => 'Csoport',
|
||||
'Groups' => 'Csoportok',
|
||||
'Highest' => 'Legmagasabb',
|
||||
'Inactive' => 'Inaktív',
|
||||
'Interval' => 'Intervallum',
|
||||
'Invoice' => 'Számla',
|
||||
'Invoices' => 'Számlák',
|
||||
'IsDefault' => 'Alapértelmezett?',
|
||||
'Language' => 'Nyelv',
|
||||
'Last' => 'Utolsó',
|
||||
'Localization' => 'Lokalizáció',
|
||||
'Loginname' => 'Bejelentkezési név',
|
||||
'Matchcode' => 'Matchcode',
|
||||
'Media' => 'Média',
|
||||
'MinPrice' => 'Min Ár',
|
||||
'Name' => 'Név',
|
||||
'Name1' => 'NAME 1',
|
||||
'Name2' => 'NAME 2',
|
||||
'Name3' => 'Név 3',
|
||||
'Offer' => 'Ajánlat',
|
||||
'Order' => 'Rendelés',
|
||||
'Ordered' => 'Elrendelt',
|
||||
'OrderedBy' => 'Megrendelő',
|
||||
'Orders' => 'Megrendelések',
|
||||
'Payment' => 'Fizetés',
|
||||
'Price' => 'Ár',
|
||||
'Priority' => 'Kiemelten fontos',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Mennyiség',
|
||||
'Receipt' => 'Nyugta',
|
||||
'Reference' => 'Referencia',
|
||||
'Sales' => 'Értékesítés',
|
||||
'Settings' => 'Beállítások',
|
||||
'Single' => 'Egyetlen',
|
||||
'Start' => '',
|
||||
'State' => 'Állapot',
|
||||
'Statistics' => 'Statisztika',
|
||||
'Status' => 'Állapot',
|
||||
'Stock' => 'Készlet',
|
||||
'Street' => 'utca',
|
||||
'Subgroup' => 'Alcsoport',
|
||||
'Tax' => 'Adó',
|
||||
'Terms' => 'Feltételek',
|
||||
'To' => 'Nak nek',
|
||||
'TopArticles' => 'Top cikkek',
|
||||
'Trend' => 'Irányzat',
|
||||
'Turnover' => 'Forgalom',
|
||||
'Type' => 'típus',
|
||||
'ZipCode' => 'Irányítószám',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Account',
|
||||
'Active' => 'Attivo',
|
||||
'Activity' => 'Attività',
|
||||
'Address' => 'Indirizzo',
|
||||
'All' => 'Tutto',
|
||||
'Amount' => 'Quantità',
|
||||
'Analysis' => 'Analisi',
|
||||
'Analyze' => '',
|
||||
'Area' => 'La zona',
|
||||
'Article' => 'Articolo',
|
||||
'Articles' => 'Artificio',
|
||||
'Available' => 'A disposizione',
|
||||
'Calculate' => 'Calcolare',
|
||||
'City' => 'Città',
|
||||
'Class' => 'Classe',
|
||||
'Client' => 'Cliente',
|
||||
'ClientID' => 'Identificativo cliente',
|
||||
'ClientName' => 'nome del cliente',
|
||||
'Clients' => 'Clienti',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Conferma',
|
||||
'CoreData' => 'Dati principali',
|
||||
'Country' => 'Nazione',
|
||||
'Created' => 'Creato',
|
||||
'Creator' => 'Creatore',
|
||||
'CreditNote' => 'Nota di credito',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO.',
|
||||
'Date' => 'Data',
|
||||
'DefaultInternational' => 'Default International.',
|
||||
'DefaultNational' => 'National default.',
|
||||
'Delivery' => 'Consegna',
|
||||
'DeliveryNote' => 'Bolla d\'accompagnamento',
|
||||
'Description' => 'Descrizione',
|
||||
'Discount' => 'Sconto',
|
||||
'DiscountP' => 'Sconto in%',
|
||||
'Documentation' => 'Documentazione',
|
||||
'Employee' => 'Dipendente',
|
||||
'End' => '',
|
||||
'FAO' => 'FAO.',
|
||||
'From' => 'A partire dal',
|
||||
'Group' => 'Gruppo',
|
||||
'Groups' => 'Gruppi',
|
||||
'Highest' => 'Massimo',
|
||||
'Inactive' => 'Non attivo',
|
||||
'Interval' => 'Intervallo',
|
||||
'Invoice' => 'Fattura',
|
||||
'Invoices' => 'Fatture',
|
||||
'IsDefault' => 'È predefinito?',
|
||||
'Language' => 'Lingua',
|
||||
'Last' => 'Scorso',
|
||||
'Localization' => 'Localizzazione',
|
||||
'Loginname' => 'Nome di login',
|
||||
'Matchcode' => 'Matchcode.',
|
||||
'Media' => 'Media',
|
||||
'MinPrice' => 'Prezzo minimo',
|
||||
'Name' => 'Nome',
|
||||
'Name1' => 'Nome 1.',
|
||||
'Name2' => 'Nome 2.',
|
||||
'Name3' => 'Nome 3.',
|
||||
'Offer' => 'Offerta',
|
||||
'Order' => 'Ordine',
|
||||
'Ordered' => 'Ordinato',
|
||||
'OrderedBy' => 'Ordinato da',
|
||||
'Orders' => 'Ordini',
|
||||
'Payment' => 'Pagamento',
|
||||
'Price' => 'Prezzo',
|
||||
'Priority' => 'Priorità',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Quantità',
|
||||
'Receipt' => 'Ricevuta',
|
||||
'Reference' => 'Riferimento',
|
||||
'Sales' => 'Saldi',
|
||||
'Settings' => 'Impostazioni',
|
||||
'Single' => 'Separare',
|
||||
'Start' => '',
|
||||
'State' => 'Stato',
|
||||
'Statistics' => 'Statistiche',
|
||||
'Status' => 'Stato',
|
||||
'Stock' => 'Azione',
|
||||
'Street' => 'strada',
|
||||
'Subgroup' => 'Sottogruppo',
|
||||
'Tax' => 'Imposta',
|
||||
'Terms' => 'Termini',
|
||||
'To' => 'a',
|
||||
'TopArticles' => 'Articoli migliori',
|
||||
'Trend' => 'Tendenza',
|
||||
'Turnover' => 'Turnover',
|
||||
'Type' => 'Tipo',
|
||||
'ZipCode' => 'Cap',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'アカウント',
|
||||
'Active' => 'アクティブ',
|
||||
'Activity' => 'アクティビティ',
|
||||
'Address' => '住所',
|
||||
'All' => '全て',
|
||||
'Amount' => '額',
|
||||
'Analysis' => '分析',
|
||||
'Analyze' => '',
|
||||
'Area' => '領域',
|
||||
'Article' => '記事',
|
||||
'Articles' => 'articles',
|
||||
'Available' => '利用可能',
|
||||
'Calculate' => '計算する',
|
||||
'City' => '市',
|
||||
'Class' => 'クラス',
|
||||
'Client' => 'クライアント',
|
||||
'ClientID' => 'クライアントID',
|
||||
'ClientName' => 'クライアント名',
|
||||
'Clients' => 'クライアント',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => '確認',
|
||||
'CoreData' => 'コアデータ',
|
||||
'Country' => '国',
|
||||
'Created' => '作成した',
|
||||
'Creator' => 'クリエーター',
|
||||
'CreditNote' => 'クレジットノート',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO',
|
||||
'Date' => '日にち',
|
||||
'DefaultInternational' => 'デフォルトの国際',
|
||||
'DefaultNational' => 'デフォルトの国',
|
||||
'Delivery' => '配達',
|
||||
'DeliveryNote' => '配達メモ',
|
||||
'Description' => '説明',
|
||||
'Discount' => '割引',
|
||||
'DiscountP' => '割引%',
|
||||
'Documentation' => 'ドキュメンテーション',
|
||||
'Employee' => '従業員',
|
||||
'End' => '',
|
||||
'FAO' => 'fa fa',
|
||||
'From' => 'から',
|
||||
'Group' => 'グループ',
|
||||
'Groups' => '団体',
|
||||
'Highest' => '最高',
|
||||
'Inactive' => '非活性',
|
||||
'Interval' => '間隔',
|
||||
'Invoice' => '請求書',
|
||||
'Invoices' => '請求書',
|
||||
'IsDefault' => 'デフォルトですか?',
|
||||
'Language' => '言語',
|
||||
'Last' => '最後',
|
||||
'Localization' => 'ローカライズ',
|
||||
'Loginname' => 'ログイン名',
|
||||
'Matchcode' => 'マッチコード',
|
||||
'Media' => 'メディア',
|
||||
'MinPrice' => '最小価格',
|
||||
'Name' => '名前',
|
||||
'Name1' => '名前1',
|
||||
'Name2' => '名前2',
|
||||
'Name3' => '名前3',
|
||||
'Offer' => 'オファー',
|
||||
'Order' => '注文',
|
||||
'Ordered' => '順序付けられました',
|
||||
'OrderedBy' => 'によって順序付け',
|
||||
'Orders' => '命令',
|
||||
'Payment' => '支払い',
|
||||
'Price' => '価格',
|
||||
'Priority' => '優先度',
|
||||
'Profit' => '',
|
||||
'Quantity' => '量',
|
||||
'Receipt' => 'レシート',
|
||||
'Reference' => 'リファレンス',
|
||||
'Sales' => '売り返り',
|
||||
'Settings' => '設定',
|
||||
'Single' => '独身',
|
||||
'Start' => '',
|
||||
'State' => '州',
|
||||
'Statistics' => '統計学',
|
||||
'Status' => '状態',
|
||||
'Stock' => 'ストック',
|
||||
'Street' => '街',
|
||||
'Subgroup' => 'サブグループ',
|
||||
'Tax' => '税',
|
||||
'Terms' => '条項',
|
||||
'To' => 'に',
|
||||
'TopArticles' => 'トップ記事',
|
||||
'Trend' => '傾向',
|
||||
'Turnover' => 'ひっくり返す',
|
||||
'Type' => 'タイプ',
|
||||
'ZipCode' => '郵便番号',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => '계정',
|
||||
'Active' => '활동적인',
|
||||
'Activity' => '활동',
|
||||
'Address' => '주소',
|
||||
'All' => '모두',
|
||||
'Amount' => '양',
|
||||
'Analysis' => '분석',
|
||||
'Analyze' => '',
|
||||
'Area' => '지역',
|
||||
'Article' => '기사',
|
||||
'Articles' => '조항',
|
||||
'Available' => '사용 가능',
|
||||
'Calculate' => '계산하다',
|
||||
'City' => '도시',
|
||||
'Class' => '등급',
|
||||
'Client' => '고객',
|
||||
'ClientID' => '클라이언트 ID.',
|
||||
'ClientName' => '고객 이름',
|
||||
'Clients' => '클라이언트',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => '확인',
|
||||
'CoreData' => '핵심 데이터',
|
||||
'Country' => '국가',
|
||||
'Created' => '만들어진',
|
||||
'Creator' => '창조자',
|
||||
'CreditNote' => '신용 노트',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO.',
|
||||
'Date' => '날짜',
|
||||
'DefaultInternational' => '기본 국제',
|
||||
'DefaultNational' => '기본 내셔널',
|
||||
'Delivery' => '배달',
|
||||
'DeliveryNote' => '배달 메모',
|
||||
'Description' => '설명',
|
||||
'Discount' => '할인',
|
||||
'DiscountP' => '할인 %',
|
||||
'Documentation' => '선적 서류 비치',
|
||||
'Employee' => '직원',
|
||||
'End' => '',
|
||||
'FAO' => '조금',
|
||||
'From' => '에서',
|
||||
'Group' => '그룹',
|
||||
'Groups' => '여러 떼',
|
||||
'Highest' => '제일 높은',
|
||||
'Inactive' => '비활성으로',
|
||||
'Interval' => '간격',
|
||||
'Invoice' => '송장',
|
||||
'Invoices' => '송장',
|
||||
'IsDefault' => '기본값은 무엇입니까?',
|
||||
'Language' => '언어',
|
||||
'Last' => '마지막',
|
||||
'Localization' => '현지화',
|
||||
'Loginname' => '로그인 이름',
|
||||
'Matchcode' => '매치 코드',
|
||||
'Media' => '미디어',
|
||||
'MinPrice' => '최소 가격',
|
||||
'Name' => '이름',
|
||||
'Name1' => '이름 1',
|
||||
'Name2' => '이름 2',
|
||||
'Name3' => '이름 3.',
|
||||
'Offer' => '권하다',
|
||||
'Order' => '주문하다',
|
||||
'Ordered' => '주문했다',
|
||||
'OrderedBy' => '명령을 받았다',
|
||||
'Orders' => '명령',
|
||||
'Payment' => '지불',
|
||||
'Price' => '가격',
|
||||
'Priority' => '우선 사항',
|
||||
'Profit' => '',
|
||||
'Quantity' => '수량',
|
||||
'Receipt' => '영수증',
|
||||
'Reference' => '참조',
|
||||
'Sales' => '매상',
|
||||
'Settings' => '설정',
|
||||
'Single' => '하나의',
|
||||
'Start' => '',
|
||||
'State' => '상태',
|
||||
'Statistics' => '통계',
|
||||
'Status' => '상태',
|
||||
'Stock' => '재고',
|
||||
'Street' => '거리',
|
||||
'Subgroup' => '하급 집단',
|
||||
'Tax' => '세',
|
||||
'Terms' => '자귀',
|
||||
'To' => '에게',
|
||||
'TopArticles' => '최고 기사',
|
||||
'Trend' => '경향',
|
||||
'Turnover' => '회전율',
|
||||
'Type' => '유형',
|
||||
'ZipCode' => '우편 번호',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Regnskap',
|
||||
'Active' => 'Aktiv',
|
||||
'Activity' => 'Aktivitet',
|
||||
'Address' => 'Adresse',
|
||||
'All' => 'Alle',
|
||||
'Amount' => 'Beløp',
|
||||
'Analysis' => 'Analyse',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Område',
|
||||
'Article' => 'Artikkel',
|
||||
'Articles' => 'Artikler',
|
||||
'Available' => 'Tilgjengelig',
|
||||
'Calculate' => 'Regne ut',
|
||||
'City' => 'By',
|
||||
'Class' => 'Klasse',
|
||||
'Client' => 'Klient',
|
||||
'ClientID' => 'klient-ID',
|
||||
'ClientName' => 'Klientens navn',
|
||||
'Clients' => 'Klienter',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Bekreftelse',
|
||||
'CoreData' => 'Kjernedata',
|
||||
'Country' => 'Land',
|
||||
'Created' => 'Opprettet',
|
||||
'Creator' => 'Skaperen.',
|
||||
'CreditNote' => 'Kredittnota',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO',
|
||||
'Date' => 'Dato',
|
||||
'DefaultInternational' => 'Standard internasjonal',
|
||||
'DefaultNational' => 'Standard nasjonal',
|
||||
'Delivery' => 'Leveranse',
|
||||
'DeliveryNote' => 'Leveringsnotat',
|
||||
'Description' => 'Beskrivelse',
|
||||
'Discount' => 'Rabatt',
|
||||
'DiscountP' => 'Rabatt i%',
|
||||
'Documentation' => 'Dokumentasjon',
|
||||
'Employee' => 'Ansatt',
|
||||
'End' => '',
|
||||
'FAO' => 'FAO.',
|
||||
'From' => 'Fra',
|
||||
'Group' => 'Gruppe',
|
||||
'Groups' => 'Grupper',
|
||||
'Highest' => 'Høyeste',
|
||||
'Inactive' => 'Inaktiv',
|
||||
'Interval' => 'Intervall',
|
||||
'Invoice' => 'Faktura',
|
||||
'Invoices' => 'Fakturaer',
|
||||
'IsDefault' => 'Er standard?',
|
||||
'Language' => 'Språk',
|
||||
'Last' => 'Siste',
|
||||
'Localization' => 'Lokalisering',
|
||||
'Loginname' => 'Påloggingsnavn',
|
||||
'Matchcode' => 'MatchCode.',
|
||||
'Media' => 'Media',
|
||||
'MinPrice' => 'Min pris',
|
||||
'Name' => 'Navn',
|
||||
'Name1' => 'Navn 1',
|
||||
'Name2' => 'Navn 2.',
|
||||
'Name3' => 'Navn 3.',
|
||||
'Offer' => 'By på',
|
||||
'Order' => 'Rekkefølge',
|
||||
'Ordered' => 'Bestilt',
|
||||
'OrderedBy' => 'Bestilt av.',
|
||||
'Orders' => 'Bestillinger',
|
||||
'Payment' => 'innbetaling',
|
||||
'Price' => 'Pris',
|
||||
'Priority' => 'Prioritet',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Mengde',
|
||||
'Receipt' => 'Kvittering',
|
||||
'Reference' => 'Referanse',
|
||||
'Sales' => 'Salg',
|
||||
'Settings' => 'Innstillinger',
|
||||
'Single' => 'Enkelt',
|
||||
'Start' => '',
|
||||
'State' => 'Stat',
|
||||
'Statistics' => 'Statistikk',
|
||||
'Status' => 'Status',
|
||||
'Stock' => 'Lager',
|
||||
'Street' => 'gate',
|
||||
'Subgroup' => 'Undergruppe',
|
||||
'Tax' => 'Avgift',
|
||||
'Terms' => 'Vilkårene',
|
||||
'To' => 'Til',
|
||||
'TopArticles' => 'Toppartikler',
|
||||
'Trend' => 'Trend',
|
||||
'Turnover' => 'Omsetning',
|
||||
'Type' => 'Type',
|
||||
'ZipCode' => 'Post kode',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Rachunek',
|
||||
'Active' => 'Aktywny',
|
||||
'Activity' => 'Czynność',
|
||||
'Address' => 'Adres',
|
||||
'All' => 'Wszystkie',
|
||||
'Amount' => 'Kwota',
|
||||
'Analysis' => 'Analiza',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Powierzchnia',
|
||||
'Article' => 'Artykuł',
|
||||
'Articles' => 'Artykuły',
|
||||
'Available' => 'Dostępny',
|
||||
'Calculate' => 'Oblicz',
|
||||
'City' => 'Miasto',
|
||||
'Class' => 'Klasa',
|
||||
'Client' => 'Klient',
|
||||
'ClientID' => 'Identyfikator klienta',
|
||||
'ClientName' => 'Nazwa klienta',
|
||||
'Clients' => 'Klienci.',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Potwierdzenie',
|
||||
'CoreData' => 'Podstawowe dane',
|
||||
'Country' => 'Kraj',
|
||||
'Created' => 'Utworzony',
|
||||
'Creator' => 'Twórca',
|
||||
'CreditNote' => 'Uwaga kredytowa',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO.',
|
||||
'Date' => 'Data',
|
||||
'DefaultInternational' => 'Domyślny międzynarodowy',
|
||||
'DefaultNational' => 'Domyślny National.',
|
||||
'Delivery' => 'Dostawa',
|
||||
'DeliveryNote' => 'Dowód dostawy',
|
||||
'Description' => 'Opis',
|
||||
'Discount' => 'Zniżka',
|
||||
'DiscountP' => 'Zniżka w%',
|
||||
'Documentation' => 'Dokumentacja',
|
||||
'Employee' => 'Pracownik',
|
||||
'End' => '',
|
||||
'FAO' => 'Fao.',
|
||||
'From' => 'Z',
|
||||
'Group' => 'Grupa',
|
||||
'Groups' => 'Grupy',
|
||||
'Highest' => 'Najwyższy',
|
||||
'Inactive' => 'Nieaktywny',
|
||||
'Interval' => 'Interwał',
|
||||
'Invoice' => 'Faktura',
|
||||
'Invoices' => 'Faktury',
|
||||
'IsDefault' => 'Jest domyślnie?',
|
||||
'Language' => 'Język',
|
||||
'Last' => 'Ostatni, ubiegły, zeszły',
|
||||
'Localization' => 'Lokalizacja',
|
||||
'Loginname' => 'Nazwa użytkownika',
|
||||
'Matchcode' => 'MatchCode.',
|
||||
'Media' => 'Głoska bezdźwięczna',
|
||||
'MinPrice' => 'Cena min',
|
||||
'Name' => 'Nazwa',
|
||||
'Name1' => 'Nazwa 1.',
|
||||
'Name2' => 'Nazwa 2.',
|
||||
'Name3' => 'Nazwa 3.',
|
||||
'Offer' => 'Oferta',
|
||||
'Order' => 'Zamówienie',
|
||||
'Ordered' => 'Uporządkowany',
|
||||
'OrderedBy' => 'Zamówiony przez',
|
||||
'Orders' => 'Zamówienia',
|
||||
'Payment' => 'Zapłata',
|
||||
'Price' => 'Cena £',
|
||||
'Priority' => 'Priorytet',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Ilość',
|
||||
'Receipt' => 'Paragon fiskalny',
|
||||
'Reference' => 'Odniesienie',
|
||||
'Sales' => 'Obroty',
|
||||
'Settings' => 'Ustawienia',
|
||||
'Single' => 'Pojedynczy',
|
||||
'Start' => '',
|
||||
'State' => 'Państwo',
|
||||
'Statistics' => 'Statystyka',
|
||||
'Status' => 'Status',
|
||||
'Stock' => 'Magazyn',
|
||||
'Street' => 'Ulica',
|
||||
'Subgroup' => 'Podgrupa',
|
||||
'Tax' => 'Podatek',
|
||||
'Terms' => 'Semestry',
|
||||
'To' => 'Do',
|
||||
'TopArticles' => 'Najlepsze artykuły',
|
||||
'Trend' => 'Tendencja',
|
||||
'Turnover' => 'Obrót',
|
||||
'Type' => 'Rodzaj',
|
||||
'ZipCode' => 'Kod pocztowy',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Conta',
|
||||
'Active' => 'Ativo',
|
||||
'Activity' => 'Atividade',
|
||||
'Address' => 'Endereço',
|
||||
'All' => 'Tudo',
|
||||
'Amount' => 'Montante',
|
||||
'Analysis' => 'Análise',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Área',
|
||||
'Article' => 'Artigo',
|
||||
'Articles' => 'Artigos',
|
||||
'Available' => 'Disponível',
|
||||
'Calculate' => 'Calcular',
|
||||
'City' => 'Cidade',
|
||||
'Class' => 'Classe',
|
||||
'Client' => 'Cliente',
|
||||
'ClientID' => 'ID do Cliente',
|
||||
'ClientName' => 'Nome do cliente',
|
||||
'Clients' => 'Clientes',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Confirmação',
|
||||
'CoreData' => 'Dados principais',
|
||||
'Country' => 'País',
|
||||
'Created' => 'Criado',
|
||||
'Creator' => 'O Criador',
|
||||
'CreditNote' => 'Nota de crédito',
|
||||
'Current' => '',
|
||||
'DSO' => 'Dso.',
|
||||
'Date' => 'Encontro',
|
||||
'DefaultInternational' => 'Padrão Internacional',
|
||||
'DefaultNational' => 'Nacional padrão',
|
||||
'Delivery' => 'Entrega',
|
||||
'DeliveryNote' => 'Nota de entrega',
|
||||
'Description' => 'Descrição',
|
||||
'Discount' => 'Desconto',
|
||||
'DiscountP' => 'Desconto em%',
|
||||
'Documentation' => 'Documentação',
|
||||
'Employee' => 'Funcionário',
|
||||
'End' => '',
|
||||
'FAO' => 'FAO.',
|
||||
'From' => 'A partir de',
|
||||
'Group' => 'Grupo',
|
||||
'Groups' => 'Grupos',
|
||||
'Highest' => 'Altíssima',
|
||||
'Inactive' => 'Inativo',
|
||||
'Interval' => 'Intervalo',
|
||||
'Invoice' => 'Fatura',
|
||||
'Invoices' => 'Faturas',
|
||||
'IsDefault' => 'É padrão?',
|
||||
'Language' => 'Língua',
|
||||
'Last' => 'Durar',
|
||||
'Localization' => 'Localização',
|
||||
'Loginname' => 'Nome de acesso',
|
||||
'Matchcode' => 'Código de combinação',
|
||||
'Media' => 'meios de comunicação',
|
||||
'MinPrice' => 'Preço mínimo',
|
||||
'Name' => 'Nome',
|
||||
'Name1' => 'Nome 1.',
|
||||
'Name2' => 'Nome 2.',
|
||||
'Name3' => 'Nome 3.',
|
||||
'Offer' => 'Oferta',
|
||||
'Order' => 'Pedido',
|
||||
'Ordered' => 'Encomendado',
|
||||
'OrderedBy' => 'Ordenado por',
|
||||
'Orders' => 'Pedidos',
|
||||
'Payment' => 'Pagamento',
|
||||
'Price' => 'Preço',
|
||||
'Priority' => 'Prioridade',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Quantidade',
|
||||
'Receipt' => 'Recibo',
|
||||
'Reference' => 'Referência',
|
||||
'Sales' => 'Vendas',
|
||||
'Settings' => 'Configurações',
|
||||
'Single' => 'Solteiro',
|
||||
'Start' => '',
|
||||
'State' => 'Estado',
|
||||
'Statistics' => 'Estatisticas',
|
||||
'Status' => 'Status',
|
||||
'Stock' => 'Estoque',
|
||||
'Street' => 'rua',
|
||||
'Subgroup' => 'Subgrupo',
|
||||
'Tax' => 'Imposto',
|
||||
'Terms' => 'Termos.',
|
||||
'To' => 'Para',
|
||||
'TopArticles' => 'Artigos de topo',
|
||||
'Trend' => 'Tendência',
|
||||
'Turnover' => 'Volume de negócios',
|
||||
'Type' => 'Modelo',
|
||||
'ZipCode' => 'CEP',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Счет',
|
||||
'Active' => 'Активный',
|
||||
'Activity' => 'Мероприятия',
|
||||
'Address' => 'Адрес',
|
||||
'All' => 'Все',
|
||||
'Amount' => 'Количество',
|
||||
'Analysis' => 'Анализ',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Площадь',
|
||||
'Article' => 'Статья',
|
||||
'Articles' => 'Статьи',
|
||||
'Available' => 'Доступный',
|
||||
'Calculate' => 'Рассчитать',
|
||||
'City' => 'Город',
|
||||
'Class' => 'Класс',
|
||||
'Client' => 'Клиент',
|
||||
'ClientID' => 'ID клиента',
|
||||
'ClientName' => 'имя клиента',
|
||||
'Clients' => 'Клиенты',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Подтверждение',
|
||||
'CoreData' => 'Основные данные',
|
||||
'Country' => 'Страна',
|
||||
'Created' => 'Созданный',
|
||||
'Creator' => 'Создатель',
|
||||
'CreditNote' => 'Кредитная нота',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO',
|
||||
'Date' => 'Дата',
|
||||
'DefaultInternational' => 'Default International',
|
||||
'DefaultNational' => 'Национальный по умолчанию',
|
||||
'Delivery' => 'Доставка',
|
||||
'DeliveryNote' => 'Накладная',
|
||||
'Description' => 'Описание',
|
||||
'Discount' => 'Скидка',
|
||||
'DiscountP' => 'Скидка в%',
|
||||
'Documentation' => 'Документация',
|
||||
'Employee' => 'Наемный рабочий',
|
||||
'End' => '',
|
||||
'FAO' => 'ФАО',
|
||||
'From' => 'От',
|
||||
'Group' => 'Группа',
|
||||
'Groups' => 'Группы',
|
||||
'Highest' => 'Наибольший',
|
||||
'Inactive' => 'Неактивный',
|
||||
'Interval' => 'Интервал',
|
||||
'Invoice' => 'Счет',
|
||||
'Invoices' => 'Счета',
|
||||
'IsDefault' => 'По умолчанию?',
|
||||
'Language' => 'Язык',
|
||||
'Last' => 'Последний',
|
||||
'Localization' => 'Локализация',
|
||||
'Loginname' => 'Логин',
|
||||
'Matchcode' => 'MatchCode.',
|
||||
'Media' => 'Средства массовой информации',
|
||||
'MinPrice' => 'Мин цена',
|
||||
'Name' => 'Имя',
|
||||
'Name1' => 'Имя 1.',
|
||||
'Name2' => 'Имя 2.',
|
||||
'Name3' => 'Имя 3.',
|
||||
'Offer' => 'Предложение',
|
||||
'Order' => 'Заказ',
|
||||
'Ordered' => 'Заказал',
|
||||
'OrderedBy' => 'Заказан',
|
||||
'Orders' => 'Заказывает',
|
||||
'Payment' => 'Оплата',
|
||||
'Price' => 'Цена',
|
||||
'Priority' => 'Приоритет',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Количество',
|
||||
'Receipt' => 'Квитанция',
|
||||
'Reference' => 'Ссылка',
|
||||
'Sales' => 'Продажи',
|
||||
'Settings' => 'Настройки',
|
||||
'Single' => 'Одинокий',
|
||||
'Start' => '',
|
||||
'State' => 'Состояние',
|
||||
'Statistics' => 'Статистика',
|
||||
'Status' => 'Статус',
|
||||
'Stock' => 'Склад',
|
||||
'Street' => 'улица',
|
||||
'Subgroup' => 'Подгруппа',
|
||||
'Tax' => 'Налог',
|
||||
'Terms' => 'Условия',
|
||||
'To' => 'К',
|
||||
'TopArticles' => 'Лучшие статьи',
|
||||
'Trend' => 'Тренд',
|
||||
'Turnover' => 'Оборот',
|
||||
'Type' => 'Тип',
|
||||
'ZipCode' => 'Почтовый Индекс',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'konto',
|
||||
'Active' => 'Aktiva',
|
||||
'Activity' => 'Aktivitet',
|
||||
'Address' => 'Adress',
|
||||
'All' => 'Allt',
|
||||
'Amount' => 'Belopp',
|
||||
'Analysis' => 'Analys',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Område',
|
||||
'Article' => 'Artikel',
|
||||
'Articles' => 'Artiklar',
|
||||
'Available' => 'Tillgängligt',
|
||||
'Calculate' => 'Beräkna',
|
||||
'City' => 'Stad',
|
||||
'Class' => 'Klass',
|
||||
'Client' => 'Klient',
|
||||
'ClientID' => 'Klient ID',
|
||||
'ClientName' => 'Kundnamn',
|
||||
'Clients' => 'Klienter',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Bekräftelse',
|
||||
'CoreData' => 'Kärndata',
|
||||
'Country' => 'Land',
|
||||
'Created' => 'Skapad',
|
||||
'Creator' => 'Skapare',
|
||||
'CreditNote' => 'Kreditanteckning',
|
||||
'Current' => '',
|
||||
'DSO' => 'Do',
|
||||
'Date' => 'Datum',
|
||||
'DefaultInternational' => 'Standard International',
|
||||
'DefaultNational' => 'Standard nationell',
|
||||
'Delivery' => 'Leverans',
|
||||
'DeliveryNote' => 'Leveransanteckning',
|
||||
'Description' => 'Beskrivning',
|
||||
'Discount' => 'Rabatt',
|
||||
'DiscountP' => 'Rabatt i%',
|
||||
'Documentation' => 'Dokumentation',
|
||||
'Employee' => 'Anställd',
|
||||
'End' => '',
|
||||
'FAO' => 'Fao',
|
||||
'From' => 'Från',
|
||||
'Group' => 'Grupp',
|
||||
'Groups' => 'Grupp',
|
||||
'Highest' => 'Högsta',
|
||||
'Inactive' => 'Inaktiv',
|
||||
'Interval' => 'Intervall',
|
||||
'Invoice' => 'Faktura',
|
||||
'Invoices' => 'Fakturor',
|
||||
'IsDefault' => 'Är standard?',
|
||||
'Language' => 'Språk',
|
||||
'Last' => 'Sista',
|
||||
'Localization' => 'Lokalisering',
|
||||
'Loginname' => 'Inloggningsnamn',
|
||||
'Matchcode' => 'Matchcode',
|
||||
'Media' => 'Media',
|
||||
'MinPrice' => 'Min pris',
|
||||
'Name' => 'namn',
|
||||
'Name1' => 'Namn 1',
|
||||
'Name2' => 'Namn 2',
|
||||
'Name3' => 'Namn 3',
|
||||
'Offer' => 'Erbjudande',
|
||||
'Order' => 'Beställa',
|
||||
'Ordered' => 'Beställde',
|
||||
'OrderedBy' => 'Beställd av',
|
||||
'Orders' => 'Order',
|
||||
'Payment' => 'Betalning',
|
||||
'Price' => 'Pris',
|
||||
'Priority' => 'Prioritet',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Kvantitet',
|
||||
'Receipt' => 'Mottagande',
|
||||
'Reference' => 'Referens',
|
||||
'Sales' => 'Försäljning',
|
||||
'Settings' => 'inställningar',
|
||||
'Single' => 'Enda',
|
||||
'Start' => '',
|
||||
'State' => 'stat',
|
||||
'Statistics' => 'Statistik',
|
||||
'Status' => 'Status',
|
||||
'Stock' => 'Stock',
|
||||
'Street' => 'Gata',
|
||||
'Subgroup' => 'Undergrupp',
|
||||
'Tax' => 'Beskatta',
|
||||
'Terms' => 'Villkor',
|
||||
'To' => 'Till',
|
||||
'TopArticles' => 'Toppartiklar',
|
||||
'Trend' => 'Trend',
|
||||
'Turnover' => 'Omsättning',
|
||||
'Type' => 'Typ',
|
||||
'ZipCode' => 'Postnummer',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'บัญชี',
|
||||
'Active' => 'คล่องแคล่ว',
|
||||
'Activity' => 'กิจกรรม',
|
||||
'Address' => 'ที่อยู่',
|
||||
'All' => 'ทั้งหมด',
|
||||
'Amount' => 'จำนวน',
|
||||
'Analysis' => 'การวิเคราะห์',
|
||||
'Analyze' => '',
|
||||
'Area' => 'พื้นที่',
|
||||
'Article' => 'บทความ',
|
||||
'Articles' => 'บทความ',
|
||||
'Available' => 'มีอยู่',
|
||||
'Calculate' => 'คำนวณ',
|
||||
'City' => 'เมือง',
|
||||
'Class' => 'ระดับ',
|
||||
'Client' => 'ลูกค้า',
|
||||
'ClientID' => 'รหัสลูกค้า',
|
||||
'ClientName' => 'ชื่อลูกค้า',
|
||||
'Clients' => 'ลูกค้า',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'การยืนยัน',
|
||||
'CoreData' => 'ข้อมูลหลัก',
|
||||
'Country' => 'ประเทศ',
|
||||
'Created' => 'สร้าง',
|
||||
'Creator' => 'ผู้สร้าง',
|
||||
'CreditNote' => 'ใบลดหนี้',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO',
|
||||
'Date' => 'วันที่',
|
||||
'DefaultInternational' => 'เริ่มต้นระหว่างประเทศ',
|
||||
'DefaultNational' => 'เริ่มต้นชาติ',
|
||||
'Delivery' => 'จัดส่ง',
|
||||
'DeliveryNote' => 'บันทึกการส่งมอบ',
|
||||
'Description' => 'คำอธิบาย',
|
||||
'Discount' => 'การลดราคา',
|
||||
'DiscountP' => 'ส่วนลดใน%',
|
||||
'Documentation' => 'เอกสาร',
|
||||
'Employee' => 'พนักงาน',
|
||||
'End' => '',
|
||||
'FAO' => 'คน',
|
||||
'From' => 'จาก',
|
||||
'Group' => 'กลุ่ม',
|
||||
'Groups' => 'กลุ่ม',
|
||||
'Highest' => 'สูงที่สุด',
|
||||
'Inactive' => 'ไม่ใช้งาน',
|
||||
'Interval' => 'ช่วงเวลา',
|
||||
'Invoice' => 'ใบแจ้งหนี้',
|
||||
'Invoices' => 'ใบแจ้งหนี้',
|
||||
'IsDefault' => 'เป็นค่าเริ่มต้น?',
|
||||
'Language' => 'ภาษา',
|
||||
'Last' => 'ล่าสุด',
|
||||
'Localization' => 'การแปล',
|
||||
'Loginname' => 'ชื่อเข้าสู่ระบบ',
|
||||
'Matchcode' => 'การจับคู่',
|
||||
'Media' => 'สื่อ',
|
||||
'MinPrice' => 'นาทีราคา',
|
||||
'Name' => 'ชื่อ',
|
||||
'Name1' => 'ชื่อ 1',
|
||||
'Name2' => 'ชื่อ 2',
|
||||
'Name3' => 'ชื่อ 3',
|
||||
'Offer' => 'เสนอ',
|
||||
'Order' => 'คำสั่ง',
|
||||
'Ordered' => 'ที่ได้รับคำสั่ง',
|
||||
'OrderedBy' => 'ได้รับคำสั่งจาก',
|
||||
'Orders' => 'คำสั่งซื้อ',
|
||||
'Payment' => 'การชำระเงิน',
|
||||
'Price' => 'ราคา',
|
||||
'Priority' => 'ลำดับความสำคัญ',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'ปริมาณ',
|
||||
'Receipt' => 'ใบเสร็จ',
|
||||
'Reference' => 'อ้างอิง',
|
||||
'Sales' => 'ฝ่ายขาย',
|
||||
'Settings' => 'การตั้งค่า',
|
||||
'Single' => 'เดี่ยว',
|
||||
'Start' => '',
|
||||
'State' => 'สถานะ',
|
||||
'Statistics' => 'สถิติ',
|
||||
'Status' => 'สถานะ',
|
||||
'Stock' => 'คลังสินค้า',
|
||||
'Street' => 'ถนน',
|
||||
'Subgroup' => 'กลุ่มย่อย',
|
||||
'Tax' => 'ภาษี',
|
||||
'Terms' => 'เงื่อนไข',
|
||||
'To' => 'ถึง',
|
||||
'TopArticles' => 'บทความยอดนิยม',
|
||||
'Trend' => 'แนวโน้ม',
|
||||
'Turnover' => 'การหมุนเวียน',
|
||||
'Type' => 'พิมพ์',
|
||||
'ZipCode' => 'รหัสไปรษณีย์',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Hesap',
|
||||
'Active' => 'Aktif',
|
||||
'Activity' => 'Aktivite',
|
||||
'Address' => 'Adres',
|
||||
'All' => 'Herşey',
|
||||
'Amount' => 'Miktar',
|
||||
'Analysis' => 'Analiz',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Alan',
|
||||
'Article' => 'Madde',
|
||||
'Articles' => 'Nesne',
|
||||
'Available' => 'Mevcut',
|
||||
'Calculate' => 'Hesaplamak',
|
||||
'City' => 'Şehir',
|
||||
'Class' => 'Sınıf',
|
||||
'Client' => 'Müşteri',
|
||||
'ClientID' => 'Müşteri Kimliği',
|
||||
'ClientName' => 'Müşteri Adı',
|
||||
'Clients' => 'Müşteriler',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Onayla',
|
||||
'CoreData' => 'Temel veri',
|
||||
'Country' => 'Ülke',
|
||||
'Created' => 'Yaratılmış',
|
||||
'Creator' => 'Yaratıcı',
|
||||
'CreditNote' => 'Kredi notu',
|
||||
'Current' => '',
|
||||
'DSO' => 'Dso',
|
||||
'Date' => 'Tarih',
|
||||
'DefaultInternational' => 'Varsayılan Uluslararası',
|
||||
'DefaultNational' => 'Varsayılan ulusal',
|
||||
'Delivery' => 'Teslimat',
|
||||
'DeliveryNote' => 'Teslimat notu',
|
||||
'Description' => 'Açıklama',
|
||||
'Discount' => 'İndirim',
|
||||
'DiscountP' => '% İndirim',
|
||||
'Documentation' => 'Belgeler',
|
||||
'Employee' => 'Çalışan',
|
||||
'End' => '',
|
||||
'FAO' => 'FAO',
|
||||
'From' => 'İtibaren',
|
||||
'Group' => 'Grup',
|
||||
'Groups' => 'Gruplar',
|
||||
'Highest' => 'En yüksek',
|
||||
'Inactive' => 'Aktif olmayan',
|
||||
'Interval' => 'Aralık',
|
||||
'Invoice' => 'Fatura',
|
||||
'Invoices' => 'Faturalar',
|
||||
'IsDefault' => 'Varsayılan mı?',
|
||||
'Language' => 'Dilim',
|
||||
'Last' => 'Geçen',
|
||||
'Localization' => 'Yerelleştirme',
|
||||
'Loginname' => 'Kullanıcı adı',
|
||||
'Matchcode' => 'Maç Kodu',
|
||||
'Media' => 'Medya',
|
||||
'MinPrice' => 'Minik fiyat',
|
||||
'Name' => 'İsim',
|
||||
'Name1' => 'İsim 1',
|
||||
'Name2' => 'İsim 2',
|
||||
'Name3' => 'ADI 3',
|
||||
'Offer' => 'Teklif',
|
||||
'Order' => 'Emir',
|
||||
'Ordered' => 'Emir',
|
||||
'OrderedBy' => 'Tarafından sipariş edildi',
|
||||
'Orders' => 'Emirler',
|
||||
'Payment' => 'Ödeme',
|
||||
'Price' => 'Fiyat',
|
||||
'Priority' => 'Öncelik',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Miktar',
|
||||
'Receipt' => 'Fiş',
|
||||
'Reference' => 'Referans',
|
||||
'Sales' => 'Satış',
|
||||
'Settings' => 'Ayarlar',
|
||||
'Single' => 'Bekar',
|
||||
'Start' => '',
|
||||
'State' => 'Belirtmek, bildirmek',
|
||||
'Statistics' => 'İstatistik',
|
||||
'Status' => 'Durum',
|
||||
'Stock' => 'Stoklamak',
|
||||
'Street' => 'sokak',
|
||||
'Subgroup' => 'Alt grup',
|
||||
'Tax' => 'Vergi',
|
||||
'Terms' => 'Terimler',
|
||||
'To' => 'İle',
|
||||
'TopArticles' => 'En iyi makaleler',
|
||||
'Trend' => 'Akım',
|
||||
'Turnover' => 'Devir',
|
||||
'Type' => 'Tip',
|
||||
'ZipCode' => 'Posta kodu',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => 'Обліковий запис',
|
||||
'Active' => 'Активний',
|
||||
'Activity' => 'Діяльність',
|
||||
'Address' => 'Адреса',
|
||||
'All' => 'Все',
|
||||
'Amount' => 'Сума',
|
||||
'Analysis' => 'Аналіз',
|
||||
'Analyze' => '',
|
||||
'Area' => 'Площа',
|
||||
'Article' => 'Стаття',
|
||||
'Articles' => 'Статті',
|
||||
'Available' => 'Доступний',
|
||||
'Calculate' => 'Розраховувати',
|
||||
'City' => 'Місто',
|
||||
'Class' => 'Клас',
|
||||
'Client' => 'Клієнт',
|
||||
'ClientID' => 'Ідентифікатор клієнта',
|
||||
'ClientName' => 'Назва клієнта',
|
||||
'Clients' => 'Клієнти',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => 'Підтвердження',
|
||||
'CoreData' => 'Основні дані',
|
||||
'Country' => 'Країна',
|
||||
'Created' => 'Створений',
|
||||
'Creator' => 'Творець',
|
||||
'CreditNote' => 'Кредитове авізо',
|
||||
'Current' => '',
|
||||
'DSO' => 'Дз',
|
||||
'Date' => 'Дата',
|
||||
'DefaultInternational' => 'Міжнародний за замовчуванням',
|
||||
'DefaultNational' => 'Національний за замовчуванням',
|
||||
'Delivery' => 'Доставка',
|
||||
'DeliveryNote' => 'Накладна',
|
||||
'Description' => 'Опис',
|
||||
'Discount' => 'Знижка',
|
||||
'DiscountP' => 'Знижка у%',
|
||||
'Documentation' => 'Документація',
|
||||
'Employee' => 'Співробітник',
|
||||
'End' => '',
|
||||
'FAO' => 'Фах',
|
||||
'From' => 'Від',
|
||||
'Group' => 'Група',
|
||||
'Groups' => 'Групи',
|
||||
'Highest' => 'Найвищий',
|
||||
'Inactive' => 'Неактивний',
|
||||
'Interval' => 'Інтервал',
|
||||
'Invoice' => 'Рахунок-фактура',
|
||||
'Invoices' => 'Рахунки-фактури',
|
||||
'IsDefault' => 'Чи є за замовчуванням?',
|
||||
'Language' => 'Мову',
|
||||
'Last' => 'Остання',
|
||||
'Localization' => 'Локалізація',
|
||||
'Loginname' => 'Логін',
|
||||
'Matchcode' => 'Матч',
|
||||
'Media' => 'Медіа',
|
||||
'MinPrice' => 'Ціна',
|
||||
'Name' => 'Назва',
|
||||
'Name1' => 'Ім\'я 1',
|
||||
'Name2' => 'Ім\'я 2',
|
||||
'Name3' => 'Назва 3',
|
||||
'Offer' => 'Пропозиція',
|
||||
'Order' => 'Порядок',
|
||||
'Ordered' => 'Упорядкований',
|
||||
'OrderedBy' => 'Замовлений',
|
||||
'Orders' => 'Накази',
|
||||
'Payment' => 'Платіж',
|
||||
'Price' => 'Ціна',
|
||||
'Priority' => 'Пріоритет',
|
||||
'Profit' => '',
|
||||
'Quantity' => 'Кількість',
|
||||
'Receipt' => 'Квитанція',
|
||||
'Reference' => 'Довідник',
|
||||
'Sales' => 'Продаж',
|
||||
'Settings' => 'Налаштування',
|
||||
'Single' => 'Одиночний',
|
||||
'Start' => '',
|
||||
'State' => 'Держава',
|
||||
'Statistics' => 'Статистика',
|
||||
'Status' => 'Статус',
|
||||
'Stock' => 'Запас',
|
||||
'Street' => 'Вулиця',
|
||||
'Subgroup' => 'Підгруп',
|
||||
'Tax' => 'Оподаткування',
|
||||
'Terms' => 'Умови',
|
||||
'To' => 'До',
|
||||
'TopArticles' => 'Топці',
|
||||
'Trend' => 'Тенденція',
|
||||
'Turnover' => 'Оборот',
|
||||
'Type' => 'Тип',
|
||||
'ZipCode' => 'ЗІП код',
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['Finance' => [
|
||||
'Account' => '帐户',
|
||||
'Active' => '积极的',
|
||||
'Activity' => '活动',
|
||||
'Address' => '地址',
|
||||
'All' => '全部',
|
||||
'Amount' => '数量',
|
||||
'Analysis' => '分析',
|
||||
'Analyze' => '',
|
||||
'Area' => '区域',
|
||||
'Article' => '文章',
|
||||
'Articles' => '文章',
|
||||
'Available' => '可用的',
|
||||
'Calculate' => '计算',
|
||||
'City' => '城市',
|
||||
'Class' => '班级',
|
||||
'Client' => '客户',
|
||||
'ClientID' => '客户ID',
|
||||
'ClientName' => '客户名称',
|
||||
'Clients' => '客户',
|
||||
'Comparison' => '',
|
||||
'Confirmation' => '确认',
|
||||
'CoreData' => '核心数据',
|
||||
'Country' => '国家',
|
||||
'Created' => '创造了',
|
||||
'Creator' => '创造者',
|
||||
'CreditNote' => '信用票据',
|
||||
'Current' => '',
|
||||
'DSO' => 'DSO',
|
||||
'Date' => '日期',
|
||||
'DefaultInternational' => '违约国际',
|
||||
'DefaultNational' => '违约国家',
|
||||
'Delivery' => '交货',
|
||||
'DeliveryNote' => '送货单',
|
||||
'Description' => '描述',
|
||||
'Discount' => '折扣',
|
||||
'DiscountP' => '折扣%%',
|
||||
'Documentation' => '文件',
|
||||
'Employee' => '员工',
|
||||
'End' => '',
|
||||
'FAO' => '粮农组织',
|
||||
'From' => '从',
|
||||
'Group' => '团体',
|
||||
'Groups' => '团体',
|
||||
'Highest' => '最高',
|
||||
'Inactive' => '不活跃',
|
||||
'Interval' => '间隔',
|
||||
'Invoice' => '发票',
|
||||
'Invoices' => '发票',
|
||||
'IsDefault' => '默认为默认情况下?',
|
||||
'Language' => '语',
|
||||
'Last' => '最后的',
|
||||
'Localization' => '本土化',
|
||||
'Loginname' => '登录名',
|
||||
'Matchcode' => '匹配码',
|
||||
'Media' => '媒体',
|
||||
'MinPrice' => '最终价格',
|
||||
'Name' => '名称',
|
||||
'Name1' => '名称1',
|
||||
'Name2' => '名称2',
|
||||
'Name3' => '名称3.',
|
||||
'Offer' => '提供',
|
||||
'Order' => '命令',
|
||||
'Ordered' => '订购',
|
||||
'OrderedBy' => '订购',
|
||||
'Orders' => '命令',
|
||||
'Payment' => '支付',
|
||||
'Price' => '价格',
|
||||
'Priority' => '优先事项',
|
||||
'Profit' => '',
|
||||
'Quantity' => '数量',
|
||||
'Receipt' => '收据',
|
||||
'Reference' => '参考',
|
||||
'Sales' => '销售量',
|
||||
'Settings' => '设置',
|
||||
'Single' => '单身的',
|
||||
'Start' => '',
|
||||
'State' => '状态',
|
||||
'Statistics' => '统计数据',
|
||||
'Status' => '地位',
|
||||
'Stock' => '库存',
|
||||
'Street' => '街道',
|
||||
'Subgroup' => '亚组',
|
||||
'Tax' => '税',
|
||||
'Terms' => '条款',
|
||||
'To' => '到',
|
||||
'TopArticles' => '顶级文章',
|
||||
'Trend' => '趋势',
|
||||
'Turnover' => '周转',
|
||||
'Type' => '类型',
|
||||
'ZipCode' => '邮政编码',
|
||||
]];
|
||||
66
Theme/Backend/finance-taxcode-list.tpl.php
Normal file
66
Theme/Backend/finance-taxcode-list.tpl.php
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Accounting
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
use phpOMS\Uri\UriFactory;
|
||||
|
||||
/**
|
||||
* @var \phpOMS\Views\View $this
|
||||
* @var \Modules\Tag\Models\CostCenter[] $taxcode
|
||||
*/
|
||||
$taxcode = $this->data['taxcode'];
|
||||
|
||||
$previous = empty($taxcode) ? '{/base}/finance/tax/code/list' : '{/base}/finance/tax/code/list?{?}&id=' . \reset($taxcode)->id . '&ptype=p';
|
||||
$next = empty($taxcode) ? '{/base}/finance/tax/code/list' : '{/base}/finance/tax/code/list?{?}&id=' . \end($taxcode)->id . '&ptype=n';
|
||||
|
||||
echo $this->data['nav']->render(); ?>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<div class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('TaxCodes'); ?><i class="g-icon download btn end-xs">download</i></div>
|
||||
<table class="default sticky">
|
||||
<thead>
|
||||
<tr>
|
||||
<td><?= $this->getHtml('TaxCode'); ?>
|
||||
<td class="wf-100"><?= $this->getHtml('Name'); ?>
|
||||
<td><?= $this->getHtml('Invoice'); ?>
|
||||
<td><?= $this->getHtml('Sales'); ?>
|
||||
<td><?= $this->getHtml('Purchase'); ?>
|
||||
<td><?= $this->getHtml('Tax1Account'); ?>
|
||||
<td><?= $this->getHtml('Tax2Account'); ?>
|
||||
<tbody>
|
||||
<?php $count = 0;
|
||||
foreach ($taxcode as $key => $value) : ++$count;
|
||||
$url = UriFactory::build('{/base}/finance/tax/code/view?{?}&id=' . $value->id); ?>
|
||||
<tr tabindex="0" data-href="<?= $url; ?>">
|
||||
<td><a href="<?= $url; ?>">
|
||||
<?= $this->printHtml($value->abbr); ?></a>
|
||||
<td><a href="<?= $url; ?>">
|
||||
<?= $this->printHtml($value->l11n->title); ?></a>
|
||||
<td><a href="<?= $url; ?>">
|
||||
<?= $value->percentageInvoice / 10000; ?> %</a>
|
||||
<td><a href="<?= $url; ?>">
|
||||
<?= $value->percentageOutput / 10000; ?> %</a>
|
||||
<td><a href="<?= $url; ?>">
|
||||
<?= $value->percentageInput / 10000; ?> %</a>
|
||||
<td><a href="<?= $url; ?>">
|
||||
<?= $this->printHtml($value->taxAccount1); ?></a>
|
||||
<td><a href="<?= $url; ?>">
|
||||
<?= $this->printHtml($value->taxAccount2); ?></a>
|
||||
<?php endforeach; ?>
|
||||
<?php if ($count === 0) : ?>
|
||||
<tr><td colspan="7" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
|
||||
<?php endif; ?>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -1,400 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.2
|
||||
*
|
||||
* @package Modules\Billing
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
use phpOMS\Localization\Money;
|
||||
use phpOMS\Stdlib\Base\FloatInt;
|
||||
|
||||
/**
|
||||
* @var \phpOMS\Views\View $this
|
||||
*/
|
||||
|
||||
echo $this->data['nav']->render();
|
||||
?>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-lg-4">
|
||||
<section class="portlet">
|
||||
<div class="portlet-body">
|
||||
<h2><?= $this->getHtml('Current'); ?></h2>
|
||||
<div class="form-group">
|
||||
<div class="input-control">
|
||||
<label for="iOname"><?= $this->getHtml('Start'); ?></label>
|
||||
<input type="date">
|
||||
</div>
|
||||
|
||||
<div class="input-control">
|
||||
<label for="iOname"><?= $this->getHtml('End'); ?></label>
|
||||
<input type="date">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2><?= $this->getHtml('Comparison'); ?></h2>
|
||||
<div class="form-group">
|
||||
<div class="input-control">
|
||||
<label for="iOname"><?= $this->getHtml('Start'); ?></label>
|
||||
<input type="date">
|
||||
</div>
|
||||
|
||||
<div class="input-control">
|
||||
<label for="iOname"><?= $this->getHtml('End'); ?></label>
|
||||
<input type="date">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portlet-foot">
|
||||
<input id="iSubmitGeneral" name="submitGeneral" type="submit" value="<?= $this->getHtml('Analyze'); ?>">
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-12 col-lg-4">
|
||||
<section class="portlet hl-2">
|
||||
<div class="portlet-head">Actual</div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
<div>Sales MTD:</div>
|
||||
<div>+12.0 %</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div>Sales YTD:</div>
|
||||
<div>+1.2 %</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div>Gross Profit Current:</div>
|
||||
<div>+12.0 %</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div>Gross Profit Previous:</div>
|
||||
<div>+1.2 %</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-12 col-lg-4">
|
||||
<section class="portlet hl-3">
|
||||
<div class="portlet-head">Budget</div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
<div>Sales MTD:</div>
|
||||
<div>+12.0 %</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div>Sales YTD:</div>
|
||||
<div>+1.2 %</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div>Gross Profit Current:</div>
|
||||
<div>+12.0 %</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div>Gross Profit Budget:</div>
|
||||
<div>+1.2 %</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-lg-6">
|
||||
<section class="portlet">
|
||||
<div class="portlet-head">
|
||||
Sales / Profit - Monthly
|
||||
<?php include __DIR__ . '/../../../../Web/Backend/Themes/popup-export-data.tpl.php'; ?>
|
||||
</div>
|
||||
<?php $salesCustomer = $this->data['monthlySalesCustomer']; ?>
|
||||
<div class="portlet-body">
|
||||
<canvas id="sales-region" data-chart='{
|
||||
"type": "bar",
|
||||
"data": {
|
||||
"labels": [
|
||||
<?php
|
||||
$temp = [];
|
||||
foreach ($salesCustomer as $monthly) {
|
||||
$temp[] = $monthly['month'] . '/' . \substr((string) $monthly['year'], -2);
|
||||
}
|
||||
?>
|
||||
<?= '"' . \implode('", "', $temp) . '"'; ?>
|
||||
],
|
||||
"datasets": [
|
||||
{
|
||||
"label": "<?= $this->getHtml('Profit'); ?>",
|
||||
"type": "line",
|
||||
"data": [
|
||||
<?php
|
||||
$temp = [];
|
||||
foreach ($salesCustomer as $monthly) {
|
||||
$temp[] = ((int) $monthly['customers']);
|
||||
}
|
||||
?>
|
||||
<?= \implode(',', $temp); ?>
|
||||
],
|
||||
"yAxisID": "axis-2",
|
||||
"fill": false,
|
||||
"borderColor": "rgb(255, 99, 132)",
|
||||
"backgroundColor": "rgb(255, 99, 132)",
|
||||
"tension": 0.0
|
||||
},
|
||||
{
|
||||
"label": "<?= $this->getHtml('Sales'); ?>",
|
||||
"type": "bar",
|
||||
"data": [
|
||||
<?php
|
||||
$temp = [];
|
||||
foreach ($salesCustomer as $monthly) {
|
||||
$temp[] = ((int) $monthly['net_sales']) / 1000;
|
||||
}
|
||||
?>
|
||||
<?= \implode(',', $temp); ?>
|
||||
],
|
||||
"yAxisID": "axis-1",
|
||||
"fill": false,
|
||||
"borderColor": "rgb(54, 162, 235)",
|
||||
"backgroundColor": "rgb(54, 162, 235)",
|
||||
"tension": 0.0
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {
|
||||
"title": {
|
||||
"display": false,
|
||||
"text": "Sales / Profit"
|
||||
},
|
||||
"scales": {
|
||||
"yAxes": [
|
||||
{
|
||||
"id": "axis-1",
|
||||
"display": true,
|
||||
"position": "left"
|
||||
},
|
||||
{
|
||||
"id": "axis-2",
|
||||
"display": true,
|
||||
"position": "right",
|
||||
"scaleLabel": {
|
||||
"display": true,
|
||||
"labelString": "<?= $this->getHtml('Profit'); ?>"
|
||||
},
|
||||
"gridLines": {
|
||||
"display": false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}'></canvas>
|
||||
<div class="more-container">
|
||||
<input id="more-customer-sales" type="checkbox" name="more-container">
|
||||
<label for="more-customer-sales">
|
||||
<span>Data</span>
|
||||
<i class="g-icon expand">chevron_right</i>
|
||||
</label>
|
||||
<div>
|
||||
<table class="default sticky">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Month
|
||||
<td>Sales
|
||||
<td>Customer count
|
||||
<tbody>
|
||||
<?php
|
||||
$sum1 = 0;
|
||||
$sum2 = 0;
|
||||
foreach ($salesCustomer as $values) :
|
||||
$sum1 += ((int) $values['net_sales']) / 1000;
|
||||
$sum2 += ((int) $values['customers']);
|
||||
?>
|
||||
<tr>
|
||||
<td><?= $values['month'] . '/' . \substr((string) $values['year'], -2); ?>
|
||||
<td><?= (new Money(((int) $values['net_sales']) / FloatInt::DIVISOR))->getCurrency(); ?>
|
||||
<td><?= ((int) $values['customers']); ?>
|
||||
<?php endforeach; ?>
|
||||
<tr>
|
||||
<td>Total
|
||||
<td><?= (new Money($sum1))->getCurrency(); ?>
|
||||
<td><?= (int) ($sum2 / 12); ?>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-12 col-lg-6">
|
||||
<section class="portlet">
|
||||
<div class="portlet-head">
|
||||
Sales / Profit - Annual
|
||||
<?php include __DIR__ . '/../../../../Web/Backend/Themes/popup-export-data.tpl.php'; ?>
|
||||
</div>
|
||||
<?php $salesCustomer = $this->data['annualSalesCustomer']; ?>
|
||||
<div class="portlet-body">
|
||||
<canvas id="sales-customer-annual" data-chart='{
|
||||
"type": "bar",
|
||||
"data": {
|
||||
"labels": [
|
||||
<?php
|
||||
$temp = [];
|
||||
foreach ($salesCustomer as $annual) {
|
||||
$temp[] = $annual['year'];
|
||||
}
|
||||
?>
|
||||
<?= '"' . \implode('", "', $temp) . '"'; ?>
|
||||
],
|
||||
"datasets": [
|
||||
{
|
||||
"label": "<?= $this->getHtml('Profit'); ?>",
|
||||
"type": "line",
|
||||
"data": [
|
||||
<?php
|
||||
$temp = [];
|
||||
foreach ($salesCustomer as $annual) {
|
||||
$temp[] = ((int) $annual['customers']);
|
||||
}
|
||||
?>
|
||||
<?= \implode(',', $temp); ?>
|
||||
],
|
||||
"yAxisID": "axis-2",
|
||||
"fill": false,
|
||||
"borderColor": "rgb(255, 99, 132)",
|
||||
"backgroundColor": "rgb(255, 99, 132)",
|
||||
"tension": 0.0
|
||||
},
|
||||
{
|
||||
"label": "<?= $this->getHtml('Sales'); ?>",
|
||||
"type": "bar",
|
||||
"data": [
|
||||
<?php
|
||||
$temp = [];
|
||||
foreach ($salesCustomer as $annual) {
|
||||
$temp[] = ((int) $annual['net_sales']) / 1000;
|
||||
}
|
||||
?>
|
||||
<?= \implode(',', $temp); ?>
|
||||
],
|
||||
"yAxisID": "axis-1",
|
||||
"fill": false,
|
||||
"borderColor": "rgb(54, 162, 235)",
|
||||
"backgroundColor": "rgb(54, 162, 235)",
|
||||
"tension": 0.0
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {
|
||||
"title": {
|
||||
"display": false,
|
||||
"text": "Sales / Profit"
|
||||
},
|
||||
"scales": {
|
||||
"yAxes": [
|
||||
{
|
||||
"id": "axis-1",
|
||||
"display": true,
|
||||
"position": "left"
|
||||
},
|
||||
{
|
||||
"id": "axis-2",
|
||||
"display": true,
|
||||
"position": "right",
|
||||
"scaleLabel": {
|
||||
"display": true,
|
||||
"labelString": "<?= $this->getHtml('Profit'); ?>"
|
||||
},
|
||||
"gridLines": {
|
||||
"display": false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}'></canvas>
|
||||
<div class="more-container">
|
||||
<input id="more-customer-sales-annual" type="checkbox" name="more-container">
|
||||
<label for="more-customer-sales-annual">
|
||||
<span>Data</span>
|
||||
<i class="g-icon expand">chevron_right</i>
|
||||
</label>
|
||||
<div>
|
||||
<table class="default sticky">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Year
|
||||
<td>Sales
|
||||
<td>Customer count
|
||||
<tbody>
|
||||
<?php
|
||||
foreach ($salesCustomer as $values) :
|
||||
?>
|
||||
<tr>
|
||||
<td><?= (string) $values['year']; ?>
|
||||
<td><?= (new Money(((int) $values['net_sales']) / FloatInt::DIVISOR))->getCurrency(); ?>
|
||||
<td><?= ((int) $values['customers']); ?>
|
||||
<?php endforeach; ?>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<section class="portlet">
|
||||
<div class="portlet-head">
|
||||
Sales / Attribute
|
||||
<?php include __DIR__ . '/../../../../Web/Backend/Themes/popup-export-data.tpl.php'; ?>
|
||||
</div>
|
||||
<table class="default sticky">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Product
|
||||
<td>Sales PY
|
||||
<td>Sales B
|
||||
<td>Sales A
|
||||
<td>Diff PY
|
||||
<td>Diff B
|
||||
<tbody>
|
||||
</table>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<section class="portlet">
|
||||
<div class="portlet-head">
|
||||
Sales / Region
|
||||
<?php include __DIR__ . '/../../../../Web/Backend/Themes/popup-export-data.tpl.php'; ?>
|
||||
</div>
|
||||
<table class="default sticky">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Country
|
||||
<td>Sales PY
|
||||
<td>Sales B
|
||||
<td>Sales A
|
||||
<td>Diff PY
|
||||
<td>Diff B
|
||||
<tbody>
|
||||
</table>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Reference in New Issue
Block a user