Report Changes

This commit is contained in:
diashalabi 2021-10-07 11:36:47 +03:00
parent c03ed25162
commit 96c370dd34
7 changed files with 126 additions and 126 deletions

View File

@ -48,6 +48,7 @@ $(document).ready( function () {
processing: true, processing: true,
serverSide: true, serverSide: true,
columns: [ columns: [
{ data: 'id', orderable: false },
{ {
data: 'name', data: 'name',
render: function ( data, type, row, meta ) { render: function ( data, type, row, meta ) {

View File

@ -395,4 +395,5 @@ return [
'pages_without_meta_information_report' => 'Pages Without Meta Information Report', 'pages_without_meta_information_report' => 'Pages Without Meta Information Report',
'page' => 'Page', 'page' => 'Page',
'undefined_page' => 'Undefined Page', 'undefined_page' => 'Undefined Page',
'id' => 'ID',
]; ];

View File

@ -1,4 +1,3 @@
<div class="row">
{% set reports = [ {% set reports = [
{ {
'title': trans('visiosoft.module.advs::field.product_stock_report'), 'title': trans('visiosoft.module.advs::field.product_stock_report'),
@ -20,6 +19,7 @@
'title': trans('visiosoft.module.advs::field.unexplained_products_report'), 'title': trans('visiosoft.module.advs::field.unexplained_products_report'),
'id': 'unexplainedReport', 'id': 'unexplainedReport',
'columns': [ 'columns': [
trans('visiosoft.module.advs::field.id'),
trans('visiosoft.module.advs::field.product'), trans('visiosoft.module.advs::field.product'),
], ],
}, },
@ -60,7 +60,6 @@
</div> </div>
</div> </div>
{% endfor %} {% endfor %}
</div>
<script> <script>
const productsReportTrans = { const productsReportTrans = {

View File

@ -12,6 +12,7 @@ $(document).ready( function () {
processing: true, processing: true,
serverSide: true, serverSide: true,
columns: [ columns: [
{ data: 'id', orderable: false },
{ {
data: 'name', data: 'name',
render: function ( data, type, row, meta ) { render: function ( data, type, row, meta ) {

View File

@ -43,4 +43,5 @@ return [
'undefined_category' => 'Undefined Category', 'undefined_category' => 'Undefined Category',
'categories_with_no_meta_report' => 'Categories with No Meta Report', 'categories_with_no_meta_report' => 'Categories with No Meta Report',
'category' => 'Category', 'category' => 'Category',
'id' => 'ID',
]; ];

View File

@ -1,10 +1,10 @@
<div class="row">
{% set reports = [ {% set reports = [
{ {
'title': trans('visiosoft.module.cats::field.categories_with_no_meta_report'), 'title': trans('visiosoft.module.cats::field.categories_with_no_meta_report'),
'id': 'metaCategoryReport', 'id': 'metaCategoryReport',
'columns': [ 'columns': [
trans('visiosoft.module.cats::field.category'), trans('visiosoft.module.cats::field.category'),
trans('visiosoft.module.cats::field.id'),
], ],
}, },
] %} ] %}
@ -30,7 +30,6 @@
</div> </div>
</div> </div>
{% endfor %} {% endfor %}
</div>
<script> <script>
const categoryReportTrans = { const categoryReportTrans = {

View File

@ -1,4 +1,3 @@
<div class="row">
{% set reports = [ {% set reports = [
{ {
'title': trans('visiosoft.module.profile::field.new_membership_report'), 'title': trans('visiosoft.module.profile::field.new_membership_report'),
@ -39,7 +38,6 @@
</div> </div>
</div> </div>
{% endfor %} {% endfor %}
</div>
<script> <script>
const usersReportTrans = { const usersReportTrans = {