|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/erp.theinteractive.co.in/storage/framework/views/ |
Upload File : |
<?php echo e(Form::open(array('url' => 'product-category'))); ?>
<div class="modal-body">
<div class="row">
<div class="form-group col-md-12">
<?php echo e(Form::label('name', __('Category Name'),['class'=>'form-label'])); ?>
<?php echo e(Form::text('name', '', array('class' => 'form-control','required'=>'required' , 'placeholder'=>__('Enter Category Name')))); ?>
</div>
<div class="form-group col-md-12 d-block">
<?php echo e(Form::label('type', __('Category Type'),['class'=>'form-label'])); ?>
<?php echo e(Form::select('type',$types,null, array('class' => 'form-control select cattype ','required'=>'required'))); ?>
</div>
<div class="form-group col-md-12 account d-none">
<?php echo e(Form::label('chart_account_id',__('Account'),['class'=>'form-label'])); ?>
<select class="form-control select" name="chart_account" id="chart_account">
</select>
</div>
<div class="form-group col-md-12">
<?php echo e(Form::label('color', __('Category Color'),['class'=>'form-label'])); ?>
<?php echo e(Form::text('color', '', array('class' => 'form-control jscolor','required'=>'required'))); ?>
<small><?php echo e(__('For chart representation')); ?></small>
</div>
</div>
</div>
<div class="modal-footer">
<input type="button" value="<?php echo e(__('Cancel')); ?>" class="btn btn-light" data-bs-dismiss="modal">
<input type="submit" value="<?php echo e(__('Create')); ?>" class="btn btn-primary">
</div>
<?php echo e(Form::close()); ?>
<script>
//hide & show chartofaccount
$(document).on('click', '.cattype', function ()
{
var type = $(this).val();
if (type != 'product & service') {
$('.account').removeClass('d-none')
$('.account').addClass('d-block');
} else {
$('.account').addClass('d-none')
$('.account').removeClass('d-block');
}
});
$(document).on('change', '#type', function () {
var type = $(this).val();
$.ajax({
url: '<?php echo e(route('productServiceCategory.getaccount')); ?>',
type: 'POST',
data: {
"type": type,
"_token": "<?php echo e(csrf_token()); ?>",
},
success: function (data) {
$('#chart_account').empty();
$.each(data.chart_accounts, function (key, value) {
$('#chart_account').append('<option value="' + key + '" class="subAccount">' + value + '</option>');
$.each(data.sub_accounts, function (subkey, subvalue) {
if(key == subvalue.account)
{
$('#chart_account').append('<option value="' + subvalue.id + '">' + ' ' + subvalue.name + '</option>');
}
});
});
}
});
});
</script>
<?php /**PATH /var/www/erp.theinteractive.co.in/resources/views/productServiceCategory/create.blade.php ENDPATH**/ ?>