Commit 402a1f40 by Wittaya-PIM

Aof รวม viwecard กับ createcard

parent 5d36368d
...@@ -231,6 +231,7 @@ class UserCardsController extends AppController ...@@ -231,6 +231,7 @@ class UserCardsController extends AppController
} }
public function viewCard($user_id = null){ public function viewCard($user_id = null){
$this->viewBuilder()->layout('blank'); $this->viewBuilder()->layout('blank');
// $user = $this->Auth();
$this->loadModel('UserCards'); $this->loadModel('UserCards');
$UserCards = $this->UserCards->find('all') $UserCards = $this->UserCards->find('all')
->select($this->UserCards) ->select($this->UserCards)
......
...@@ -94,8 +94,7 @@ ...@@ -94,8 +94,7 @@
date.focus(); date.focus();
} }
} }
</script>
<script>
$(document).ready(function(){ $(document).ready(function(){
var date_input=$('input[id="date"]'); //our date input has the name "date" var date_input=$('input[id="date"]'); //our date input has the name "date"
var container=$('.bootstrap-iso form').length>0 ? $('.bootstrap-iso form').parent() : "body"; var container=$('.bootstrap-iso form').length>0 ? $('.bootstrap-iso form').parent() : "body";
......
<?php
use Cake\I18n\Time;
?>
<div class="owl-carousel owl-theme" data-plugin-options="{'items': 1}"> <div class="owl-carousel owl-theme" data-plugin-options="{'items': 1}">
<?php foreach ($UserCards as $value) { #pr($value);die;?> <?php foreach ($UserCards as $value) { #pr($value);die;?>
<div class="row"> <div class="row">
...@@ -37,10 +40,18 @@ ...@@ -37,10 +40,18 @@
<div class="col-xs-1"> <div class="col-xs-1">
</div> </div>
<div class="col-xs-5"> <div class="col-xs-5">
<?php echo $value['date_issued'] ?> <?php
$now = new Time($value['date_issued']);
$dateIssued = $now->i18nFormat('yyyy-MM-dd');
echo $this->DateFormat->formatDateThai($dateIssued);
?>
</div> </div>
<div class="col-xs-5"> <div class="col-xs-5">
<?php echo $value['date_expiry'] ?> <?php
$now = new Time($value['date_expiry']);
$dateExpiry = $now->i18nFormat('yyyy-MM-dd');
echo $this->DateFormat->formatDateThai($dateIssued);
?>
</div> </div>
</div> </div>
<div class="row"> <div class="row">
...@@ -110,6 +121,54 @@ ...@@ -110,6 +121,54 @@
</div> </div>
</div> </div>
<?php } ?> <?php } ?>
<div class="row">
<div class="col-xs-1 col-sm-1 col-md-1 box-arrow">
<i class = "fa fa-angle-left prev" > </i>
</div>
<div class="col-xs-9 col-sm-9 col-md-9">
<img src="/img/core/img/bloc-plus@3x.png" class="img-responsive" style="width: 100%">
</div>
<div class="col-xs-1 col-sm-1 col-md-1 box-arrow"></div>
<!--- s -->
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12">
<?php echo $this->Form->create('UserCards', ['id' => 'frmSignIn', 'type' => 'file', 'onsubmit' => 'return check();']); ?>
<!-- <div style="position: absolute;z-index: 2;">
<a href="profile_setting"><img src="/img/core/img/setting-icon@3x.png"/></a>
</div> -->
<!-- <div class="bg-profile"></div> -->
<!--<div class="col-xs-12 col-sm-12 col-md-12" style="padding-top: 20px;">-->
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<?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', '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>
</div>
<div class="form-group has-feedback">
<div class="col-xs-12 col-sm-12 col-md-12">
<?php echo $this->Form->input('UserCards.employee', ['class' => 'form-control-reg border-bottom-from label-text-sub required', 'id' => 'employee', 'type' => 'text', 'label' => __('รหัสพนักงาน / รหัสนักศึกษา'), 'placeholder' => 'รหัสพนักงาน / รหัสนักศึกษา', 'disabled', 'required']); ?>
</div>
</div>
<div class="form-group has-feedback bootstrap-iso">
<div class="col-xs-12 col-sm-12 col-md-12">
<label class="label-text-sub"><?php echo __('วันเกิด');?></label>
<input type="text" name="UserCards[birthdate]" id="date" placeholder="กรุณาระบุวันเดือนปีเกิด" value="" placeholder="DD-MM-YYYY" data-date-format="mm/dd/yyyy" class="form-control-reg border-bottom-from" disabled>
<span class="glyphicon glyphicon-calendar form-control-feedback"></span>
</div>
</div>
<div>
<button type="submit" class="btn btn-quaternary mr-xs mb-sm button-text-profile">ตรวจสอบ</button>
</div>
<?php echo $this->Form->end(); ?>
</div>
</div>
<!-- e -->
</div>
</div> </div>
<style> <style>
...@@ -157,6 +216,65 @@ function callBack(){ ...@@ -157,6 +216,65 @@ function callBack(){
$('.next').show(); $('.next').show();
} }
} }
//$('.prev').hide();
var organize_id = $("#organize_id");
var employee = $("#employee");
var date = $("#date");
$(document).ready(function() {
$("#organize_code").on('change',function(){
var organize_code = $("#organize_code").val();
$.post("/UserCards/checkOrg", {organize_code: organize_code}, function(data) {
if(data!='false'){
data = jQuery.parseJSON(data);
console.log(data);
employee.val('sssss');
if(data['chkuser'] == true){
$("#noorg_th").text('ลงทะเบียนกับ '+data[0]['org_name_th']+' แล้ว');
$("#nameorg_th").text('');
$('#employee').attr("disabled",true);
$('#date').attr("disabled",true);
organize_id.val('');
employee.val('');
date.val('');
}else if(data['chkuser'] == false){
$("#nameorg_th").text(data[0]['org_name_th']);
$("#noorg_th").text('');
$("#employee").removeAttr("disabled");
$("#date").removeAttr("disabled");
organize_id.val(data[0]['id']);
}
}else{
$("#noorg_th").text('ไม่พบข้อมูล');
$("#nameorg_th").text('');
$('#employee').attr("disabled",true);
$('#date').attr("disabled",true);
organize_id.val('');
employee.val('');
date.val('');
}
});
});
});
function check() {
if (employee.val() == '') {
employee.focus();
return false;
}
if (date.val() == '') {
return false;
date.focus();
}
}
$(document).ready(function(){
var date_input=$('input[id="date"]'); //our date input has the name "date"
var container=$('.bootstrap-iso form').length>0 ? $('.bootstrap-iso form').parent() : "body";
var options={
format: 'dd/mm/yyyy',
container: container,
todayHighlight: true,
autoclose: true,
};
date_input.datepicker(options);
})
</script> </script>
<?php $this->end();?> <?php $this->end();?>
<?php
namespace App\View\Helper;
use Cake\View\Helper\HtmlHelper;
class DateFormatHelper extends HtmlHelper {
/*
PHP Options for Date formatting. See http://php.net/manual/en/function.date.php for more info
Day
-------------------------------------------------------------------------------
d Day of the month, 2 digits with leading zeros 01 to 31
D A textual representation of a day, three letters Mon through Sun
j Day of the month without leading zeros 1 to 31
l (lowercase 'L') A full textual representation of the day of the week Sunday through Saturday
N ISO-8601 numeric representation of the day of the week (added in PHP 5.1.0) 1 (for Monday) through 7 (for Sunday)
S English ordinal suffix for the day of the month, 2 characters st, nd, rd or th. Works well with j
w Numeric representation of the day of the week 0 (for Sunday) through 6 (for Saturday)
z The day of the year (starting from 0) 0 through 365
Week
-------------------------------------------------------------------------------
W ISO-8601 week number of year, weeks starting on Monday (added in PHP 4.1.0) Example: 42 (the 42nd week in the year)
Month
-------------------------------------------------------------------------------
F A full textual representation of a month, such as January or March January through December
m Numeric representation of a month, with leading zeros 01 through 12
M A short textual representation of a month, three letters Jan through Dec
n Numeric representation of a month, without leading zeros 1 through 12
t Number of days in the given month 28 through 31
Year
-------------------------------------------------------------------------------
L Whether it's a leap year 1 if it is a leap year, 0 otherwise.
o ISO-8601 year number. This has the same value as Y, except that if the ISO week number (W) belongs to the previous or next year, that year is used instead. (added in PHP 5.1.0) Examples: 1999 or 2003
Y A full numeric representation of a year, 4 digits Examples: 1999 or 2003
y A two digit representation of a year Examples: 99 or 03
Time
-------------------------------------------------------------------------------
a Lowercase Ante meridiem and Post meridiem am or pm
A Uppercase Ante meridiem and Post meridiem AM or PM
B Swatch Internet time 000 through 999
g 12-hour format of an hour without leading zeros 1 through 12
G 24-hour format of an hour without leading zeros 0 through 23
h 12-hour format of an hour with leading zeros 01 through 12
H 24-hour format of an hour with leading zeros 00 through 23
i Minutes with leading zeros 00 to 59
s Seconds, with leading zeros 00 through 59
u Microseconds (added in PHP 5.2.2). Note that date() will always generate 000000 since it takes an integer parameter, whereas DateTime::format() does support microseconds. Example: 654321
Timezone
-------------------------------------------------------------------------------
e Timezone identifier (added in PHP 5.1.0) Examples: UTC, GMT, Atlantic/Azores
I (capital i) Whether or not the date is in daylight saving time 1 if Daylight Saving Time, 0 otherwise.
O Difference to Greenwich time (GMT) in hours Example: +0200
P Difference to Greenwich time (GMT) with colon between hours and minutes (added in PHP 5.1.3) Example: +02:00
T Timezone abbreviation Examples: EST, MDT ...
Z Timezone offset in seconds. The offset for timezones west of UTC is always negative, and for those east of UTC is always positive. -43200 through 50400
Full Date/Time
-------------------------------------------------------------------------------
c ISO 8601 date (added in PHP 5) 2004-02-12T15:19:21+00:00
r » RFC 2822 formatted date Example: Thu, 21 Dec 2000 16:01:07 +0200
U Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)
*/
/**
* Date Only Format
* Change this string to set the format when returning Date only
*
* @var string
*/
var $dateOnlyFormat = 'M j, Y';
/**
* Time Only Format
* Change this string to set the format when returning Time only
*
* @var string
*/
var $timeOnlyFormat = 'g:i A';
/**
* Date and Time Format
* Change this string to set the format when returning both Date and Time
*
* @var string
*/
var $dateTimeFormat = 'M j, Y g:i A';
/**
* Default Date Part Display
* Default for option displayDatePart
*
* @var bool
*/
var $defaultDatePartDisplay = true;
/**
* Default Time Part Display
* Default for option displayTimePart
*
* @var bool
*/
var $defaultTimePartDisplay = true;
/**
* Default Offset
* Default for option offset
*
* @var bool
*/
var $defaultOffset = 0;
/**
* formatDate method
*
* Wrapper for the PHP date() function. Used to set the format of date/time
* in one location.
*
* INPUT $dateTime: The date/time as string
* $options=(
* displayDatePart: True/False - display date
* displayTimePart: True/False - display time
* offset: Offset in hours, used to adjust for a given timezone
* )
*
* OUTPUT returns formatted date/time
*/
public function formatDate($dateTime = null, $options) {
$defaults = array('displayDatePart'=>$this->defaultDatePartDisplay, 'displayTimePart'=>$this->defaultTimePartDisplay, 'offset'=>$this->defaultOffset);
$options = Set::merge($defaults, $options);
// Convert offset to minutes
$offsetMinutes = $options['offset'] * 60;
$formatDate = null;
if (!is_null($dateTime)) {
if ($options['displayDatePart'] AND $options['displayTimePart']) {
$formatDate = date($this->dateTimeFormat, strtotime($dateTime . ' +' . $offsetMinutes . ' minutes'));
}
if ($options['displayDatePart'] AND !$options['displayTimePart']) {
$formatDate = date($this->dateOnlyFormat, strtotime($dateTime . ' +' . $offsetMinutes . ' minutes'));
}
if (!$options['displayDatePart'] AND $options['displayTimePart']) {
$formatDate = date($this->timeOnlyFormat, strtotime($dateTime . ' +' . $offsetMinutes . ' minutes'));
}
}
return $formatDate;
} // END function formatDate
public function formatDateThai($dateTime = null,$option=null) {
$strYear = date("Y",strtotime($dateTime))+543;
$strMonth= date("n",strtotime($dateTime));
$strDay= date("j",strtotime($dateTime));
$strHour= date("H",strtotime($dateTime));
$strMinute= date("i",strtotime($dateTime));
$strSeconds= date("s",strtotime($dateTime));
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
//$thai_day_arr=array("อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์");
/*
$thai_month_arr=array(
"0"=>"",
"1"=>"มกราคม",
"2"=>"กุมภาพันธ์",
"3"=>"มีนาคม",
"4"=>"เมษายน",
"5"=>"พฤษภาคม",
"6"=>"มิถุนายน",
"7"=>"กรกฎาคม",
"8"=>"สิงหาคม",
"9"=>"กันยายน",
"10"=>"ตุลาคม",
"11"=>"พฤศจิกายน",
"12"=>"ธันวาคม"
);
*/
$strMonthThai=$strMonthCut[$strMonth];
if(!empty($option)){
if (array_key_exists('Y', $option)) $strYear = substr($strYear, -2);
}
//return "$strDay $strMonthThai $strYear, $strHour:$strMinute";
//return $strDay .' '. $strMonthThai .' '. $yearThai($strYear);
//return $strDay .' '. $strMonthThai .' '. $strYear;
return $strDay .' '. $strMonthThai .' '. $strYear;
} // END function formatDate
public function formatFullDateThai($dateTime = null,$option=null) {
$dateTime = json_decode(json_encode($dateTime),true);
$strYear = date("Y",strtotime($dateTime))+543;
$strMonth= date("n",strtotime($dateTime));
$strDay= date("j",strtotime($dateTime));
$strHour= date("H",strtotime($dateTime));
$strMinute= date("i",strtotime($dateTime));
$strSeconds= date("s",strtotime($dateTime));
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
//$thai_day_arr=array("อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์");
$thai_month_arr=array(
"0"=>"",
"1"=>"มกราคม",
"2"=>"กุมภาพันธ์",
"3"=>"มีนาคม",
"4"=>"เมษายน",
"5"=>"พฤษภาคม",
"6"=>"มิถุนายน",
"7"=>"กรกฎาคม",
"8"=>"สิงหาคม",
"9"=>"กันยายน",
"10"=>"ตุลาคม",
"11"=>"พฤศจิกายน",
"12"=>"ธันวาคม"
);
$strMonthThai=$thai_month_arr[$strMonth];
if(!empty($option)){
if (array_key_exists('Y', $option)) $strYear = substr($strYear, -2);
}
//return "$strDay $strMonthThai $strYear, $strHour:$strMinute";
//return $strDay .' '. $strMonthThai .' '. $yearThai($strYear);
//return $strDay .' '. $strMonthThai .' '. $strYear;
return $strDay .' '. $strMonthThai .' '. $strYear;
} // END function formatDate
public function formatDateTimeThai($dateTime = null,$option=null) {
$strYear = date("Y",strtotime($dateTime))+543;
$strMonth= date("n",strtotime($dateTime));
$strDay= date("j",strtotime($dateTime));
$strHour= date("H",strtotime($dateTime));
$strMinute= date("i",strtotime($dateTime));
$strSeconds= date("s",strtotime($dateTime));
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
//$thai_day_arr=array("อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์");
/*
$thai_month_arr=array(
"0"=>"",
"1"=>"มกราคม",
"2"=>"กุมภาพันธ์",
"3"=>"มีนาคม",
"4"=>"เมษายน",
"5"=>"พฤษภาคม",
"6"=>"มิถุนายน",
"7"=>"กรกฎาคม",
"8"=>"สิงหาคม",
"9"=>"กันยายน",
"10"=>"ตุลาคม",
"11"=>"พฤศจิกายน",
"12"=>"ธันวาคม"
);
*/
$strMonthThai=$strMonthCut[$strMonth];
if(!empty($option)){
if (array_key_exists('Y', $option)) $strYear = substr($strYear, -2);
}
//return "$strDay $strMonthThai $strYear, c";
//return $strDay .' '. $strMonthThai .' '. $yearThai($strYear);
//return $strDay .' '. $strMonthThai .' '. $strYear;
return $strDay .' '. $strMonthThai .' '. $strYear.' '.$strHour.":".$strMinute.":".$strSeconds;
} // END function formatDate
public function formatYearThai($dateTime = null,$length=null) {
$strYear = $this->yearThai(date("Y",strtotime($dateTime)));
if(!empty($length)) $strYear = substr($strYear, -$length);
return $strYear;
} // END function formatYear
public function formatThaiDate($dateTime = null,$length=null) {
$strDayMonth = date('d/m/',strtotime($dateTime));
$strYear = $this->yearThai(date("Y",strtotime($dateTime)));
if(!empty($length)) $strYear = substr($strYear, -$length);
return $strDayMonth.$strYear;
} // END function formatYear
public function yearThai($year = null) {
return $year+543;
} // END function formatDate
public function getDay($date){
$str_day = date('d', strtotime($date));
return $str_day;
}
public function getMonth($date){
$str_month = date('m', strtotime($date));
return $str_month;
}
public function getYear($date){
$str_year = date('Y', strtotime($date));
return $str_year;
}
function convertDateTodmY($date){
return date('d/m/Y', strtotime($date));
}
function convertDateTodmY_TH($date){
$date = json_decode(json_encode($date),true);
$strYear = date("Y",strtotime($date))+543;
$strMonth = date("m",strtotime($date));
$strDay = date("d",strtotime($date));
return $strDay.'/'.$strMonth.'/'.$strYear;
}
function convertDateTodmY_Hi_TH($date){
$strYear = date("Y",strtotime($date))+543;
$strMonth = date("m",strtotime($date));
$strDay = date("d",strtotime($date));
return $strDay.'/'.$strMonth.'/'.$strYear.' ' .date("H:i",strtotime($date));
}
function convertDateTomY_TH($date){
$date = json_decode(json_encode($date),true);
$strYear = date("Y",strtotime($date))+543;
$strMonth = date("m",strtotime($date));
return $strMonth.'/'.$strYear;
}
function convertDateToYmd($date){
return date('Y-m-d', strtotime($date));
}
function convertDateToYmdHis($date){
return date('Y-m-d H:i:s', strtotime($date));
}
function convertDateTod_m_Y($date){
return date('d-m-Y', strtotime($date));
}
function convertDateTodmYHis($date){
return date('d-m-Y H:i:s', strtotime($date));
}
function convertDateToHi($date){
$date = json_decode(json_encode($date),true);
return date('H:i', strtotime($date));
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment