live priority
This commit is contained in:
parent
505f66696b
commit
2a70d249af
@ -41,7 +41,7 @@ $routes->match(['GET', 'POST', 'PUT', 'DELETE'], 'editUser', 'User::editUser');
|
||||
$routes->post('user/Deleteuserdepartment', 'User::Deleteuserdepartment');
|
||||
$routes->get('user/deleteUser', 'User::deleteUser');
|
||||
$routes->get('user/reActivateUser', 'User::reActivateUser');
|
||||
$routes->get('isEmailExists', 'User::isEmailExists');
|
||||
$routes->match(['GET', 'POST', 'PUT', 'DELETE'],'isEmailExists', 'User::isEmailExists');
|
||||
|
||||
// Supplier Routes
|
||||
$routes->match(["GET","POST"],'supplierlisting', 'Supplier::index'); // list supplier
|
||||
|
||||
@ -276,7 +276,12 @@ if (!empty($getlogpodtl)) {
|
||||
|
||||
menubar: false,
|
||||
statusbar: false,
|
||||
toolbar: false
|
||||
toolbar: false,
|
||||
setup: function(ed) {
|
||||
ed.on('init', function(evt) {
|
||||
ed.setContent(`<?php echo $ServiceDescription; ?>`);
|
||||
});
|
||||
}
|
||||
});
|
||||
tinymce.init({
|
||||
selector: "textarea#txtSpcialInstruction", // Add model SpcialInstruction
|
||||
@ -1496,7 +1501,7 @@ if (!empty($getlogpodtl)) {
|
||||
<label>Scope Of Work</label>
|
||||
<?php
|
||||
$ServiceDescription = html_entity_decode($ServiceDescription);
|
||||
$ServiceDescription = strip_tags($ServiceDescription);
|
||||
// $ServiceDescription = strip_tags($ServiceDescription);
|
||||
$data = array('name' => 'ScopeofWork', 'value' => set_value('ScopeofWork', $ServiceDescription), 'id' => 'ScopeofWork', 'class' => 'form-control', 'rows' => '10', 'cols' => '40');
|
||||
echo form_textarea($data);
|
||||
?>
|
||||
|
||||
@ -337,7 +337,12 @@ if (!empty($POItem) && $CapitalRange == '1') {
|
||||
selector: "textarea#txtSpcialInstruction",
|
||||
menubar: false,
|
||||
statusbar: false,
|
||||
toolbar: false
|
||||
toolbar: false,
|
||||
setup: function(ed) {
|
||||
ed.on('init', function(evt) {
|
||||
ed.setContent(`<?php echo $scopeofwork; ?>`);
|
||||
});
|
||||
}
|
||||
// plugins: "link image"
|
||||
});
|
||||
tinymce.init({
|
||||
@ -1683,10 +1688,11 @@ if (!empty($POItem) && $CapitalRange == '1') {
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Special Instructions </label> <?php
|
||||
$data = array('name' => 'txtSpcialInstruction', 'value' => set_value('txtSpcialInstruction', strip_tags($scopeofwork)), 'id' => 'txtSpcialInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40');
|
||||
echo form_textarea($data);
|
||||
?>
|
||||
<label>Special Instructions </label>
|
||||
<textarea id="txtSpcialInstruction" name="txtSpcialInstruction" class="form-control" rows="10" cols="40">
|
||||
<?php echo $scopeofwork ? html_entity_decode($scopeofwork) : "" ; ?>
|
||||
<!-- strip_tags($scopeofwork) -->
|
||||
</textarea>
|
||||
</div>
|
||||
</div><!-- /.Special Instructions section -->
|
||||
|
||||
|
||||
@ -343,7 +343,12 @@ if (!empty($getlogpodtl)) {
|
||||
selector: "textarea#txtSpcialInstruction",
|
||||
menubar: false,
|
||||
statusbar: false,
|
||||
toolbar: false
|
||||
toolbar: false,
|
||||
setup: function(ed) {
|
||||
ed.on('init', function(evt) {
|
||||
ed.setContent(`<?php echo $ServiceDescription; ?>`);
|
||||
});
|
||||
}
|
||||
});
|
||||
tinymce.init({
|
||||
selector: "textarea#ItemDescription",
|
||||
@ -1589,10 +1594,11 @@ $(document).ready(function () {
|
||||
<!-- S p e c i a l I n s t r u c t i o n s r o w -->
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Special Instructions </label> <?php
|
||||
$data = array('name' => 'txtSpcialInstruction', 'value' => set_value('txtSpcialInstruction', strip_tags($ServiceDescription)), 'id' => 'txtSpcialInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40');
|
||||
echo form_textarea($data);
|
||||
?>
|
||||
<label>Special Instructions </label>
|
||||
<textarea id="txtSpcialInstruction" name="txtSpcialInstruction" class="form-control" rows="10" cols="40">
|
||||
<?php echo $ServiceDescription ? html_entity_decode($ServiceDescription) : "" ; ?>
|
||||
<!-- strip_tags($ServiceDescription) -->
|
||||
</textarea>
|
||||
</div>
|
||||
</div><!-- S p e c i a l I n s t r u c t i o n s r o w 1539-->
|
||||
|
||||
|
||||
@ -302,11 +302,23 @@ if (!empty($RequistionDetails)) {
|
||||
<script src="<?php echo base_url() ?>public/assets/tinymce/js/tinymce/tinymce.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>public/assets/js/CreatePOValidation.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
// tinymce.init({
|
||||
// selector: "textarea#txtSpcialInstruction",
|
||||
// menubar: false,
|
||||
// statusbar: false,
|
||||
// toolbar: false
|
||||
// });
|
||||
|
||||
tinymce.init({
|
||||
selector: "textarea#txtSpcialInstruction",
|
||||
menubar: false,
|
||||
statusbar: false,
|
||||
toolbar: false
|
||||
toolbar: false,
|
||||
setup: function(ed) {
|
||||
ed.on('init', function(evt) {
|
||||
ed.setContent(`<?php echo $ServiceDescription; ?>`);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@ -1589,10 +1601,13 @@ if (!empty($RequistionDetails)) {
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Special Instructions </label>
|
||||
<?php
|
||||
$data = array('name' => 'txtSpcialInstruction', 'value' => set_value('txtSpcialInstruction', strip_tags($ServiceDescription)), 'id' => 'txtSpcialInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40');
|
||||
echo form_textarea($data);
|
||||
?>
|
||||
<!-- <?php
|
||||
// $data = array('name' => 'txtSpcialInstruction', 'value' => set_value('txtSpcialInstruction', html_entity_decode($ServiceDescription)), 'id' => 'txtSpcialInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40');
|
||||
// echo form_textarea($data);
|
||||
?> -->
|
||||
<textarea id="txtSpcialInstruction" name="txtSpcialInstruction" class="form-control" rows="10" cols="40">
|
||||
<?php echo html_entity_decode($ServiceDescription); ?>
|
||||
</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@ -234,6 +234,11 @@ if (!empty($INRSYMBOL)) {
|
||||
menubar: false,
|
||||
statusbar: false,
|
||||
toolbar: false,
|
||||
setup: function(ed) {
|
||||
ed.on('init', function(evt) {
|
||||
ed.setContent(`<?php echo $ServiceDescription; ?>`);
|
||||
});
|
||||
}
|
||||
//plugins: "link image"
|
||||
});
|
||||
tinymce.init({
|
||||
@ -1654,10 +1659,10 @@ if (!empty($INRSYMBOL)) {
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Special Instructions </label> <?php
|
||||
$data = array('name' => 'txtSpcialInstruction', 'id' => 'txtSpcialInstruction', 'value' => set_value('txtSpcialInstruction', strip_tags($ServiceDescription)), 'rows' => '8', 'class' => 'form-control');
|
||||
echo form_textarea($data);
|
||||
?>
|
||||
<label>Special Instructions </label>
|
||||
<textarea id="txtSpcialInstruction" name="txtSpcialInstruction" class="form-control" rows="8" cols="40">
|
||||
<?php echo $ServiceDescription ? html_entity_decode($ServiceDescription) : '' ; ?>
|
||||
</textarea>
|
||||
<input type="hidden" name="SpcialInstruction" id="SpcialInstruction" value=" ">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -331,7 +331,12 @@ if (!empty($getlogpodtl)) {
|
||||
selector: "textarea#txtSpcialInstruction",
|
||||
menubar: false,
|
||||
statusbar: false,
|
||||
toolbar: false
|
||||
toolbar: false,
|
||||
setup: function(ed) {
|
||||
ed.on('init', function(evt) {
|
||||
ed.setContent(`<?php echo $ServiceDescription; ?>`);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
tinymce.init({
|
||||
@ -2712,10 +2717,10 @@ if (!empty($getlogpodtl)) {
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Special Instructions </label> <?php
|
||||
$data = array('name' => 'txtSpcialInstruction', 'value' => set_value('txtSpcialInstruction', strip_tags($ServiceDescription)), 'id' => 'txtSpcialInstruction', 'class' => 'form-control');
|
||||
echo form_textarea($data);
|
||||
?>
|
||||
<label>Special Instructions </label>
|
||||
<textarea id="txtSpcialInstruction" name="txtSpcialInstruction" class="form-control" rows="8" cols="40">
|
||||
<?php echo $ServiceDescription ? html_entity_decode($ServiceDescription) : '' ; ?>
|
||||
</textarea>
|
||||
<input type="hidden" name="SpcialInstruction" id="SpcialInstruction" value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -217,6 +217,11 @@ foreach ($PaymentTerms as $TER) {
|
||||
menubar: false,
|
||||
statusbar: false,
|
||||
toolbar: false,
|
||||
setup: function(ed) {
|
||||
ed.on('init', function(evt) {
|
||||
ed.setContent(`<?php echo $ServiceDescription; ?>`);
|
||||
});
|
||||
}
|
||||
// plugins: "link image"
|
||||
});
|
||||
tinymce.init({
|
||||
@ -1378,7 +1383,7 @@ foreach ($PaymentTerms as $TER) {
|
||||
<textarea name="ScopeofWork" id="ScopeofWork" class="form-control" rows="8" cols="40">
|
||||
<?php
|
||||
$ServiceDescription = html_entity_decode($ServiceDescription);
|
||||
$ServiceDescription = strip_tags($ServiceDescription);
|
||||
// $ServiceDescription = strip_tags($ServiceDescription);
|
||||
echo set_value('ScopeofWork', $ServiceDescription); ?>
|
||||
</textarea>
|
||||
|
||||
|
||||
@ -379,11 +379,18 @@ if (!empty($getlogpodtl)) {
|
||||
|
||||
$("#PaymentTerms").select2();
|
||||
|
||||
|
||||
|
||||
tinymce.init({
|
||||
selector: "textarea#txtSpcialInstruction",
|
||||
menubar: false,
|
||||
statusbar: false,
|
||||
toolbar: false
|
||||
toolbar: false,
|
||||
setup: function(ed) {
|
||||
ed.on('init', function(evt) {
|
||||
ed.setContent(`<?php echo $ServiceDescription; ?>`);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@ -1313,10 +1320,14 @@ if (!empty($getlogpodtl)) {
|
||||
<div class="form-row ">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Special Instructions </label>
|
||||
<?php
|
||||
$data = array('name' => 'txtSpcialInstruction', 'value' => set_value('txtSpcialInstruction', strip_tags($ServiceDescription)), 'id' => 'txtSpcialInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40');
|
||||
echo form_textarea($data);
|
||||
?>
|
||||
<!-- <?php
|
||||
// $data = array('name' => 'txtSpcialInstruction', 'value' => set_value('txtSpcialInstruction', strip_tags($ServiceDescription)), 'id' => 'txtSpcialInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40');
|
||||
// echo form_textarea($data);
|
||||
?> -->
|
||||
<textarea id="txtSpcialInstruction" name="txtSpcialInstruction" class="form-control" rows="10" cols="40">
|
||||
<?php echo html_entity_decode($ServiceDescription); ?>
|
||||
</textarea>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user