Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
smart_core_connect
/
core-connect
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a8c1e751
authored
Jun 01, 2018
by
Teeradone Darunnat
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'integration' into teeradone
parents
32ba9f05
82cf1067
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
27 deletions
+24
-27
www/src/Template/UserCards/view_card.ctp
+24
-27
No files found.
www/src/Template/UserCards/view_card.ctp
View file @
a8c1e751
...
...
@@ -18,13 +18,13 @@ use Cake\I18n\Time;
<div class="col-xs-8">
<div style="font-size: 17px">
<br>
<label>
id
<label>
<label>
<?php echo __('id') ?>
<label>
</div>
<div>
<?php echo $value['card_code'] ?>
</div>
<div>
<label style="font-size: 17px">
ชื่อ
</label>
<label style="font-size: 17px">
<?php echo __('Name') ?>
</label>
<?php echo $value['prefix_name_th'].$value['firstname_th'].' '.$value['lastname_th'] ?>
</div>
</div>
...
...
@@ -34,7 +34,7 @@ use Cake\I18n\Time;
</div>
<div class="row">
<div class="col-xs-10">
<label style="font-size: 17px">
ตำแหน่ง
</label>
<label style="font-size: 17px">
<?php echo __('Position') ?>
</label>
<?php echo $value['position_name'] ?>
</div>
</div>
...
...
@@ -57,10 +57,10 @@ use Cake\I18n\Time;
</div>
<div class="row text-center">
<div class="col-xs-6">
<label style="font-size: 17px">
วันออกบัตร
</label>
<label style="font-size: 17px">
<?php echo __('Card issue') ?>
</label>
</div>
<div class="col-xs-6">
<label style="font-size: 17px">
วันหมดออายุ
</label>
<label style="font-size: 17px">
<?php echo __('Old age') ?>
</label>
</div>
</div>
</div>
...
...
@@ -73,42 +73,42 @@ use Cake\I18n\Time;
<div class="col-xs-12 col-sm-12 col-md-12">
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<h4>
ข้อมูลบริษัท
</h4>
<h4>
<?php echo __('Company Information') ?>
</h4>
</div>
</div>
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
ชื่อ
</label>
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
<?php echo __('Firstname') ?>
</label>
<?php echo $value['prefix_name_th'].$value['firstname_th'] ?>
</div>
</div>
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
นามสกุล
</label>
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
<?php echo __('Lastname') ?>
</label>
<?php echo $value['lastname_th'] ?>
</div>
</div>
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
ชื่อบริษัท
</label>
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
<?php echo __('Company Name') ?>
</label>
<?php echo $value['morg']['org_name_th'] ?>
</div>
</div>
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
แผนก
</label>
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
<?php echo __('Department') ?>
</label>
<?php echo $value['section_name'] ?>
</div>
</div>
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
ตำแหน่ง
</label>
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
<?php echo __('Position') ?>
</label>
<?php echo $value['position_name'] ?>
</div>
</div>
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
วันที่ออกบัตร
</label>
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
<?php echo __('Card issue') ?>
</label>
<?php
$now = new Time($value['date_issued']);
$dateIssued = $now->i18nFormat('yyyy-MM-dd');
...
...
@@ -118,7 +118,7 @@ use Cake\I18n\Time;
</div>
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
วันที่หมดอายุ
</label>
<label style="font-size: 17px" class="col-xs-4 col-sm-4 col-md-4">
<?php echo __('Old age') ?>
</label>
<?php
$now = new Time($value['date_expiry']);
$dateExpiry = $now->i18nFormat('yyyy-MM-dd');
...
...
@@ -158,8 +158,8 @@ use Cake\I18n\Time;
<div class="col-xs-12 col-sm-12 col-md-12">
<?php echo $this->Flash->render(); ?>
<?php echo $this->Form->hidden('UserCards.user_id', ['class' => 'form-control-reg border-bottom-from label-text-sub required', 'id' => 'userId', 'type' => 'text', 'placeholder' => 'USERNAME']); ?>
<?php echo $this->Form->hidden('UserCards.organize_id', ['class' => 'form-control-reg border-bottom-from label-text-sub required', 'id' => 'organize_id', 'type' => 'text', 'label' => __('
ไอดีใช้งาน'), 'placeholder' => 'USERNAME
']); ?>
<?php echo $this->Form->input('UserCards.organize_code', ['class' => 'form-control-reg border-bottom-from label-text-sub required', 'id' => 'organize_code', 'type' => 'text', 'label' => __('Company Code'), 'placeholder' => 'Company Code']); ?>
<?php echo $this->Form->hidden('UserCards.organize_id', ['class' => 'form-control-reg border-bottom-from label-text-sub required', 'id' => 'organize_id', 'type' => 'text', 'label' => __('
ID Active'), 'placeholder' => 'USERNAME', 'required
']); ?>
<?php echo $this->Form->input('UserCards.organize_code', ['class' => 'form-control-reg border-bottom-from label-text-sub required', 'id' => 'organize_code', 'type' => 'text', 'label' => __('Company Code'), 'placeholder' => 'Company Code'
, 'required'
]); ?>
<label id="nameorg_th" style="color: green"></label>
<label id="noorg_th" style="color: red"></label>
</div>
...
...
@@ -182,7 +182,7 @@ use Cake\I18n\Time;
</div>
</div>
<div>
<button type="submit" class="btn btn-quaternary mr-xs mb-sm button-text-profile" id="checkbutton">
ตรวจสอบ
</button>
<button type="submit" class="btn btn-quaternary mr-xs mb-sm button-text-profile" id="checkbutton">
<?php echo __('Check') ?>
</button>
</div>
<?php echo $this->Form->end(); ?>
</div>
...
...
@@ -512,9 +512,8 @@ use Cake\I18n\Time;
if (data != 'false') {
data = jQuery.parseJSON(data);
if (data['chkuser'] == true) {
$("#noorg_th").text('');
$("#noorg_th").text('ลงทะเบียนกับ ' + data[0]['org_name_th'] +
' แล้ว');
$("#noorg_th").text(<?php echo __('Register with') ?> + data[0]['org_name_th'] +
<?php echo __('already') ?>);
$("#nameorg_th").text('');
$('#employee').attr("disabled", true);
organize_id.val('');
...
...
@@ -528,8 +527,7 @@ use Cake\I18n\Time;
organize_id.val(data[0]['id']);
}
} else {
$("#noorg_th").text('');
$("#noorg_th").text('ไม่พบข้อมูล');
$("#noorg_th").text(<?php echo __('Data not found') ?>);
$("#nameorg_th").text('');
$('#employee').attr("disabled", true);
organize_id.val('');
...
...
@@ -549,8 +547,7 @@ use Cake\I18n\Time;
if (data != 'false') {
data = jQuery.parseJSON(data);
if (data['chkuser'] == true) {
$("#noepm_th").text('');
$("#noepm_th").text('ลงทะเบียนแล้ว');
$("#noepm_th").text(<?php echo __('Registered') ?>);
$("#nameemp_th").text('');
$('#date').attr("disabled", true);
date.val('');
...
...
@@ -564,7 +561,7 @@ use Cake\I18n\Time;
} else {
$("#noepm_th").text('');
$("#noepm_th").text(
'"ไม่พบข้อมูลที่ต้องการ" กรุณากรอกรหัสข้อมูลที่ถูกต้องและกดตรวจสอบ'
<?php echo __('"Did not find the information you need", Please enter the correct information and press the check.') ?>
);
$("#nameemp_th").text('');
$('#date').attr("disabled", true);
...
...
@@ -576,17 +573,17 @@ use Cake\I18n\Time;
function check() {
if ($("#organize_code").val() == '') {
alert(
'กรุณากรอก Company Code'
);
alert(
<?php echo __('Please enter Company Code') ?>
);
organize_id.focus();
return false;
}
if (employee.val() == '') {
alert(
'กรุณากรอก Ref1'
);
alert(
<?php echo __('Please enter Ref1') ?>
);
employee.focus();
return false;
}
if (date.val() == '') {
alert(
'กรุณากรอก Ref2'
);
alert(
<?php echo __('Please enter Ref2') ?>
);
date.focus();
return false;
}
...
...
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