wecuro_blog/application/modules/caregivers/views/saveCaregiverModalOther.php

273 lines
18 KiB
PHP
Executable File

<div use="otherReferenceFormContainer" style="display: none;">
<div class="row" use="otherPart">
<div class="form-group col-md-3">
<label class="required-field"><?php echo lang('Other References Name'); ?></label>
<input type="hidden" class="form-control referId" mname="referId" name="referId" class="form-control" id="referId">
<input type="text" class="form-control" name="other_References_Name[]" mname="other_References_Name" required data-error="Please fill up the field.">
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-md-4">
<label class="required-field"><?php echo lang('Other References Address'); ?></label>
<input type="text" class="form-control" name="other_References_Address[]" mname="other_References_Address" required data-error="Please fill up the field.">
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-md-4">
<label class="required-field"><?php echo lang('Other References Telephone'); ?></label>
<input type="text" class="form-control" name="other_References_Telephone[]" mname="other_References_Telephone" required onkeypress="return isNumberKey(event)" onkeyup="USformatPhoneNumber(this.value,this)" onblur="USformatPhoneNumber(this.value,this)"
data-error="Please fill up the field.">
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-md-1 pd-25 plus_sec">
<!-- <img src="<?php echo base_url(); ?>uploads/minus.png" use="minusbutt" onclick="less_education_documents(this,'<?php echo $documentsid[_DOC_TRAININGCODE_][0]; ?>');" class="img-thumbnail" style="height: 60px; cursor: pointer;"> -->
<i class="la la-minus-circle" aria-hidden="true" use="minusbutt" onclick="less_other_reference(this);"></i>
<!-- <img src="<?php echo base_url(); ?>uploads/plus.png" use="plusbutt" onclick="add_education_documents(null);" class="img-thumbnail" style="height: 50px; cursor: pointer;"> -->
<!-- <i class="la la-plus-circle" aria-hidden="true" use="plusbutts" onclick="add_other_reference(null);"></i> -->
</div>
</div>
</div>
<div use="licenseUploadFormContainer" style="display: none;">
<div class="row" use="licensePart">
<input type="hidden" class="form-control licenseid" id="licenseid" name="licenseid" mname="licenseid">
<div class="form-group col-md-4">
<label class="required-field"><?php echo lang('License #'); ?></label>
<input type="text" class="form-control" name="license_no[]" mname="license_no" required>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-md-4">
<label class="required-field"><?php echo lang('State'); ?></label>
<select class="form-control" name="rn_lic_state[]" mname="rn_lic_state" required data-error="Please fill up the field.">
<option value="" disable selected>Select</option>
<?php foreach ($state_list as $state) { ?>
<option value="<?php echo $state->id; ?>" > <?php echo $state->name; ?>
</option>
<?php } ?>
</select>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-md-3">
<label class="required-field"><?php echo lang('Expiration Date'); ?></label>
<input type="date" class="form-control not-past-time" name="license_exp_date[]" mname="license_exp_date" required>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-md-1 pd-25 plus_sec">
<!-- <img src="<?php echo base_url(); ?>uploads/minus.png" use="minusbutt" onclick="less_education_documents(this,'<?php echo $documentsid[_DOC_TRAININGCODE_][0]; ?>');" class="img-thumbnail" style="height: 60px; cursor: pointer;"> -->
<i class="la la-minus-circle" aria-hidden="true" use="minusbutt" onclick="less_license_documents(this);"></i>
<!-- <img src="<?php echo base_url(); ?>uploads/plus.png" use="plusbutt" onclick="add_education_documents(null);" class="img-thumbnail" style="height: 50px; cursor: pointer;"> -->
<i class="la la-plus-circle" aria-hidden="true" use="plusbutt" onclick="add_license_documents(null);"></i>
</div>
</div>
</div>
<div use="educationUploadFormContainer" style="display: none;">
<div class="row" use="educationPart">
<div class="form-group col-md-4">
<label class="required-field"><?php echo lang('School Name'); ?></label>
<select class="form-control" name="school[]" mname="school" required>
<?php foreach ($school_list as $school ) { ?>
<option value="<?php echo $school->name; ?>"><?php echo $school->name; ?></option>
<?php } ?>
</select>
</div>
<div class="form-group col-md-2">
<label class="required-field"><?php echo lang('Location of school'); ?></label>
<input type="text" class="form-control" name="location_school[]" mname="location_school" required>
</div>
<!-- <div class="form-group col-md-1">
<label class="required-field"><?php echo lang('Years'); ?></label>
<select class="form-control" name="edu_years[]" mname="edu_years" required>
<?php
$now_year=date('Y');
for($i=2001;$i<=$now_year;$i++){
?>
<option value="<?php echo $i;?>"><?php echo $i;?></option>
<?php } ?>
</select>
<input type="text" class="form-control onlyNumber" minlength="4" maxlength="4" onkeypress="return isNumberKey(event)" onkeyup ="isFutureDate(this.value)" name="edu_years[]" mname="edu_years" required>
<div class="yearError"></div>
</div> -->
<div class="form-group col-md-2">
<label class="required-field"><?php echo lang('Degree/Certificate'); ?></label>
<!-- <input type="text" class="form-control" name="major_subject[]" mname="major_subject" required> -->
<select class="form-control" name="major_subject[]" mname="major_subject" required>
<option value="">Select</option>
<option value="Professional Certificate">Professional Certificate</option>
<option value="HS Degree or Equivalent">HS Degree or Equivalent</option>
<option value="Associate Degree">Associate Degree</option>
<option value="Bachelor Degree">Bachelor Degree</option>
<option value="Graduate Degree">Graduate Degree</option>
<option value="Master Degree">Master Degree</option>
<option value="Doctoral Degree">Doctoral Degree</option>
</select>
</div>
<div class="form-group col-md-3">
<label class="required-field"><?php echo lang('Graduation Date'); ?></label>
<input type="month" class="form-control not-future-month" name="certificate_date[]" mname="certificate_date" onkeyup ="isFutureDate(this.value)" required>
</div>
<div class="form-group col-md-1 pd-25 plus_sec">
<!-- <img src="<?php echo base_url(); ?>uploads/minus.png" use="minusbutt" onclick="less_education_documents(this,'<?php echo $documentsid[_DOC_TRAININGCODE_][0]; ?>');" class="img-thumbnail" style="height: 60px; cursor: pointer;"> -->
<i class="la la-minus-circle" aria-hidden="true" use="minusbutt" onclick="less_education_documents(this,'<?php echo $documentsid[_DOC_TRAININGCODE_][0]; ?>');"></i>
<!-- <img src="<?php echo base_url(); ?>uploads/plus.png" use="plusbutt" onclick="add_education_documents(null);" class="img-thumbnail" style="height: 50px; cursor: pointer;"> -->
<i class="la la-plus-circle" aria-hidden="true" use="plusbutt" onclick="add_education_documents(null);"></i>
</div>
</div>
</div>
<div use="trainingUploadFormContainer" style="display: none;">
<form action="<?php echo base_url(); ?>CaregiversDashboard/documentsSave" method="post" enctype="multipart/form-data" use="trainingUploadForm">
<input type="hidden" id="csrf" value="<?php echo $this->security->get_csrf_hash();?>" name="<?php echo $this->security->get_csrf_token_name();?>" >
<div class="row">
<input type="hidden" name="Ion_id" id="caregiver_ion_id" value="<?php if (!empty($nurse->ion_user_id)) echo $nurse->ion_user_id; ?>">
<input type="hidden" name="id" id="caregiver_id" value="<?php if (!empty($nurse->caregiver_table_id)) echo $nurse->caregiver_table_id; ?>">
<input type="hidden" name="doc_type" value="<?php echo _DOC_TRAININGCODE_ ; ?>">
<input type="hidden" name="doc_id" value="">
<input type="hidden" name="progress" value="10">
<div class="form-group col-md-5">
<label class="required-field"><?php echo lang('Aditional Certificates (gif/jpg/png/jpeg/pdf)'); ?></label>
<input type="file" class="form-control" name="TRN" required>
</div>
<div class="form-group col-md-2">
<label class="required-field"><?php echo lang('Name Additional Certifications'); ?></label>
<input type="text" class="form-control" name="TRN_remarks" required>
</div>
<div class="form-group col-md-2">
<label class="required-field"><?php echo lang('Additional Certifications Number'); ?></label>
<input type="text" class="form-control" name="TRN_documents_no" required>
</div>
<div class="form-group col-md-1">
<button class="btn btn-primary file-upload" name="upload" type="submit"> Upload</button>
</div>
<div class="form-group col-md-1">
<span use="uploadContainer"></span>
</div>
<div class="form-group col-md-1">
<img src="<?php echo base_url(); ?>uploads/minus.png" use="minusbutt" onclick="less_training_documents(this,'<?php echo $documentsid[_DOC_TRAININGCODE_][0]; ?>');" class="img-thumbnail" style="height: 60px; cursor: pointer;">
<img src="<?php echo base_url(); ?>uploads/plus.png" use="plusbutt" onclick="add_training_documents(null);" class="img-thumbnail" style="height: 50px; cursor: pointer;">
</div>
</div>
</form>
</div>
<div use="otherUploadFormContainer" style="display: none;">
<form action="<?php echo base_url(); ?>CaregiversDashboard/documentsSave" method="post" enctype="multipart/form-data" use="otherUploadForm">
<input type="hidden" id="csrf" value="<?php echo $this->security->get_csrf_hash();?>" name="<?php echo $this->security->get_csrf_token_name();?>" >
<div class="row">
<input type="hidden" name="Ion_id" id="caregiver_ion_id" value="<?php if (!empty($nurse->ion_user_id)) echo $nurse->ion_user_id; ?>">
<input type="hidden" name="id" id="caregiver_id" value="<?php if (!empty($nurse->caregiver_table_id)) echo $nurse->caregiver_table_id; ?>">
<input type="hidden" name="doc_type" value="<?php echo _DOC_OTHERCODE_ ; ?>">
<input type="hidden" name="doc_id" value="">
<input type="hidden" name="progress" value="10">
<div class="form-group col-md-4">
<label><?php echo lang('Other Documents'); ?></label>
<input type="file" class="form-control" name="<?php echo _DOC_OTHERCODE_ ; ?>" required>
</div>
<div class="form-group col-md-5">
<label ><?php echo lang('Documents Name'); ?></label>
<input type="text" class="form-control" id="<?php echo _DOC_OTHERCODE_ ; ?>_remarks" name="<?php echo _DOC_OTHERCODE_ ; ?>_remarks" required>
</div>
<div class="form-group col-md-1 mt-2 row">
<div class="cameraIcon">
<a data-toggle="modal" class="mm" type="vaccine" myidValue="<?php echo $documentsid[_DOC_OTHERCODE_][0]; ?>" myValue="<?php echo _DOC_OTHERCODE_; ?>" data-dismiss="modal" aria-hidden="true" >
<i class="fa fa-camera" style="font-size:24px" onclick="openCameraForDate(this)"></i>
</a>
</div>
<button class="btn btn-primary file-upload" name="upload" type="submit"> Upload</button>
</div>
<div class="form-group col-md-1">
<span use="uploadContainer"></span>
</div>
<div class="form-group col-md-1 pd-25 plus_sec">
<i class="la la-minus-circle" aria-hidden="true" use="minusbutt" onclick="less_other_documents(this,'<?php echo $documentsid[_DOC_OTHERCODE_][0]; ?>');"></i>
<i class="la la-plus-circle" aria-hidden="true" use="plusbutt" onclick="add_other_documents(null);"></i>
<!-- <img src="<?php echo base_url(); ?>uploads/minus.png" use="minusbutt" onclick="less_other_documents(this,'<?php echo $documentsid[_DOC_OTHERCODE_][0]; ?>');" class="img-thumbnail" style="height: 60px; cursor: pointer;">
<img src="<?php echo base_url(); ?>uploads/plus.png" use="plusbutt" onclick="add_other_documents(null);" class="img-thumbnail" style="height: 50px; cursor: pointer;"> -->
</div>
</div>
</form>
</div>
<div use="moreAdditionalCertificateFormContainer" style="display:none;">
<form role="form" action="<?php echo base_url(); ?>CaregiversDashboard/profileOtherInfo" method="post" enctype="multipart/form-data" use="docUploadForm">
<!-- <?php echo $csrfHash = $this->security->get_csrf_hash();?> -->
<input type="hidden" id="csrf" value="<?php echo $this->security->get_csrf_hash();?>" name="<?php echo $this->security->get_csrf_token_name();?>" >
<input type="hidden" name="id" id="caregiver_id" value="<?php if (!empty($nurse->caregiver_table_id)) echo $nurse->caregiver_table_id; ?>">
<input type="hidden" name="Ion_id" id="caregiver_ion_id" value="<?php if (!empty($nurse->ion_user_id)) echo $nurse->ion_user_id; ?>" >
<input type="hidden" name="form_status" value="5">
<input type="hidden" name="progress" value="0">
<input type="hidden" name="data_type" value="Additional_Certifications">
<input type="hidden" name="form_mode" value="Add">
<input type="hidden" name="doc_type" value="<?php echo _ADDL_CERTIFICATE_ ; ?>">
<input type="hidden" name="doc_id" value="">
<div class="row">
<div class="form-group col-md-3">
<label ><?php echo lang('State'); ?></label>
<select class="form-control" name="Name_Additional_Certifications_state" required>
<?php
foreach ($state_list as $value) {
?>
<option value="<?php echo $value->id; ?>"><?php echo $value->name ?></option>
<?php
}
?>
</select>
</div>
<div class="form-group col-md-3">
<label ><?php echo lang('Licenses or Certification'); ?></label>
<select class="form-control" name="Name_Additional_Certifications" required>
<option value="RN Licenses">RN Licenses</option>
<option value="LPN Licenses">LPN Licenses</option>
<option value="IV Certification">IV Certification</option>
<option value="HHA/PCA Certificate">HHA/PCA Certificate</option>
</select>
</div>
<div class="form-group col-md-3">
<label ><?php echo lang('Licenses or Certification Number'); ?></label>
<input type="text" class="form-control" name="Additional_Certifications_Number" required>
</div>
<div class="form-group col-md-3 ">
<label ><?php echo lang('Certifications Document'); ?></label>
<input type="file" class="form-control" name="<?php echo _ADDL_CERTIFICATE_ ; ?>" required>
</div>
<div class="col-md-1 mt-2">
<button type="submit" name="submit" class="btn btn-info "><?php echo lang('Update'); ?></button>
</div>
<div class="form-group col-md-1">
<span use="uploadContainer"></span>
</div>
<div class="form-group col-md-1 pd-25 plus_sec">
<i class="la la-minus-circle" aria-hidden="true" use="minusbutt" onclick="less_additional_certificates(this,'<?php echo $documentsid[_ADDL_CERTIFICATE_][0]; ?>');"></i>
<i class="la la-plus-circle" aria-hidden="true" use="plusbutt" onclick="add_additional_certificates(null);"></i>
<!-- <img src="<?php echo base_url(); ?>uploads/minus.png" use="minusbutt" onclick="less_additional_certificates(this,'<?php echo $documentsid[_ADDL_CERTIFICATE_][0]; ?>');" class="img-thumbnail" style="height: 60px; cursor: pointer;">
<img src="<?php echo base_url(); ?>uploads/plus.png" use="plusbutt" onclick="add_additional_certificates(null);" class="img-thumbnail" style="height: 50px; cursor: pointer;"> -->
</div>
</div>
</form>
</div>
<div class="modal fade" id="NPI_Check_Modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document" style="max-width: 95%;!important">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLongTitle">Check NPI Info</h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body full-height-view">
<iframe src="https://npiregistry.cms.hhs.gov/" width="100%" height="100%" style="height:70vh;"></iframe>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>