whoami7 - Manager
:
/
home
/
kckglobal
/
.trash
/
modules
/
accounting
/
assets
/
js
/
journal_entry
/
Upload File:
files >> //home/kckglobal/.trash/modules/accounting/assets/js/journal_entry/journal_entry_js.php
<script type="text/javascript"> var commodity_type_value, data; (function($) { "use strict"; acc_init_currency(); appValidateForm($('#journal-entry-form'), { journal_date: 'required', number: 'required', }); <?php if(isset($journal_entry)){ ?> data = <?php echo json_encode($journal_entry->details); ?> <?php }else{ ?> data = [ {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, {"account":"","debit":"","credit":"","description":""}, ]; <?php } ?> var hotElement1 = document.querySelector('#journal_entry_container'); var commodity_type = new Handsontable(hotElement1, { contextMenu: true, manualRowMove: true, autoWrapRow: true, rowHeights: 30, stretchH: 'all', defaultRowHeight: 100, minRows: 10, licenseKey: 'non-commercial-and-evaluation', rowHeaders: true, autoColumnSize: { samplingRatio: 23 }, filters: true, manualRowResize: true, manualColumnResize: true, columnHeaderHeight: 40, colWidths: [300, 100, 100, 325], rowHeights: 30, rowHeaderWidth: [44], columns: [ { data: 'account', renderer: customDropdownRenderer, editor: "chosen", chosenOptions: { data: <?php echo json_encode($account_to_select); ?> } }, { type: 'numeric', data: 'debit', numericFormat: { pattern: '0,0.00', }, }, { type: 'numeric', data: 'credit', numericFormat: { pattern: '0,0.00', }, }, { type: 'text', data: 'description', }, ], colHeaders: [ '<?php echo _l('acc_account'); ?>', '<?php echo _l('debit'); ?>', '<?php echo _l('credit'); ?>', '<?php echo _l('description'); ?>' ], data: data, afterChange: (changes) => { if(changes != null){ var journal_entry = JSON.parse(JSON.stringify(commodity_type_value.getData())); var total_debit = 0, total_credit = 0; $.each(journal_entry, function(index, value) { if(value[1] != '' && value[1] != null){ total_debit += parseFloat(value[1]); } if(value[2] != '' && value[2] != null){ total_credit += parseFloat(value[2]); } }); $('.total_debit').html(format_money(total_debit)); $('.total_credit').html(format_money(total_credit)); } } }); commodity_type_value = commodity_type; $('.journal-entry-form-submiter').on('click', function() { $('input[name="journal_entry"]').val(JSON.stringify(commodity_type_value.getData())); var journal_entry = JSON.parse($('input[name="journal_entry"]').val()); var total_debit = 0, total_credit = 0; $.each(journal_entry, function(index, value) { if(value[1] != '' && value[1] != null){ total_debit += parseFloat(value[1]); } if(value[2] != '' && value[2] != null){ total_credit += parseFloat(value[2]); } }); if(total_debit == total_credit){ if(total_debit > 0){ $('input[name="amount"]').val(total_debit); $('#journal-entry-form').submit(); }else{ alert('<?php echo _l('you_must_fill_out_at_least_two_detail_lines'); ?>'); } }else{ alert('<?php echo _l('please_balance_debits_and_credits'); ?>'); } }); })(jQuery); function customDropdownRenderer(instance, td, row, col, prop, value, cellProperties) { "use strict"; var selectedId; var optionsList = cellProperties.chosenOptions.data; if(typeof optionsList === "undefined" || typeof optionsList.length === "undefined" || !optionsList.length) { Handsontable.cellTypes.text.renderer(instance, td, row, col, prop, value, cellProperties); return td; } var values = (value + "").split("|"); value = []; for (var index = 0; index < optionsList.length; index++) { if (values.indexOf(optionsList[index].id + "") > -1) { selectedId = optionsList[index].id; value.push(optionsList[index].label); } } value = value.join(", "); Handsontable.cellTypes.text.renderer(instance, td, row, col, prop, value, cellProperties); return td; } function calculate_amount_total(){ "use strict"; var journal_entry = JSON.parse(JSON.stringify(commodity_type_value.getData())); var total_debit = 0, total_credit = 0; $.each(journal_entry, function(index, value) { if(value[1] != ''){ total_debit += parseFloat(value[1]); } if(value[2] != ''){ total_credit += parseFloat(value[2]); } }); $('.total_debit').html(format_money(total_debit)); $('.total_credit').html(format_money(total_credit)); } // Set the currency for accounting function acc_init_currency() { "use strict"; var selectedCurrencyId = <?php echo html_entity_decode($currency->id); ?>; requestGetJSON('misc/get_currency/' + selectedCurrencyId) .done(function(currency) { // Used for formatting money accounting.settings.currency.decimal = currency.decimal_separator; accounting.settings.currency.thousand = currency.thousand_separator; accounting.settings.currency.symbol = currency.symbol; accounting.settings.currency.format = currency.placement == 'after' ? '%v %s' : '%s%v'; }); } </script>
Copyright ©2021 || Defacer Indonesia