riainvoice/application/modules/invoices/views/modal_change_client.php
gandhimathi Bharathirajan c940cb1a2c all files
2017-09-11 14:38:03 +05:30

66 lines
2.7 KiB
PHP

<script>
$(function () {
// Display the create invoice modal
$('#change-client').modal('show');
<?php $this->layout->load_view('clients/script_select2_client_id.js'); ?>
// Creates the invoice
$('#client_change_confirm').click(function () {
// Posts the data to validate and create the invoice;
// will create the new client if necessary
$.post("<?php echo site_url('invoices/ajax/change_client'); ?>", {
client_id: $('#change_client_id').val(),
invoice_id: $('#invoice_id').val()
},
function (data) {
<?php echo(IP_DEBUG ? 'console.log(data);' : ''); ?>
var response = JSON.parse(data);
if (response.success === 1) {
// The validation was successful and invoice was created
window.location = "<?php echo site_url('invoices/view'); ?>/" + response.invoice_id;
}
else {
// The validation was not successful
$('.control-group').removeClass('has-error');
for (var key in response.validation_errors) {
$('#' + key).parent().parent().addClass('has-error');
}
}
});
});
});
</script>
<div id="change-client" class="modal modal-lg" role="dialog" aria-labelledby="modal_create_invoice" aria-hidden="true">
<form class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><i class="fa fa-close"></i></button>
<h4 class="panel-title"><?php _trans('change_client'); ?></h4>
</div>
<div class="modal-body">
<input class="hidden" id="invoice_id" value="<?php echo $invoice_id; ?>">
<div class="form-group">
<label for="change_client_id"><?php _trans('client'); ?></label>
<select name="client_id" id="change_client_id" class="client-id-select form-control"
autofocus="autofocus"></select>
</div>
</div>
<div class="modal-footer">
<div class="btn-group">
<button class="btn btn-success" id="client_change_confirm" type="button">
<i class="fa fa-check"></i> <?php _trans('submit'); ?>
</button>
<button class="btn btn-danger" type="button" data-dismiss="modal">
<i class="fa fa-times"></i> <?php _trans('cancel'); ?>
</button>
</div>
</div>
</form>
</div>