summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorGeo Xalkis <gx23100@gmail.com>2023-07-30 17:17:44 +0300
committerGeo Xalkis <gx23100@gmail.com>2023-07-30 17:17:44 +0300
commit866ee315d09b1b8ecfda9d7bed516523fc1b82e4 (patch)
treef332728ec8f97ee94a92afd8429f57064b719fcc /public
parent283363bca1a12444925d6a2beadfad4d050197d1 (diff)
downloadgyraf1gov-866ee315d09b1b8ecfda9d7bed516523fc1b82e4.tar.gz
gyraf1gov-866ee315d09b1b8ecfda9d7bed516523fc1b82e4.tar.bz2
gyraf1gov-866ee315d09b1b8ecfda9d7bed516523fc1b82e4.zip
some changes (in progress)
Diffstat (limited to 'public')
-rw-r--r--public/app/views/js/pdf-designer/penalty.php8
-rw-r--r--public/app/views/templates/admin_petitions.php1
-rw-r--r--public/assets/js/panel/admin_petitions.js3
3 files changed, 8 insertions, 4 deletions
diff --git a/public/app/views/js/pdf-designer/penalty.php b/public/app/views/js/pdf-designer/penalty.php
index d452ed4..1b8b5ea 100644
--- a/public/app/views/js/pdf-designer/penalty.php
+++ b/public/app/views/js/pdf-designer/penalty.php
@@ -29,15 +29,15 @@ function designer(data, defines) {
title: data.subject,
author: defines.organization,
subject: data.subject,
- keywords: [petition, year].join(', '),
+ keywords: [petition, year].join(', ')
},
content: [
{
text: [
+ 'Καταγραφή Ενέργειας Υποστήριξης Εύρυθμης Λειτουργείας\n',
'ΠΡΑΚΤΙΚΟ ',
- 'something',
- ' / ',
- 'something else\n\n'
+ 'αριθμός πρακτικού',
+ '\n\n'
],
style: 'header'
},
diff --git a/public/app/views/templates/admin_petitions.php b/public/app/views/templates/admin_petitions.php
index 2a8479d..52f2a89 100644
--- a/public/app/views/templates/admin_petitions.php
+++ b/public/app/views/templates/admin_petitions.php
@@ -51,6 +51,7 @@
<th class="dt-protocol">Αρ.Πρωτόκολλου</th>
<th class="dt-user">Χρήστης</th>
<!-- <th class="dt-signature">Signature</th> -->
+ <th class="dt-type">Είδος</th>
<th class="dt-datepost">Ημερ. Καταχώρισης</th>
<th class="dt-actions"></th>
</thead>
diff --git a/public/assets/js/panel/admin_petitions.js b/public/assets/js/panel/admin_petitions.js
index f3604fa..2b7c868 100644
--- a/public/assets/js/panel/admin_petitions.js
+++ b/public/assets/js/panel/admin_petitions.js
@@ -2,6 +2,7 @@
// -----------------------------------------------------------------------------
var petitions = [];
var table;
+var types = [ '', 'Αίτηση', 'Ποινολόγιο' ];
@@ -101,6 +102,7 @@ $(document).ready(function() {
subject: el.subject,
protocol: el.protocol,
username: el.UserName,
+ type: types[el.type_id],
signature: el.signature,
datepost: el.creation_date,
actions: create_actions_html(el.id, el.signature)
@@ -122,6 +124,7 @@ $(document).ready(function() {
{ data: 'protocol' },
{ data: 'username' },
// { data: 'signature' },
+ { data: 'type' },
{ data: 'datepost' },
{ data: 'actions', class: 'dt-actions' }
]