mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-01-11 15:18:42 +00:00
Dynamic language loading
This commit is contained in:
parent
937e5bc77a
commit
bc56205c30
|
|
@ -22,64 +22,64 @@ echo $this->getData('nav')->render(); ?>
|
|||
<div class="tabular-2">
|
||||
<div class="box">
|
||||
<ul class="tab-links">
|
||||
<li><label for="c-tab-1"><?= $this->l11n->getText('Billing', 'Invoice') ?></label></li>
|
||||
<li><label for="c-tab-2"><?= $this->l11n->getText('Billing', 'Items') ?></label></li>
|
||||
<li><label for="c-tab-1"><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?></label></li>
|
||||
<li><label for="c-tab-2"><?= $this->l11n->getText('Billing', 'Backend', 'Items') ?></label></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tab-content">
|
||||
<input type="radio" id="c-tab-1" name="tabular-2" checked>
|
||||
<div class="tab">
|
||||
<section class="box w-50 floatLeft">
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Invoice') ?></h1></header>
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iSource"><?= $this->l11n->getText('Billing', 'Source') ?></label>
|
||||
<tr><td><label for="iSource"><?= $this->l11n->getText('Billing', 'Backend', 'Source') ?></label>
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" id="iSource" name="source"></span>
|
||||
<tr><td><label for="iType"><?= $this->l11n->getText('Billing', 'Type') ?></label>
|
||||
<tr><td><label for="iType"><?= $this->l11n->getText('Billing', 'Backend', 'Type') ?></label>
|
||||
<tr><td><select id="iType" name="type">
|
||||
<option><?= $this->l11n->getText('Billing', 'Invoice') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Offer') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Confirmation') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'DeliveryNote') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'CreditNote') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'Offer') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'Confirmation') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'DeliveryNote') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'CreditNote') ?>
|
||||
</select>
|
||||
<tr><td><label for="iClient"><?= $this->l11n->getText('Billing', 'Client') ?></label>
|
||||
<tr><td><label for="iClient"><?= $this->l11n->getText('Billing', 'Backend', 'Client') ?></label>
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" id="iClient" name="client"></span>
|
||||
<tr><td><label for="iDelivery"><?= $this->l11n->getText('Billing', 'Delivery') ?></label>
|
||||
<tr><td><label for="iDelivery"><?= $this->l11n->getText('Billing', 'Backend', 'Delivery') ?></label>
|
||||
<tr><td><input type="datetime-local" id="iDelivery" name="delivery">
|
||||
<tr><td><label for="iDue"><?= $this->l11n->getText('Billing', 'Due') ?></label>
|
||||
<tr><td><label for="iDue"><?= $this->l11n->getText('Billing', 'Backend', 'Due') ?></label>
|
||||
<tr><td><input type="datetime-local" id="iDue" name="due">
|
||||
<tr><td><label for="iFreightage"><?= $this->l11n->getText('Billing', 'Freightage') ?></label>
|
||||
<tr><td><label for="iFreightage"><?= $this->l11n->getText('Billing', 'Backend', 'Freightage') ?></label>
|
||||
<tr><td><input type="number" id="iFreightage" name="freightage">
|
||||
<tr><td><label for="iShipment"><?= $this->l11n->getText('Billing', 'Shipment') ?></label>
|
||||
<tr><td><label for="iShipment"><?= $this->l11n->getText('Billing', 'Backend', 'Shipment') ?></label>
|
||||
<tr><td><select id="iShipment" name="shipment">
|
||||
<option>
|
||||
</select>
|
||||
<tr><td colspan="3"><input type="submit" value="<?= $this->l11n->getText(0, 'Create') ?>">
|
||||
<tr><td colspan="3"><input type="submit" value="<?= $this->l11n->getText(0, 'Backend', 'Create') ?>">
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-50 floatLeft">
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Invoice') ?></h1></header>
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iAddressS"><?= $this->l11n->getText('Billing', 'Addresses') ?></label>
|
||||
<tr><td><label for="iAddressS"><?= $this->l11n->getText('Billing', 'Backend', 'Addresses') ?></label>
|
||||
<tr><td><select id="iAddressS" name="addressS">
|
||||
<option>
|
||||
</select>
|
||||
<tr><td><label for="iIRecipient"><?= $this->l11n->getText('Billing', 'Recipient') ?></label>
|
||||
<tr><td><label for="iIRecipient"><?= $this->l11n->getText('Billing', 'Backend', 'Recipient') ?></label>
|
||||
<tr><td><input type="text" id="iIRecipient" name="irecipient">
|
||||
<tr><td><label for="iAddress"><?= $this->l11n->getText('Billing', 'Address') ?></label>
|
||||
<tr><td><label for="iAddress"><?= $this->l11n->getText('Billing', 'Backend', 'Address') ?></label>
|
||||
<tr><td><input type="text" id="iAddress" name="address">
|
||||
<tr><td><label for="iZip"><?= $this->l11n->getText('Billing', 'Zip') ?></label>
|
||||
<tr><td><label for="iZip"><?= $this->l11n->getText('Billing', 'Backend', 'Zip') ?></label>
|
||||
<tr><td><input type="text" id="iZip" name="zip">
|
||||
<tr><td><label for="iCity"><?= $this->l11n->getText('Billing', 'City') ?></label>
|
||||
<tr><td><label for="iCity"><?= $this->l11n->getText('Billing', 'Backend', 'City') ?></label>
|
||||
<tr><td><input type="text" id="iCity" name="city">
|
||||
<tr><td><label for="iCountry"><?= $this->l11n->getText('Billing', 'Country') ?></label>
|
||||
<tr><td><label for="iCountry"><?= $this->l11n->getText('Billing', 'Backend', 'Country') ?></label>
|
||||
<tr><td><input type="text" id="iCountry" name="country">
|
||||
</table>
|
||||
</form>
|
||||
|
|
@ -87,23 +87,23 @@ echo $this->getData('nav')->render(); ?>
|
|||
</section>
|
||||
|
||||
<section class="box w-50 floatLeft">
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Delivery') ?></h1></header>
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Backend', 'Delivery') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iAddressS"><?= $this->l11n->getText('Billing', 'Addresses') ?></label>
|
||||
<tr><td><label for="iAddressS"><?= $this->l11n->getText('Billing', 'Backend', 'Addresses') ?></label>
|
||||
<tr><td><select id="iAddressS" name="addressS">
|
||||
<option>
|
||||
</select>
|
||||
<tr><td><label for="iDRecipient"><?= $this->l11n->getText('Billing', 'Recipient') ?></label>
|
||||
<tr><td><label for="iDRecipient"><?= $this->l11n->getText('Billing', 'Backend', 'Recipient') ?></label>
|
||||
<tr><td><input type="text" id="iDRecipient" name="drecipient">
|
||||
<tr><td><label for="iAddress"><?= $this->l11n->getText('Billing', 'Address') ?></label>
|
||||
<tr><td><label for="iAddress"><?= $this->l11n->getText('Billing', 'Backend', 'Address') ?></label>
|
||||
<tr><td><input type="text" id="iAddress" name="address">
|
||||
<tr><td><label for="iZip"><?= $this->l11n->getText('Billing', 'Zip') ?></label>
|
||||
<tr><td><label for="iZip"><?= $this->l11n->getText('Billing', 'Backend', 'Zip') ?></label>
|
||||
<tr><td><input type="text" id="iZip" name="zip">
|
||||
<tr><td><label for="iCity"><?= $this->l11n->getText('Billing', 'City') ?></label>
|
||||
<tr><td><label for="iCity"><?= $this->l11n->getText('Billing', 'Backend', 'City') ?></label>
|
||||
<tr><td><input type="text" id="iCity" name="city">
|
||||
<tr><td><label for="iCountry"><?= $this->l11n->getText('Billing', 'Country') ?></label>
|
||||
<tr><td><label for="iCountry"><?= $this->l11n->getText('Billing', 'Backend', 'Country') ?></label>
|
||||
<tr><td><input type="text" id="iCountry" name="country">
|
||||
</table>
|
||||
</form>
|
||||
|
|
@ -114,26 +114,26 @@ echo $this->getData('nav')->render(); ?>
|
|||
<div class="tab">
|
||||
<div class="box w-100">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->getText('Billing', 'Invoice') ?></caption>
|
||||
<caption><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>
|
||||
<td><?= $this->l11n->getText('Billing', 'Item'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Variation'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Name'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Quantity'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Discount'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'DiscountP'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Bonus'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Tax'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Item'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Variation'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Backend', 'Name'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Quantity'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Discount'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'DiscountP'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Bonus'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Tax'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Net'); ?>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="8"><!-- todo: make this look nicer. even as alpha release this looks bad. -->
|
||||
<?= $this->l11n->getText('Billing', 'Freightage'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Net'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Tax'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Total'); ?>: 0.00
|
||||
<?= $this->l11n->getText('Billing', 'Backend', 'Freightage'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Backend', 'Net'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Backend', 'Tax'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Backend', 'Total'); ?>: 0.00
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><i class="fa fa-plus"></i> <i class="fa fa-chevron-up"></i> <i class="fa fa-chevron-down"></i>
|
||||
|
|
|
|||
|
|
@ -23,17 +23,17 @@ echo $this->getData('nav')->render(); ?>
|
|||
|
||||
<div class="box w-100">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->getText('Billing', 'Invoices') ?></caption>
|
||||
<caption><?= $this->l11n->getText('Billing', 'Backend', 'Invoices') ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td><?= $this->l11n->getText(0, 'ID'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Type'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'ClientID'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Client'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Gross'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Created'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Due'); ?>
|
||||
<td><?= $this->l11n->getText(0, 'Backend', 'ID'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Type'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'ClientID'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Backend', 'Client'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Gross'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Created'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Due'); ?>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="8"><?= $footerView->render(); ?>
|
||||
|
|
@ -41,7 +41,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
|
||||
<?php endforeach; ?>
|
||||
<?php if($count === 0) : ?>
|
||||
<tr><td colspan="8" class="empty"><?= $this->l11n->getText(0, 'Empty'); ?>
|
||||
<tr><td colspan="8" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
|
||||
<?php endif; ?>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -23,17 +23,17 @@ echo $this->getData('nav')->render(); ?>
|
|||
|
||||
<div class="box w-100">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->getText('Billing', 'Invoices') ?></caption>
|
||||
<caption><?= $this->l11n->getText('Billing', 'Backend', 'Invoices') ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td><?= $this->l11n->getText(0, 'ID'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Type'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'SupplierID'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Supplier'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Gross'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Created'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Due'); ?>
|
||||
<td><?= $this->l11n->getText(0, 'Backend', 'ID'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Type'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'SupplierID'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Backend', 'Supplier'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Gross'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Created'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Due'); ?>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="8"><?= $footerView->render(); ?>
|
||||
|
|
@ -41,7 +41,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
|
||||
<?php endforeach; ?>
|
||||
<?php if($count === 0) : ?>
|
||||
<tr><td colspan="8" class="empty"><?= $this->l11n->getText(0, 'Empty'); ?>
|
||||
<tr><td colspan="8" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
|
||||
<?php endif; ?>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -22,64 +22,64 @@ echo $this->getData('nav')->render(); ?>
|
|||
<div class="tabular-2">
|
||||
<div class="box">
|
||||
<ul class="tab-links">
|
||||
<li><label for="c-tab-1"><?= $this->l11n->getText('Billing', 'Invoice') ?></label></li>
|
||||
<li><label for="c-tab-2"><?= $this->l11n->getText('Billing', 'Items') ?></label></li>
|
||||
<li><label for="c-tab-1"><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?></label></li>
|
||||
<li><label for="c-tab-2"><?= $this->l11n->getText('Billing', 'Backend', 'Items') ?></label></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tab-content">
|
||||
<input type="radio" id="c-tab-1" name="tabular-2" checked>
|
||||
<div class="tab">
|
||||
<section class="box w-50 floatLeft">
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Invoice') ?></h1></header>
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iSource"><?= $this->l11n->getText('Billing', 'Source') ?></label>
|
||||
<tr><td><label for="iSource"><?= $this->l11n->getText('Billing', 'Backend', 'Source') ?></label>
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" id="iSource" name="source"></span>
|
||||
<tr><td><label for="iType"><?= $this->l11n->getText('Billing', 'Type') ?></label>
|
||||
<tr><td><label for="iType"><?= $this->l11n->getText('Billing', 'Backend', 'Type') ?></label>
|
||||
<tr><td><select id="iType" name="type">
|
||||
<option><?= $this->l11n->getText('Billing', 'Invoice') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Offer') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Confirmation') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'DeliveryNote') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'CreditNote') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'Offer') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'Confirmation') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'DeliveryNote') ?>
|
||||
<option><?= $this->l11n->getText('Billing', 'Backend', 'CreditNote') ?>
|
||||
</select>
|
||||
<tr><td><label for="iClient"><?= $this->l11n->getText('Billing', 'Client') ?></label>
|
||||
<tr><td><label for="iClient"><?= $this->l11n->getText('Billing', 'Backend', 'Client') ?></label>
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" id="iClient" name="client"></span>
|
||||
<tr><td><label for="iDelivery"><?= $this->l11n->getText('Billing', 'Delivery') ?></label>
|
||||
<tr><td><label for="iDelivery"><?= $this->l11n->getText('Billing', 'Backend', 'Delivery') ?></label>
|
||||
<tr><td><input type="datetime-local" id="iDelivery" name="delivery">
|
||||
<tr><td><label for="iDue"><?= $this->l11n->getText('Billing', 'Due') ?></label>
|
||||
<tr><td><label for="iDue"><?= $this->l11n->getText('Billing', 'Backend', 'Due') ?></label>
|
||||
<tr><td><input type="datetime-local" id="iDue" name="due">
|
||||
<tr><td><label for="iFreightage"><?= $this->l11n->getText('Billing', 'Freightage') ?></label>
|
||||
<tr><td><label for="iFreightage"><?= $this->l11n->getText('Billing', 'Backend', 'Freightage') ?></label>
|
||||
<tr><td><input type="number" id="iFreightage" name="freightage">
|
||||
<tr><td><label for="iShipment"><?= $this->l11n->getText('Billing', 'Shipment') ?></label>
|
||||
<tr><td><label for="iShipment"><?= $this->l11n->getText('Billing', 'Backend', 'Shipment') ?></label>
|
||||
<tr><td><select id="iShipment" name="shipment">
|
||||
<option>
|
||||
</select>
|
||||
<tr><td colspan="3"><input type="submit" value="<?= $this->l11n->getText(0, 'Create') ?>">
|
||||
<tr><td colspan="3"><input type="submit" value="<?= $this->l11n->getText(0, 'Backend', 'Create') ?>">
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-50 floatLeft">
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Invoice') ?></h1></header>
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iAddressS"><?= $this->l11n->getText('Billing', 'Addresses') ?></label>
|
||||
<tr><td><label for="iAddressS"><?= $this->l11n->getText('Billing', 'Backend', 'Addresses') ?></label>
|
||||
<tr><td><select id="iAddressS" name="addressS">
|
||||
<option>
|
||||
</select>
|
||||
<tr><td><label for="iIRecipient"><?= $this->l11n->getText('Billing', 'Recipient') ?></label>
|
||||
<tr><td><label for="iIRecipient"><?= $this->l11n->getText('Billing', 'Backend', 'Recipient') ?></label>
|
||||
<tr><td><input type="text" id="iIRecipient" name="irecipient">
|
||||
<tr><td><label for="iAddress"><?= $this->l11n->getText('Billing', 'Address') ?></label>
|
||||
<tr><td><label for="iAddress"><?= $this->l11n->getText('Billing', 'Backend', 'Address') ?></label>
|
||||
<tr><td><input type="text" id="iAddress" name="address">
|
||||
<tr><td><label for="iZip"><?= $this->l11n->getText('Billing', 'Zip') ?></label>
|
||||
<tr><td><label for="iZip"><?= $this->l11n->getText('Billing', 'Backend', 'Zip') ?></label>
|
||||
<tr><td><input type="text" id="iZip" name="zip">
|
||||
<tr><td><label for="iCity"><?= $this->l11n->getText('Billing', 'City') ?></label>
|
||||
<tr><td><label for="iCity"><?= $this->l11n->getText('Billing', 'Backend', 'City') ?></label>
|
||||
<tr><td><input type="text" id="iCity" name="city">
|
||||
<tr><td><label for="iCountry"><?= $this->l11n->getText('Billing', 'Country') ?></label>
|
||||
<tr><td><label for="iCountry"><?= $this->l11n->getText('Billing', 'Backend', 'Country') ?></label>
|
||||
<tr><td><input type="text" id="iCountry" name="country">
|
||||
</table>
|
||||
</form>
|
||||
|
|
@ -87,23 +87,23 @@ echo $this->getData('nav')->render(); ?>
|
|||
</section>
|
||||
|
||||
<section class="box w-50 floatLeft">
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Delivery') ?></h1></header>
|
||||
<header><h1><?= $this->l11n->getText('Billing', 'Backend', 'Delivery') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iAddressS"><?= $this->l11n->getText('Billing', 'Addresses') ?></label>
|
||||
<tr><td><label for="iAddressS"><?= $this->l11n->getText('Billing', 'Backend', 'Addresses') ?></label>
|
||||
<tr><td><select id="iAddressS" name="addressS">
|
||||
<option>
|
||||
</select>
|
||||
<tr><td><label for="iDRecipient"><?= $this->l11n->getText('Billing', 'Recipient') ?></label>
|
||||
<tr><td><label for="iDRecipient"><?= $this->l11n->getText('Billing', 'Backend', 'Recipient') ?></label>
|
||||
<tr><td><input type="text" id="iDRecipient" name="drecipient">
|
||||
<tr><td><label for="iAddress"><?= $this->l11n->getText('Billing', 'Address') ?></label>
|
||||
<tr><td><label for="iAddress"><?= $this->l11n->getText('Billing', 'Backend', 'Address') ?></label>
|
||||
<tr><td><input type="text" id="iAddress" name="address">
|
||||
<tr><td><label for="iZip"><?= $this->l11n->getText('Billing', 'Zip') ?></label>
|
||||
<tr><td><label for="iZip"><?= $this->l11n->getText('Billing', 'Backend', 'Zip') ?></label>
|
||||
<tr><td><input type="text" id="iZip" name="zip">
|
||||
<tr><td><label for="iCity"><?= $this->l11n->getText('Billing', 'City') ?></label>
|
||||
<tr><td><label for="iCity"><?= $this->l11n->getText('Billing', 'Backend', 'City') ?></label>
|
||||
<tr><td><input type="text" id="iCity" name="city">
|
||||
<tr><td><label for="iCountry"><?= $this->l11n->getText('Billing', 'Country') ?></label>
|
||||
<tr><td><label for="iCountry"><?= $this->l11n->getText('Billing', 'Backend', 'Country') ?></label>
|
||||
<tr><td><input type="text" id="iCountry" name="country">
|
||||
</table>
|
||||
</form>
|
||||
|
|
@ -114,26 +114,26 @@ echo $this->getData('nav')->render(); ?>
|
|||
<div class="tab">
|
||||
<div class="box w-100">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->getText('Billing', 'Invoice') ?></caption>
|
||||
<caption><?= $this->l11n->getText('Billing', 'Backend', 'Invoice') ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>
|
||||
<td><?= $this->l11n->getText('Billing', 'Item'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Variation'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Name'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Quantity'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Discount'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'DiscountP'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Bonus'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Tax'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Item'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Variation'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Backend', 'Name'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Quantity'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Discount'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'DiscountP'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Bonus'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Tax'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Net'); ?>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="8"><!-- todo: make this look nicer. even as alpha release this looks bad. -->
|
||||
<?= $this->l11n->getText('Billing', 'Freightage'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Net'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Tax'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Total'); ?>: 0.00
|
||||
<?= $this->l11n->getText('Billing', 'Backend', 'Freightage'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Backend', 'Net'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Backend', 'Tax'); ?>: 0.00 -
|
||||
<?= $this->l11n->getText('Billing', 'Backend', 'Total'); ?>: 0.00
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><i class="fa fa-plus"></i> <i class="fa fa-chevron-up"></i> <i class="fa fa-chevron-down"></i>
|
||||
|
|
|
|||
|
|
@ -23,17 +23,17 @@ echo $this->getData('nav')->render(); ?>
|
|||
|
||||
<div class="box w-100">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->getText('Billing', 'Invoices') ?></caption>
|
||||
<caption><?= $this->l11n->getText('Billing', 'Backend', 'Invoices') ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td><?= $this->l11n->getText(0, 'ID'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Type'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'ClientID'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Client'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Gross'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Created'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Due'); ?>
|
||||
<td><?= $this->l11n->getText(0, 'Backend', 'ID'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Type'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'ClientID'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Backend', 'Client'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Gross'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Created'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Due'); ?>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="8"><?= $footerView->render(); ?>
|
||||
|
|
@ -41,7 +41,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
|
||||
<?php endforeach; ?>
|
||||
<?php if($count === 0) : ?>
|
||||
<tr><td colspan="8" class="empty"><?= $this->l11n->getText(0, 'Empty'); ?>
|
||||
<tr><td colspan="8" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
|
||||
<?php endif; ?>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -23,17 +23,17 @@ echo $this->getData('nav')->render(); ?>
|
|||
|
||||
<div class="box w-100">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->getText('Billing', 'Invoices') ?></caption>
|
||||
<caption><?= $this->l11n->getText('Billing', 'Backend', 'Invoices') ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td><?= $this->l11n->getText(0, 'ID'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Type'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'SupplierID'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Supplier'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Gross'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Created'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Due'); ?>
|
||||
<td><?= $this->l11n->getText(0, 'Backend', 'ID'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Type'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'SupplierID'); ?>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Billing', 'Backend', 'Supplier'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Net'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Gross'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Created'); ?>
|
||||
<td><?= $this->l11n->getText('Billing', 'Backend', 'Due'); ?>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="8"><?= $footerView->render(); ?>
|
||||
|
|
@ -41,7 +41,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
|
||||
<?php endforeach; ?>
|
||||
<?php if($count === 0) : ?>
|
||||
<tr><td colspan="8" class="empty"><?= $this->l11n->getText(0, 'Empty'); ?>
|
||||
<tr><td colspan="8" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
|
||||
<?php endif; ?>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user