mirror of
https://github.com/Karaka-Management/oms-ItemManagement.git
synced 2026-02-16 12:18:41 +00:00
fix lang import sorting
This commit is contained in:
parent
1c5254f0ab
commit
615366d3ce
|
|
@ -200,10 +200,10 @@ echo $this->getData('nav')->render();
|
||||||
<table id="iSalesItemList" class="default">
|
<table id="iSalesItemList" class="default">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Id
|
<td><?= $this->getHtml('Number'); ?>
|
||||||
<td class="wf-100">Name
|
<td class="wf-100"><?= $this->getHtml('Name'); ?>
|
||||||
<td>Country
|
<td><?= $this->getHtml('Country'); ?>
|
||||||
<td>Net
|
<td><?= $this->getHtml('Net'); ?>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php $i = -1; foreach ($topCustomers[0] as $client) : ++$i;
|
<?php $i = -1; foreach ($topCustomers[0] as $client) : ++$i;
|
||||||
$url = UriFactory::build('{/prefix}sales/client/profile?id=' . $client->getId());
|
$url = UriFactory::build('{/prefix}sales/client/profile?id=' . $client->getId());
|
||||||
|
|
@ -220,7 +220,7 @@ echo $this->getData('nav')->render();
|
||||||
|
|
||||||
<div class="col-xs-12 col-lg-6">
|
<div class="col-xs-12 col-lg-6">
|
||||||
<section class="portlet">
|
<section class="portlet">
|
||||||
<div class="portlet-head">Sales</div>
|
<div class="portlet-head"><?= $this->getHtml('Sales'); ?></div>
|
||||||
<div class="portlet-body">
|
<div class="portlet-body">
|
||||||
<canvas id="sales-region" data-chart='{
|
<canvas id="sales-region" data-chart='{
|
||||||
"type": "bar",
|
"type": "bar",
|
||||||
|
|
@ -236,7 +236,7 @@ echo $this->getData('nav')->render();
|
||||||
],
|
],
|
||||||
"datasets": [
|
"datasets": [
|
||||||
{
|
{
|
||||||
"label": "Margin",
|
"label": "<?= $this->getHtml('Margin'); ?>",
|
||||||
"type": "line",
|
"type": "line",
|
||||||
"data": [
|
"data": [
|
||||||
<?php
|
<?php
|
||||||
|
|
@ -253,7 +253,7 @@ echo $this->getData('nav')->render();
|
||||||
"backgroundColor": "rgb(255, 99, 132)"
|
"backgroundColor": "rgb(255, 99, 132)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Sales",
|
"label": "<?= $this->getHtml('Sales'); ?>",
|
||||||
"type": "bar",
|
"type": "bar",
|
||||||
"data": [
|
"data": [
|
||||||
<?php
|
<?php
|
||||||
|
|
@ -283,7 +283,7 @@ echo $this->getData('nav')->render();
|
||||||
"position": "right",
|
"position": "right",
|
||||||
"scaleLabel": {
|
"scaleLabel": {
|
||||||
"display": true,
|
"display": true,
|
||||||
"labelString": "Margin %"
|
"labelString": "<?= $this->getHtml('Margin'); ?> %"
|
||||||
},
|
},
|
||||||
"gridLines": {
|
"gridLines": {
|
||||||
"display": false
|
"display": false
|
||||||
|
|
@ -341,7 +341,7 @@ echo $this->getData('nav')->render();
|
||||||
|
|
||||||
<div class="col-xs-12 col-lg-6">
|
<div class="col-xs-12 col-lg-6">
|
||||||
<section class="portlet">
|
<section class="portlet">
|
||||||
<div class="portlet-head">Countries</div>
|
<div class="portlet-head"><?= $this->getHtml('Countries'); ?></div>
|
||||||
<div class="portlet-body">
|
<div class="portlet-body">
|
||||||
<canvas id="sales-region" data-chart='{
|
<canvas id="sales-region" data-chart='{
|
||||||
"type": "bar",
|
"type": "bar",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user