From 0b8138b844a5e397666e888c2c7f256fa9919797 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 9 Oct 2016 20:07:30 +0200 Subject: [PATCH 1/6] Fix install --- Admin/Install/ItemReference.php | 2 +- Admin/Install/Navigation.php | 2 +- Admin/Installer.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Admin/Install/ItemReference.php b/Admin/Install/ItemReference.php index 1172247..5bcda3b 100644 --- a/Admin/Install/ItemReference.php +++ b/Admin/Install/ItemReference.php @@ -35,7 +35,7 @@ class ItemReference /** * {@inheritdoc} */ - public static function install(Pool $dbPool, InfoManager $info) + public static function install(string $path, Pool $dbPool, InfoManager $info) { switch ($dbPool->get('core')->getType()) { diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index b236b89..b9962c3 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -29,7 +29,7 @@ use phpOMS\DataStorage\Database\Pool; */ class Navigation { - public static function install(Pool $dbPool) + public static function install(string $path, Pool $dbPool) { $navData = json_decode(file_get_contents(__DIR__ . '/Navigation.install.json'), true); diff --git a/Admin/Installer.php b/Admin/Installer.php index d9bbccc..f50adef 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -37,9 +37,9 @@ class Installer extends InstallerAbstract /** * {@inheritdoc} */ - public static function install(Pool $dbPool, InfoManager $info) + public static function install(string $path, Pool $dbPool, InfoManager $info) { - parent::install($dbPool, $info); + parent::install($path, $dbPool, $info); switch ($dbPool->get('core')->getType()) { case DatabaseType::MYSQL: From 015d34fac8fecb80cd469100be69fd4810b7b9de Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 29 Oct 2016 20:44:52 +0200 Subject: [PATCH 2/6] Adjust database pool name --- Admin/Activate.php | 4 ++-- Admin/Deactivate.php | 4 ++-- Admin/Install/ItemReference.php | 4 ++-- Admin/Install/Navigation.php | 4 ++-- Admin/Installer.php | 4 ++-- Admin/Uninstall.php | 4 ++-- Admin/Update.php | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Admin/Activate.php b/Admin/Activate.php index dc45f72..7144baa 100644 --- a/Admin/Activate.php +++ b/Admin/Activate.php @@ -16,7 +16,7 @@ namespace Modules\Billing\Admin; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\Module\ActivateAbstract; use phpOMS\Module\InfoManager; @@ -37,7 +37,7 @@ class Activate extends ActivateAbstract /** * {@inheritdoc} */ - public static function activate(Pool $dbPool, InfoManager $info) + public static function activate(DatabasePool $dbPool, InfoManager $info) { parent::activate($dbPool, $info); } diff --git a/Admin/Deactivate.php b/Admin/Deactivate.php index 3828a6a..7f35537 100644 --- a/Admin/Deactivate.php +++ b/Admin/Deactivate.php @@ -16,7 +16,7 @@ namespace Modules\Billing\Admin; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\Module\DeactivateAbstract; use phpOMS\Module\InfoManager; @@ -37,7 +37,7 @@ class Deactivate extends DeactivateAbstract /** * {@inheritdoc} */ - public static function deactivate(Pool $dbPool, InfoManager $info) + public static function deactivate(DatabasePool $dbPool, InfoManager $info) { parent::deactivate($dbPool, $info); } diff --git a/Admin/Install/ItemReference.php b/Admin/Install/ItemReference.php index 5bcda3b..6a4956e 100644 --- a/Admin/Install/ItemReference.php +++ b/Admin/Install/ItemReference.php @@ -16,7 +16,7 @@ namespace Modules\Billing\Admin\Install; use phpOMS\DataStorage\Database\DatabaseType; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; /** * Media addition class. @@ -35,7 +35,7 @@ class ItemReference /** * {@inheritdoc} */ - public static function install(string $path, Pool $dbPool, InfoManager $info) + public static function install(string $path, DatabasePool $dbPool, InfoManager $info) { switch ($dbPool->get('core')->getType()) { diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index b9962c3..d2673ab 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -14,7 +14,7 @@ * @link http://orange-management.com */ namespace Modules\Billing\Admin\Install; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; /** * Navigation class. @@ -29,7 +29,7 @@ use phpOMS\DataStorage\Database\Pool; */ class Navigation { - public static function install(string $path, Pool $dbPool) + public static function install(string $path, DatabasePool $dbPool) { $navData = json_decode(file_get_contents(__DIR__ . '/Navigation.install.json'), true); diff --git a/Admin/Installer.php b/Admin/Installer.php index f50adef..246e649 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -16,7 +16,7 @@ namespace Modules\Billing\Admin; use phpOMS\DataStorage\Database\DatabaseType; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\Module\InfoManager; use phpOMS\Module\InstallerAbstract; @@ -37,7 +37,7 @@ class Installer extends InstallerAbstract /** * {@inheritdoc} */ - public static function install(string $path, Pool $dbPool, InfoManager $info) + public static function install(string $path, DatabasePool $dbPool, InfoManager $info) { parent::install($path, $dbPool, $info); diff --git a/Admin/Uninstall.php b/Admin/Uninstall.php index 4e84597..a6ffc1c 100644 --- a/Admin/Uninstall.php +++ b/Admin/Uninstall.php @@ -16,7 +16,7 @@ namespace Modules\Billing\Admin; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\DataStorage\Database\Schema\Builder; use phpOMS\Module\UninstallAbstract; @@ -37,7 +37,7 @@ class Uninstall extends UninstallAbstract /** * {@inheritdoc} */ - public static function uninstall(Pool $dbPool, InfoManager $info) + public static function uninstall(DatabasePool $dbPool, InfoManager $info) { parent::uninstall($dbPool, $info); diff --git a/Admin/Update.php b/Admin/Update.php index 061bcdf..cb12fa5 100644 --- a/Admin/Update.php +++ b/Admin/Update.php @@ -16,7 +16,7 @@ namespace Modules\Billing\Admin; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\Module\UpdateAbstract; use phpOMS\System\File\Directory; @@ -37,7 +37,7 @@ class Update extends UpdateAbstract /** * {@inheritdoc} */ - public static function update(Pool $dbPool, array $info) + public static function update(DatabasePool $dbPool, array $info) { Directory::deletePath(__DIR__ . '/Update'); mkdir('Update'); From 3a16c46421e45eb1fb18ebfa2286d96dd471e448 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 7 Dec 2016 20:23:04 +0100 Subject: [PATCH 3/6] Prepare const visibility --- Controller.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Controller.php b/Controller.php index 6745064..8b6e5cc 100644 --- a/Controller.php +++ b/Controller.php @@ -45,7 +45,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - const MODULE_PATH = __DIR__; + /* public */ const MODULE_PATH = __DIR__; /** * Module version. @@ -53,7 +53,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - const MODULE_VERSION = '1.0.0'; + /* public */ const MODULE_VERSION = '1.0.0'; /** * Module name. @@ -61,7 +61,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - const MODULE_NAME = 'Billing'; + /* public */ const MODULE_NAME = 'Billing'; /** * Providing. From e60c9cc56cdb48d847313d71923308bc3e3179e4 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 7 Dec 2016 20:56:15 +0100 Subject: [PATCH 4/6] Increase php version requirement --- Admin/Activate.php | 2 +- Admin/Deactivate.php | 2 +- Admin/Install/ItemReference.php | 2 +- Admin/Install/Navigation.php | 2 +- Admin/Installer.php | 2 +- Admin/Uninstall.php | 2 +- Admin/Update.php | 2 +- Controller.php | 2 +- Theme/Backend/Lang/Navigation.en.lang.php | 2 +- Theme/Backend/Lang/en.lang.php | 2 +- Theme/Backend/invoice-archive.tpl.php | 2 +- Theme/Backend/invoice-create.tpl.php | 2 +- Theme/Backend/invoice-list.tpl.php | 2 +- Theme/Backend/invoice-single.tpl.php | 2 +- Theme/Backend/purchase-invoice-list.tpl.php | 2 +- Theme/backend/Lang/Navigation.en.lang.php | 2 +- Theme/backend/Lang/en.lang.php | 2 +- Theme/backend/invoice-archive.tpl.php | 2 +- Theme/backend/invoice-create.tpl.php | 2 +- Theme/backend/invoice-list.tpl.php | 2 +- Theme/backend/invoice-single.tpl.php | 2 +- Theme/backend/purchase-invoice-list.tpl.php | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Admin/Activate.php b/Admin/Activate.php index 7144baa..370696b 100644 --- a/Admin/Activate.php +++ b/Admin/Activate.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Deactivate.php b/Admin/Deactivate.php index 7f35537..250875f 100644 --- a/Admin/Deactivate.php +++ b/Admin/Deactivate.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Install/ItemReference.php b/Admin/Install/ItemReference.php index 6a4956e..4817963 100644 --- a/Admin/Install/ItemReference.php +++ b/Admin/Install/ItemReference.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index d2673ab..a6c52a4 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Installer.php b/Admin/Installer.php index 246e649..08c22f1 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Uninstall.php b/Admin/Uninstall.php index a6ffc1c..3ac24e1 100644 --- a/Admin/Uninstall.php +++ b/Admin/Uninstall.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Update.php b/Admin/Update.php index cb12fa5..56c01c3 100644 --- a/Admin/Update.php +++ b/Admin/Update.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Controller.php b/Controller.php index 8b6e5cc..d7886ef 100644 --- a/Controller.php +++ b/Controller.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/Lang/Navigation.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php index 9341b24..b0e965e 100644 --- a/Theme/Backend/Lang/Navigation.en.lang.php +++ b/Theme/Backend/Lang/Navigation.en.lang.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index 3d01146..073ce22 100644 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -2,7 +2,7 @@ z Date: Wed, 14 Dec 2016 21:27:04 +0100 Subject: [PATCH 5/6] Template & lang fixes --- Theme/Backend/Lang/en.lang.php | 9 ++++++--- Theme/Backend/invoice-create.tpl.php | 8 +++++++- Theme/backend/Lang/en.lang.php | 9 ++++++--- Theme/backend/invoice-create.tpl.php | 8 +++++++- 4 files changed, 26 insertions(+), 8 deletions(-) diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index 073ce22..17746b1 100644 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -1,4 +1,4 @@ -z [ 'Address' => 'Address', 'Addresses' => 'Addresses', 'Bonus' => 'Bonus', @@ -35,9 +35,11 @@ return [ 'Invoices' => 'Invoices', 'Item' => 'Item', 'Items' => 'Items', + 'Media' => 'Media', 'Name' => 'Name', 'Net' => 'Net', 'Offer' => 'Offer', + 'Payment' => 'Payment', 'Price' => 'Price', 'Quantity' => 'Quantity', 'Recipient' => 'Recipient', @@ -46,8 +48,9 @@ return [ 'Supplier' => 'Supplier', 'SupplierID' => 'Supplier ID', 'Tax' => 'Tax', + 'TermsOfDelivery' => 'Terms Of Delivery', 'Total' => 'Total', 'Type' => 'Type', 'Variation' => 'Variation', 'Zip' => 'Zip', -]; +]]; diff --git a/Theme/Backend/invoice-create.tpl.php b/Theme/Backend/invoice-create.tpl.php index 1a3f900..62d86de 100644 --- a/Theme/Backend/invoice-create.tpl.php +++ b/Theme/Backend/invoice-create.tpl.php @@ -24,6 +24,8 @@ echo $this->getData('nav')->render(); ?>
@@ -56,6 +58,10 @@ echo $this->getData('nav')->render(); ?> + + @@ -144,7 +150,7 @@ echo $this->getData('nav')->render(); ?> - +
diff --git a/Theme/backend/Lang/en.lang.php b/Theme/backend/Lang/en.lang.php index 073ce22..17746b1 100644 --- a/Theme/backend/Lang/en.lang.php +++ b/Theme/backend/Lang/en.lang.php @@ -1,4 +1,4 @@ -z [ 'Address' => 'Address', 'Addresses' => 'Addresses', 'Bonus' => 'Bonus', @@ -35,9 +35,11 @@ return [ 'Invoices' => 'Invoices', 'Item' => 'Item', 'Items' => 'Items', + 'Media' => 'Media', 'Name' => 'Name', 'Net' => 'Net', 'Offer' => 'Offer', + 'Payment' => 'Payment', 'Price' => 'Price', 'Quantity' => 'Quantity', 'Recipient' => 'Recipient', @@ -46,8 +48,9 @@ return [ 'Supplier' => 'Supplier', 'SupplierID' => 'Supplier ID', 'Tax' => 'Tax', + 'TermsOfDelivery' => 'Terms Of Delivery', 'Total' => 'Total', 'Type' => 'Type', 'Variation' => 'Variation', 'Zip' => 'Zip', -]; +]]; diff --git a/Theme/backend/invoice-create.tpl.php b/Theme/backend/invoice-create.tpl.php index 1a3f900..62d86de 100644 --- a/Theme/backend/invoice-create.tpl.php +++ b/Theme/backend/invoice-create.tpl.php @@ -24,6 +24,8 @@ echo $this->getData('nav')->render(); ?>
@@ -56,6 +58,10 @@ echo $this->getData('nav')->render(); ?> + + @@ -144,7 +150,7 @@ echo $this->getData('nav')->render(); ?> - +
From 41dba68a9560d33628aaa8e27ffa5191cf35c755 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 30 Dec 2016 19:59:24 +0100 Subject: [PATCH 6/6] Template, comment and path fixes --- Theme/Backend/Lang/en.lang.php | 11 ++++ Theme/Backend/invoice-create.tpl.php | 86 ++++++++++++++++++++++++++++ Theme/backend/Lang/en.lang.php | 11 ++++ Theme/backend/invoice-create.tpl.php | 86 ++++++++++++++++++++++++++++ 4 files changed, 194 insertions(+) diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index 17746b1..27e3d7d 100644 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -16,16 +16,21 @@ return ['Billing' => [ 'Address' => 'Address', 'Addresses' => 'Addresses', + 'AlreadyPaid' => 'Already Paid', 'Bonus' => 'Bonus', + 'Cashback' => 'Cash Back', 'City' => 'City', 'Client' => 'Client', 'ClientID' => 'Client ID', 'Confirmation' => 'Confirmation', 'Country' => 'Country', 'Created' => 'Created', + 'CreditCard' => 'CreditCard', 'CreditNote' => 'Credit Note', + 'Date' => 'Date', 'Delivery' => 'Delivery', 'DeliveryNote' => 'Delivery Note', + 'DirectDebit' => 'DirectDebit', 'Discount' => 'Discount', 'DiscountP' => 'Discount %', 'Due' => 'Due', @@ -35,14 +40,19 @@ return ['Billing' => [ 'Invoices' => 'Invoices', 'Item' => 'Item', 'Items' => 'Items', + 'Log' => 'Log', + 'Logs' => 'Logs', 'Media' => 'Media', + 'MoneyTransfer' => 'Money Transfer', 'Name' => 'Name', 'Net' => 'Net', 'Offer' => 'Offer', 'Payment' => 'Payment', + 'Prepaid' => 'Prepaid', 'Price' => 'Price', 'Quantity' => 'Quantity', 'Recipient' => 'Recipient', + 'Select' => 'Select', 'Shipment' => 'Shipment', 'Source' => 'Source', 'Supplier' => 'Supplier', @@ -51,6 +61,7 @@ return ['Billing' => [ 'TermsOfDelivery' => 'Terms Of Delivery', 'Total' => 'Total', 'Type' => 'Type', + 'Upload' => 'Upload', 'Variation' => 'Variation', 'Zip' => 'Zip', ]]; diff --git a/Theme/Backend/invoice-create.tpl.php b/Theme/Backend/invoice-create.tpl.php index 62d86de..ed6ee13 100644 --- a/Theme/Backend/invoice-create.tpl.php +++ b/Theme/Backend/invoice-create.tpl.php @@ -26,6 +26,7 @@ echo $this->getData('nav')->render(); ?>
  • +
  • @@ -155,5 +156,90 @@ echo $this->getData('nav')->render(); ?>
    + +
    +
    +

    getText('Payment') ?>

    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    getText('Media'); ?>

    + +
    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    + app, $this->request, $this->response); + $footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig'); + $footerView->setPages(20); + $footerView->setPage(1); + ?> +
    + + + + + + + + +
    getText('Logs') ?>
    IP + getText('ID', 0, 0); ?> + getText('Name'); ?> + getText('Log'); ?> + getText('Date'); ?> +
    render(); ?> +
    request->getOrigin(); ?> + request->getAccount(); ?> + request->getAccount(); ?> + Create Invoice + format('Y-m-d H:i:s') ?> +
    +
    +
    + diff --git a/Theme/backend/Lang/en.lang.php b/Theme/backend/Lang/en.lang.php index 17746b1..27e3d7d 100644 --- a/Theme/backend/Lang/en.lang.php +++ b/Theme/backend/Lang/en.lang.php @@ -16,16 +16,21 @@ return ['Billing' => [ 'Address' => 'Address', 'Addresses' => 'Addresses', + 'AlreadyPaid' => 'Already Paid', 'Bonus' => 'Bonus', + 'Cashback' => 'Cash Back', 'City' => 'City', 'Client' => 'Client', 'ClientID' => 'Client ID', 'Confirmation' => 'Confirmation', 'Country' => 'Country', 'Created' => 'Created', + 'CreditCard' => 'CreditCard', 'CreditNote' => 'Credit Note', + 'Date' => 'Date', 'Delivery' => 'Delivery', 'DeliveryNote' => 'Delivery Note', + 'DirectDebit' => 'DirectDebit', 'Discount' => 'Discount', 'DiscountP' => 'Discount %', 'Due' => 'Due', @@ -35,14 +40,19 @@ return ['Billing' => [ 'Invoices' => 'Invoices', 'Item' => 'Item', 'Items' => 'Items', + 'Log' => 'Log', + 'Logs' => 'Logs', 'Media' => 'Media', + 'MoneyTransfer' => 'Money Transfer', 'Name' => 'Name', 'Net' => 'Net', 'Offer' => 'Offer', 'Payment' => 'Payment', + 'Prepaid' => 'Prepaid', 'Price' => 'Price', 'Quantity' => 'Quantity', 'Recipient' => 'Recipient', + 'Select' => 'Select', 'Shipment' => 'Shipment', 'Source' => 'Source', 'Supplier' => 'Supplier', @@ -51,6 +61,7 @@ return ['Billing' => [ 'TermsOfDelivery' => 'Terms Of Delivery', 'Total' => 'Total', 'Type' => 'Type', + 'Upload' => 'Upload', 'Variation' => 'Variation', 'Zip' => 'Zip', ]]; diff --git a/Theme/backend/invoice-create.tpl.php b/Theme/backend/invoice-create.tpl.php index 62d86de..ed6ee13 100644 --- a/Theme/backend/invoice-create.tpl.php +++ b/Theme/backend/invoice-create.tpl.php @@ -26,6 +26,7 @@ echo $this->getData('nav')->render(); ?>
  • +
  • @@ -155,5 +156,90 @@ echo $this->getData('nav')->render(); ?>
    + +
    +
    +

    getText('Payment') ?>

    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    getText('Media'); ?>

    + +
    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    + app, $this->request, $this->response); + $footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig'); + $footerView->setPages(20); + $footerView->setPage(1); + ?> +
    + + + + + + + + +
    getText('Logs') ?>
    IP + getText('ID', 0, 0); ?> + getText('Name'); ?> + getText('Log'); ?> + getText('Date'); ?> +
    render(); ?> +
    request->getOrigin(); ?> + request->getAccount(); ?> + request->getAccount(); ?> + Create Invoice + format('Y-m-d H:i:s') ?> +
    +
    +
    +