Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
frontend
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Antrian
frontend
Commits
17518758
Commit
17518758
authored
Sep 23, 2020
by
Indra Raja
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mengubah mapping table pada database
parent
eb3c1e11
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
78 additions
and
199 deletions
+78
-199
module/Application/src/Controller/ApiController.php
module/Application/src/Controller/ApiController.php
+43
-13
module/Application/src/Model/Param/Storage/Mysql.php
module/Application/src/Model/Param/Storage/Mysql.php
+34
-34
module/Application/view/application/admin/dasboard.phtml
module/Application/view/application/admin/dasboard.phtml
+0
-145
public/action-js/antrian-js/action-admin.js
public/action-js/antrian-js/action-admin.js
+1
-1
public/action-js/antrian-js/action-kelolapoli.js
public/action-js/antrian-js/action-kelolapoli.js
+0
-6
No files found.
module/Application/src/Controller/ApiController.php
View file @
17518758
...
...
@@ -138,7 +138,7 @@ class ApiController extends \Application\Master\GlobalActionController {
$tb_register_antrian
=
'register_antrian'
;
$tb_register_dokter
=
'register_dokter'
;
$tb_dokter
=
'dokter'
;
$tb_dokter
=
'dokter
_to_poli
'
;
$tb_ruang
=
'ruang'
;
$tb_antrian
=
'antrian'
;
$tb_antrian_pasien
=
'antrian_pasien'
;
...
...
@@ -380,7 +380,7 @@ class ApiController extends \Application\Master\GlobalActionController {
$request
=
$this
->
getRequest
();
$post
=
$request
->
getPost
();
$tb_dokter
=
'dokter'
;
$tb_dokter
=
'dokter
_to_poli
'
;
$tb_ruang
=
'ruang'
;
...
...
@@ -621,7 +621,7 @@ class ApiController extends \Application\Master\GlobalActionController {
$test
=
new
\Application\Model\Param
(
$storage
);
$tabel
=
'dokter'
;
$tabel
=
'dokter
_to_poli
'
;
$where
=
'id_poli='
.
$post
->
id
;
$res
=
$test
->
deleteGlobal
(
$tabel
,
$where
);
$tabel
=
'ruang'
;
...
...
@@ -673,6 +673,7 @@ class ApiController extends \Application\Master\GlobalActionController {
$request
=
$this
->
getRequest
();
$post
=
$request
->
getPost
();
$table_dokter_to_poli
=
'dokter_to_poli'
;
$table_dokter
=
'dokter'
;
if
(
$request
->
isPost
())
{
...
...
@@ -689,18 +690,28 @@ class ApiController extends \Application\Master\GlobalActionController {
//print_r($poli);die;
$dataArraydokter
=
array
(
$DokterPoli
=
array
(
'nama_dokter'
=>
$nama_dokter
,
'kode_dokter'
=>
$kode_dokter
,
'id_poli'
=>
$poli
,
'id_condition'
=>
1
,
'create_date'
=>
gmdate
(
"Y-m-d H:i:s"
,
time
()
+
60
*
60
*
7
),
);
$Dokter
=
array
(
'nama_dokter'
=>
$nama_dokter
,
'kode_dokter'
=>
$kode_dokter
,
'id_poli'
=>
$poli
,
'id_condition'
=>
1
);
// print_r($dataArraydokter);die;
$param
->
saveGlobal
(
$dataArraydokter
,
$table_dokter
);
$param
->
saveGlobal
(
$DokterPoli
,
$table_dokter_to_poli
);
$param
->
saveGlobal
(
$Dokter
,
$table_dokter
);
$result
->
code
=
0
;
...
...
@@ -737,21 +748,36 @@ class ApiController extends \Application\Master\GlobalActionController {
$poli
=
$post
->
ipoli
;
$condition
=
$post
->
icondition
;
$
dataArraydokter
=
array
(
$
DokterPoli
=
array
(
'nama_dokter'
=>
$nama_dokter
,
'kode_dokter'
=>
$kode_dokter
,
'id_poli'
=>
$poli
,
'id_condition'
=>
$condition
,
);
$Dokter
=
array
(
'nama_dokter'
=>
$nama_dokter
,
'kode_dokter'
=>
$kode_dokter
,
);
$load
=
$param
->
loadkeloladokter
(
$post
->
id
);
// print_r($dataArraydokter);die;
$table_dokter
=
'dokter
'
;
$table_dokter
_to_poli
=
'dokter_to_poli
'
;
$where
=
'id_dokter='
.
$id_dokter
;
// print_r ($where);die;
$param
->
updateGlobal
(
$table_dokter
,
$dataArraydokter
,
$where
);
$param
->
updateGlobal
(
$table_dokter_to_poli
,
$DokterPoli
,
$where
);
// print_r($dataArraydokter);die;
$table_dokter
=
'dokter'
;
$where
=
'id_dokter='
.
$id_dokter
;
// print_r ($where);die;
$param
->
updateGlobal
(
$table_dokter
,
$Dokter
,
$where
);
$result
->
code
=
0
;
$result
->
info
=
'ok'
;
...
...
@@ -778,10 +804,14 @@ class ApiController extends \Application\Master\GlobalActionController {
$test
=
new
\Application\Model\Param
(
$storage
);
$tabel
=
'dokter
'
;
$tabel
_dokter_to_poli
=
'dokter_to_poli
'
;
$where
=
'id_dokter='
.
$post
->
id
;
$res
=
$test
->
deleteGlobal
(
$tabel
,
$where
);
$tabel_dokter
=
'dokter'
;
$res_tabel_dokter_to_poli
=
$test
->
deleteGlobal
(
$tabel_dokter_to_poli
,
$where
);
$res_tabel_dokter
=
$test
->
deleteGlobal
(
$tabel_dokter
,
$where
);
if
(
$load
->
code
==
0
){
$result
->
code
=
$result
::
CODE_SUCCESS
;
...
...
module/Application/src/Model/Param/Storage/Mysql.php
View file @
17518758
This diff is collapsed.
Click to expand it.
module/Application/view/application/admin/dasboard.phtml
View file @
17518758
<div
class=
"d-sm-flex align-items-center justify-content-between mb-4"
>
<h1
class=
"h3 mb-0 text-gray-800"
>
Dashboard
</h1>
<a
href=
"#"
class=
"d-none d-sm-inline-block btn btn-sm btn-primary shadow-sm"
><i
class=
"fas fa-download fa-sm text-white-50"
></i>
Generate Report
</a>
</div>
<!-- Content Row -->
<div
class=
"row"
>
<!-- Earnings (Monthly) Card Example -->
<div
class=
"col-xl-3 col-md-6 mb-4"
>
<div
class=
"card border-left-primary shadow h-100 py-2"
>
<div
class=
"card-body"
>
<div
class=
"row no-gutters align-items-center"
>
<div
class=
"col mr-2"
>
<div
class=
"text-xs font-weight-bold text-primary text-uppercase mb-1"
>
Earnings (Monthly)
</div>
<div
class=
"h5 mb-0 font-weight-bold text-gray-800"
>
$40,000
</div>
</div>
<div
class=
"col-auto"
>
<i
class=
"fas fa-calendar fa-2x text-gray-300"
></i>
</div>
</div>
</div>
</div>
</div>
<!-- Earnings (Monthly) Card Example -->
<div
class=
"col-xl-3 col-md-6 mb-4"
>
<div
class=
"card border-left-success shadow h-100 py-2"
>
<div
class=
"card-body"
>
<div
class=
"row no-gutters align-items-center"
>
<div
class=
"col mr-2"
>
<div
class=
"text-xs font-weight-bold text-success text-uppercase mb-1"
>
Earnings (Annual)
</div>
<div
class=
"h5 mb-0 font-weight-bold text-gray-800"
>
$215,000
</div>
</div>
<div
class=
"col-auto"
>
<i
class=
"fas fa-dollar-sign fa-2x text-gray-300"
></i>
</div>
</div>
</div>
</div>
</div>
<!-- Pending Requests Card Example -->
<div
class=
"col-xl-3 col-md-6 mb-4"
>
<div
class=
"card border-left-warning shadow h-100 py-2"
>
<div
class=
"card-body"
>
<div
class=
"row no-gutters align-items-center"
>
<div
class=
"col mr-2"
>
<div
class=
"text-xs font-weight-bold text-warning text-uppercase mb-1"
>
Pending Requests
</div>
<div
class=
"h5 mb-0 font-weight-bold text-gray-800"
>
18
</div>
</div>
<div
class=
"col-auto"
>
<i
class=
"fas fa-comments fa-2x text-gray-300"
></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Content Row -->
<div
class=
"row"
>
<!-- Area Chart -->
<div
class=
"col-xl-8 col-lg-7"
>
<div
class=
"card shadow mb-4"
>
<!-- Card Header - Dropdown -->
<div
class=
"card-header py-3 d-flex flex-row align-items-center justify-content-between"
>
<h6
class=
"m-0 font-weight-bold text-primary"
>
Earnings Overview
</h6>
<div
class=
"dropdown no-arrow"
>
<a
class=
"dropdown-toggle"
href=
"#"
role=
"button"
id=
"dropdownMenuLink"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"false"
>
<i
class=
"fas fa-ellipsis-v fa-sm fa-fw text-gray-400"
></i>
</a>
<div
class=
"dropdown-menu dropdown-menu-right shadow animated--fade-in"
aria-labelledby=
"dropdownMenuLink"
>
<div
class=
"dropdown-header"
>
Dropdown Header:
</div>
<a
class=
"dropdown-item"
href=
"#"
>
Action
</a>
<a
class=
"dropdown-item"
href=
"#"
>
Another action
</a>
<div
class=
"dropdown-divider"
></div>
<a
class=
"dropdown-item"
href=
"#"
>
Something else here
</a>
</div>
</div>
</div>
<!-- Card Body -->
<div
class=
"card-body"
>
<div
class=
"chart-area"
>
<canvas
id=
"myAreaChart"
></canvas>
</div>
</div>
</div>
</div>
<!-- Pie Chart -->
<div
class=
"col-xl-4 col-lg-5"
>
<div
class=
"card shadow mb-4"
>
<!-- Card Header - Dropdown -->
<div
class=
"card-header py-3 d-flex flex-row align-items-center justify-content-between"
>
<h6
class=
"m-0 font-weight-bold text-primary"
>
Revenue Sources
</h6>
<div
class=
"dropdown no-arrow"
>
<a
class=
"dropdown-toggle"
href=
"#"
role=
"button"
id=
"dropdownMenuLink"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"false"
>
<i
class=
"fas fa-ellipsis-v fa-sm fa-fw text-gray-400"
></i>
</a>
<div
class=
"dropdown-menu dropdown-menu-right shadow animated--fade-in"
aria-labelledby=
"dropdownMenuLink"
>
<div
class=
"dropdown-header"
>
Dropdown Header:
</div>
<a
class=
"dropdown-item"
href=
"#"
>
Action
</a>
<a
class=
"dropdown-item"
href=
"#"
>
Another action
</a>
<div
class=
"dropdown-divider"
></div>
<a
class=
"dropdown-item"
href=
"#"
>
Something else here
</a>
</div>
</div>
</div>
<!-- Card Body -->
<div
class=
"card-body"
>
<div
class=
"chart-pie pt-4 pb-2"
>
<canvas
id=
"myPieChart"
></canvas>
</div>
<div
class=
"mt-4 text-center small"
>
<span
class=
"mr-2"
>
<i
class=
"fas fa-circle text-primary"
></i>
Direct
</span>
<span
class=
"mr-2"
>
<i
class=
"fas fa-circle text-success"
></i>
Social
</span>
<span
class=
"mr-2"
>
<i
class=
"fas fa-circle text-info"
></i>
Referral
</span>
</div>
</div>
</div>
</div>
<p
class=
"mb-0"
>
Before working with this theme, you should become familiar with the Bootstrap framework, especially the utility classes.
</p>
</div>
</div>
<!-- /.container-fluid -->
</div>
<!-- End of Main Content -->
public/action-js/antrian-js/action-admin.js
View file @
17518758
...
...
@@ -189,7 +189,7 @@ function tampilangka() {
$
(
'
#btnNext
'
).
prop
(
'
disabled
'
,
true
);
$
(
'
#btnCall
'
).
prop
(
'
disabled
'
,
true
);
$
(
'
#btnServed
'
).
prop
(
'
disabled
'
,
true
);
$
(
'
#btnMissed
'
).
prop
(
'
disabled
'
,
fals
e
);
$
(
'
#btnMissed
'
).
prop
(
'
disabled
'
,
tru
e
);
$
(
'
#btnDone
'
).
prop
(
'
disabled
'
,
false
);
}
else
if
(
res
[
'
status_code
'
]
==
10
)
{
$
(
'
#no_antrian
'
).
empty
();
...
...
public/action-js/antrian-js/action-kelolapoli.js
View file @
17518758
...
...
@@ -168,12 +168,6 @@ function editdatapoli(id_poli) {
location
.
reload
();
});
//
//window.onload
//location.reload()
}
else
{
swal
({
title
:
""
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment