refs #451 Add format files;
Banking => Account, Banking => Transfer, Common => Items, Expense => Payment, Income => Revenue
This commit is contained in:
		| @@ -40,8 +40,10 @@ class Accounts extends Controller | |||||||
|     public function create() |     public function create() | ||||||
|     { |     { | ||||||
|         $currencies = Currency::enabled()->pluck('name', 'code'); |         $currencies = Currency::enabled()->pluck('name', 'code'); | ||||||
|          |  | ||||||
|         return view('banking.accounts.create', compact('currencies')); |         $currency = Currency::where('code', '=', setting('general.default_currency', 'USD'))->first(); | ||||||
|  |  | ||||||
|  |         return view('banking.accounts.create', compact('currencies', 'currency')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
| @@ -80,8 +82,10 @@ class Accounts extends Controller | |||||||
|         $currencies = Currency::enabled()->pluck('name', 'code'); |         $currencies = Currency::enabled()->pluck('name', 'code'); | ||||||
|  |  | ||||||
|         $account->default_account = ($account->id == setting('general.default_account')) ?: 1; |         $account->default_account = ($account->id == setting('general.default_account')) ?: 1; | ||||||
|          |  | ||||||
|         return view('banking.accounts.edit', compact('account', 'currencies')); |         $currency = Currency::where('code', '=', setting('general.default_currency', 'USD'))->first(); | ||||||
|  |  | ||||||
|  |         return view('banking.accounts.edit', compact('account', 'currencies', 'currency')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
| @@ -239,6 +243,12 @@ class Accounts extends Controller | |||||||
|         $account->currency_code = $currency_code; |         $account->currency_code = $currency_code; | ||||||
|         $account->currency_rate = $currency->rate; |         $account->currency_rate = $currency->rate; | ||||||
|  |  | ||||||
|  |         $account->thousands_separator = $currency->thousands_separator; | ||||||
|  |         $account->decimal_mark = $currency->decimal_mark; | ||||||
|  |         $account->precision = (int) $currency->precision; | ||||||
|  |         $account->symbol_first = $currency->symbol_first; | ||||||
|  |         $account->symbol = $currency->symbol; | ||||||
|  |  | ||||||
|         return response()->json($account); |         return response()->json($account); | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -102,7 +102,9 @@ class Transfers extends Controller | |||||||
|  |  | ||||||
|         $payment_methods = Modules::getPaymentMethods(); |         $payment_methods = Modules::getPaymentMethods(); | ||||||
|  |  | ||||||
|         return view('banking.transfers.create', compact('accounts', 'payment_methods')); |         $currency = Currency::where('code', '=', setting('general.default_currency', 'USD'))->first(); | ||||||
|  |  | ||||||
|  |         return view('banking.transfers.create', compact('accounts', 'payment_methods', 'currency')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
| @@ -219,7 +221,9 @@ class Transfers extends Controller | |||||||
|  |  | ||||||
|         $payment_methods = Modules::getPaymentMethods(); |         $payment_methods = Modules::getPaymentMethods(); | ||||||
|  |  | ||||||
|         return view('banking.transfers.edit', compact('transfer', 'accounts', 'payment_methods')); |         $currency = Currency::where('code', '=', setting('general.default_currency', 'USD'))->first(); | ||||||
|  |  | ||||||
|  |         return view('banking.transfers.edit', compact('transfer', 'accounts', 'payment_methods', 'currency')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
|   | |||||||
| @@ -52,7 +52,9 @@ class Items extends Controller | |||||||
|  |  | ||||||
|         $taxes = Tax::enabled()->orderBy('rate')->get()->pluck('title', 'id'); |         $taxes = Tax::enabled()->orderBy('rate')->get()->pluck('title', 'id'); | ||||||
|  |  | ||||||
|         return view('common.items.create', compact('categories', 'taxes')); |         $currency = Currency::where('code', '=', setting('general.default_currency', 'USD'))->first(); | ||||||
|  |  | ||||||
|  |         return view('common.items.create', compact('categories', 'taxes', 'currency')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
| @@ -131,7 +133,9 @@ class Items extends Controller | |||||||
|  |  | ||||||
|         $taxes = Tax::enabled()->orderBy('rate')->get()->pluck('title', 'id'); |         $taxes = Tax::enabled()->orderBy('rate')->get()->pluck('title', 'id'); | ||||||
|  |  | ||||||
|         return view('common.items.edit', compact('item', 'categories', 'taxes')); |         $currency = Currency::where('code', '=', setting('general.default_currency', 'USD'))->first(); | ||||||
|  |  | ||||||
|  |         return view('common.items.edit', compact('item', 'categories', 'taxes', 'currency')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
| @@ -234,8 +238,8 @@ class Items extends Controller | |||||||
|      */ |      */ | ||||||
|     public function export() |     public function export() | ||||||
|     { |     { | ||||||
|         \Excel::create('items', function ($excel) { |         \Excel::create('items', function($excel) { | ||||||
|             $excel->sheet('items', function ($sheet) { |             $excel->sheet('items', function($sheet) { | ||||||
|                 $sheet->fromModel(Item::filter(request()->input())->get()->makeHidden([ |                 $sheet->fromModel(Item::filter(request()->input())->get()->makeHidden([ | ||||||
|                     'id', 'company_id', 'item_id', 'created_at', 'updated_at', 'deleted_at' |                     'id', 'company_id', 'item_id', 'created_at', 'updated_at', 'deleted_at' | ||||||
|                 ])); |                 ])); | ||||||
| @@ -315,7 +319,7 @@ class Items extends Controller | |||||||
|  |  | ||||||
|         if ($input_items) { |         if ($input_items) { | ||||||
|             foreach ($input_items as $key => $item) { |             foreach ($input_items as $key => $item) { | ||||||
|                 $price = money($item['price'], $currency_code)->getAmount(); |                 $price = (double) $item['price']; | ||||||
|                 $quantity = (double) $item['quantity']; |                 $quantity = (double) $item['quantity']; | ||||||
|  |  | ||||||
|                 $item_tax_total= 0; |                 $item_tax_total= 0; | ||||||
|   | |||||||
| @@ -64,13 +64,15 @@ class Payments extends Controller | |||||||
|  |  | ||||||
|         $account_currency_code = Account::where('id', setting('general.default_account'))->pluck('currency_code')->first(); |         $account_currency_code = Account::where('id', setting('general.default_account'))->pluck('currency_code')->first(); | ||||||
|  |  | ||||||
|  |         $currency = Currency::where('code', '=', $account_currency_code)->first(); | ||||||
|  |  | ||||||
|         $vendors = Vendor::enabled()->orderBy('name')->pluck('name', 'id'); |         $vendors = Vendor::enabled()->orderBy('name')->pluck('name', 'id'); | ||||||
|  |  | ||||||
|         $categories = Category::enabled()->type('expense')->orderBy('name')->pluck('name', 'id'); |         $categories = Category::enabled()->type('expense')->orderBy('name')->pluck('name', 'id'); | ||||||
|  |  | ||||||
|         $payment_methods = Modules::getPaymentMethods(); |         $payment_methods = Modules::getPaymentMethods(); | ||||||
|  |  | ||||||
|         return view('expenses.payments.create', compact('accounts', 'currencies', 'account_currency_code', 'vendors', 'categories', 'payment_methods')); |         return view('expenses.payments.create', compact('accounts', 'currencies', 'account_currency_code', 'currency', 'vendors', 'categories', 'payment_methods')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
| @@ -154,13 +156,15 @@ class Payments extends Controller | |||||||
|  |  | ||||||
|         $account_currency_code = Account::where('id', $payment->account_id)->pluck('currency_code')->first(); |         $account_currency_code = Account::where('id', $payment->account_id)->pluck('currency_code')->first(); | ||||||
|  |  | ||||||
|  |         $currency = Currency::where('code', '=', $account_currency_code)->first(); | ||||||
|  |  | ||||||
|         $vendors = Vendor::enabled()->orderBy('name')->pluck('name', 'id'); |         $vendors = Vendor::enabled()->orderBy('name')->pluck('name', 'id'); | ||||||
|  |  | ||||||
|         $categories = Category::enabled()->type('expense')->orderBy('name')->pluck('name', 'id'); |         $categories = Category::enabled()->type('expense')->orderBy('name')->pluck('name', 'id'); | ||||||
|  |  | ||||||
|         $payment_methods = Modules::getPaymentMethods(); |         $payment_methods = Modules::getPaymentMethods(); | ||||||
|  |  | ||||||
|         return view('expenses.payments.edit', compact('payment', 'accounts', 'currencies', 'account_currency_code', 'vendors', 'categories', 'payment_methods')); |         return view('expenses.payments.edit', compact('payment', 'accounts', 'currencies', 'account_currency_code', 'currency', 'vendors', 'categories', 'payment_methods')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
|   | |||||||
| @@ -66,13 +66,15 @@ class Revenues extends Controller | |||||||
|  |  | ||||||
|         $account_currency_code = Account::where('id', setting('general.default_account'))->pluck('currency_code')->first(); |         $account_currency_code = Account::where('id', setting('general.default_account'))->pluck('currency_code')->first(); | ||||||
|  |  | ||||||
|  |         $currency = Currency::where('code', '=', $account_currency_code)->first(); | ||||||
|  |  | ||||||
|         $customers = Customer::enabled()->orderBy('name')->pluck('name', 'id'); |         $customers = Customer::enabled()->orderBy('name')->pluck('name', 'id'); | ||||||
|  |  | ||||||
|         $categories = Category::enabled()->type('income')->orderBy('name')->pluck('name', 'id'); |         $categories = Category::enabled()->type('income')->orderBy('name')->pluck('name', 'id'); | ||||||
|  |  | ||||||
|         $payment_methods = Modules::getPaymentMethods(); |         $payment_methods = Modules::getPaymentMethods(); | ||||||
|  |  | ||||||
|         return view('incomes.revenues.create', compact('accounts', 'currencies', 'account_currency_code', 'customers', 'categories', 'payment_methods')); |         return view('incomes.revenues.create', compact('accounts', 'currencies', 'account_currency_code', 'currency', 'customers', 'categories', 'payment_methods')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
| @@ -156,13 +158,15 @@ class Revenues extends Controller | |||||||
|  |  | ||||||
|         $account_currency_code = Account::where('id', $revenue->account_id)->pluck('currency_code')->first(); |         $account_currency_code = Account::where('id', $revenue->account_id)->pluck('currency_code')->first(); | ||||||
|  |  | ||||||
|  |         $currency = Currency::where('code', '=', $account_currency_code)->first(); | ||||||
|  |  | ||||||
|         $customers = Customer::enabled()->orderBy('name')->pluck('name', 'id'); |         $customers = Customer::enabled()->orderBy('name')->pluck('name', 'id'); | ||||||
|  |  | ||||||
|         $categories = Category::enabled()->type('income')->orderBy('name')->pluck('name', 'id'); |         $categories = Category::enabled()->type('income')->orderBy('name')->pluck('name', 'id'); | ||||||
|  |  | ||||||
|         $payment_methods = Modules::getPaymentMethods(); |         $payment_methods = Modules::getPaymentMethods(); | ||||||
|  |  | ||||||
|         return view('incomes.revenues.edit', compact('revenue', 'accounts', 'currencies', 'account_currency_code', 'customers', 'categories', 'payment_methods')); |         return view('incomes.revenues.edit', compact('revenue', 'accounts', 'currencies', 'account_currency_code', 'currency', 'customers', 'categories', 'payment_methods')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
|   | |||||||
| @@ -288,13 +288,9 @@ class Currencies extends Controller | |||||||
|  |  | ||||||
|         $code = request('code'); |         $code = request('code'); | ||||||
|  |  | ||||||
|         if ($code) { |         // Get currency object | ||||||
|             $currency = config('money.' . $code); |         $currency = Currency::where('code', $code)->first(); | ||||||
|             $currency['symbol_first'] = $currency['symbol_first'] ? 1 : 0; |  | ||||||
|  |  | ||||||
|             $json = (object) $currency; |         return response()->json($currency); | ||||||
|         } |  | ||||||
|  |  | ||||||
|         return response()->json($json); |  | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										703
									
								
								public/js/jquery/jquery.maskMoney.js
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										703
									
								
								public/js/jquery/jquery.maskMoney.js
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,703 @@ | |||||||
|  | (function ($) { | ||||||
|  |     "use strict"; | ||||||
|  |     if (!$.browser) { | ||||||
|  |         $.browser = {}; | ||||||
|  |         $.browser.mozilla = /mozilla/.test(navigator.userAgent.toLowerCase()) && !/webkit/.test(navigator.userAgent.toLowerCase()); | ||||||
|  |         $.browser.webkit = /webkit/.test(navigator.userAgent.toLowerCase()); | ||||||
|  |         $.browser.opera = /opera/.test(navigator.userAgent.toLowerCase()); | ||||||
|  |         $.browser.msie = /msie/.test(navigator.userAgent.toLowerCase()); | ||||||
|  |         $.browser.device = /android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()); | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     var defaultOptions = { | ||||||
|  |         prefix: "", | ||||||
|  |         suffix: "", | ||||||
|  |         affixesStay: true, | ||||||
|  |         thousands: ",", | ||||||
|  |         decimal: ".", | ||||||
|  |         precision: 2, | ||||||
|  |         allowZero: false, | ||||||
|  |         allowNegative: false, | ||||||
|  |         doubleClickSelection: true, | ||||||
|  |         allowEmpty: false, | ||||||
|  |         bringCaretAtEndOnFocus: true | ||||||
|  |     }, | ||||||
|  |     methods = { | ||||||
|  |         destroy: function () { | ||||||
|  |             $(this).unbind(".maskMoney"); | ||||||
|  |  | ||||||
|  |             if ($.browser.msie) { | ||||||
|  |                 this.onpaste = null; | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             return this; | ||||||
|  |         }, | ||||||
|  |         applyMask: function (value) { | ||||||
|  |             var $input = $(this); | ||||||
|  |  | ||||||
|  |             // data-* api | ||||||
|  |             var settings = $input.data("settings"); | ||||||
|  |  | ||||||
|  |             return maskValue(value, settings); | ||||||
|  |         }, | ||||||
|  |         mask: function (value) { | ||||||
|  |             return this.each(function () { | ||||||
|  |                 var $this = $(this); | ||||||
|  |  | ||||||
|  |                 if (typeof value === "number") { | ||||||
|  |                     $this.val(value); | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 return $this.trigger("mask"); | ||||||
|  |             }); | ||||||
|  |         }, | ||||||
|  |         unmasked: function () { | ||||||
|  |             return this.map(function () { | ||||||
|  |                 var value = ($(this).val() || "0"), | ||||||
|  |                     isNegative = value.indexOf("-") !== -1, | ||||||
|  |                     decimalPart; | ||||||
|  |  | ||||||
|  |                 // get the last position of the array that is a number(coercion makes "" to be evaluated as false) | ||||||
|  |                 $(value.split(/\D/).reverse()).each(function (index, element) { | ||||||
|  |                     if (element) { | ||||||
|  |                         decimalPart = element; | ||||||
|  |  | ||||||
|  |                         return false; | ||||||
|  |                     } | ||||||
|  |                 }); | ||||||
|  |  | ||||||
|  |                 value = value.replace(/\D/g, ""); | ||||||
|  |                 value = value.replace(new RegExp(decimalPart + "$"), "." + decimalPart); | ||||||
|  |  | ||||||
|  |                 if (isNegative) { | ||||||
|  |                     value = "-" + value; | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 return parseFloat(value); | ||||||
|  |             }); | ||||||
|  |         }, | ||||||
|  |         unmaskedWithOptions: function () { | ||||||
|  |             return this.map(function () { | ||||||
|  |                 var value = ($(this).val() || "0"), | ||||||
|  |                     settings = $(this).data("settings") || defaultOptions, | ||||||
|  |                     regExp = new RegExp((settings.thousandsForUnmasked || settings.thousands), "g"); | ||||||
|  |  | ||||||
|  |                 value = value.replace(regExp, ""); | ||||||
|  |  | ||||||
|  |                 return parseFloat(value); | ||||||
|  |             }); | ||||||
|  |         }, | ||||||
|  |         init: function (parameters) { | ||||||
|  |             // the default options should not be shared with others | ||||||
|  |             parameters = $.extend($.extend({}, defaultOptions), parameters); | ||||||
|  |  | ||||||
|  |             return this.each(function () { | ||||||
|  |                 var $input = $(this), settings, | ||||||
|  |                     onFocusValue; | ||||||
|  |  | ||||||
|  |                 // data-* api | ||||||
|  |                 settings = $.extend({}, parameters); | ||||||
|  |                 settings = $.extend(settings, $input.data()); | ||||||
|  |  | ||||||
|  |                 // Store settings for use with the applyMask method. | ||||||
|  |                 $input.data("settings", settings); | ||||||
|  |  | ||||||
|  |                 function getInputSelection() { | ||||||
|  |                     var el = $input.get(0), | ||||||
|  |                         start = 0, | ||||||
|  |                         end = 0, | ||||||
|  |                         normalizedValue, | ||||||
|  |                         range, | ||||||
|  |                         textInputRange, | ||||||
|  |                         len, | ||||||
|  |                         endRange; | ||||||
|  |  | ||||||
|  |                     if (typeof el.selectionStart === "number" && typeof el.selectionEnd === "number") { | ||||||
|  |                         start = el.selectionStart; | ||||||
|  |                         end = el.selectionEnd; | ||||||
|  |                     } else { | ||||||
|  |                         range = document.selection.createRange(); | ||||||
|  |  | ||||||
|  |                         if (range && range.parentElement() === el) { | ||||||
|  |                             len = el.value.length; | ||||||
|  |                             normalizedValue = el.value.replace(/\r\n/g, "\n"); | ||||||
|  |  | ||||||
|  |                             // Create a working TextRange that lives only in the input | ||||||
|  |                             textInputRange = el.createTextRange(); | ||||||
|  |                             textInputRange.moveToBookmark(range.getBookmark()); | ||||||
|  |  | ||||||
|  |                             // Check if the start and end of the selection are at the very end | ||||||
|  |                             // of the input, since moveStart/moveEnd doesn't return what we want | ||||||
|  |                             // in those cases | ||||||
|  |                             endRange = el.createTextRange(); | ||||||
|  |                             endRange.collapse(false); | ||||||
|  |  | ||||||
|  |                             if (textInputRange.compareEndPoints("StartToEnd", endRange) > -1) { | ||||||
|  |                                 start = end = len; | ||||||
|  |                             } else { | ||||||
|  |                                 start = -textInputRange.moveStart("character", -len); | ||||||
|  |                                 start += normalizedValue.slice(0, start).split("\n").length - 1; | ||||||
|  |  | ||||||
|  |                                 if (textInputRange.compareEndPoints("EndToEnd", endRange) > -1) { | ||||||
|  |                                     end = len; | ||||||
|  |                                 } else { | ||||||
|  |                                     end = -textInputRange.moveEnd("character", -len); | ||||||
|  |                                     end += normalizedValue.slice(0, end).split("\n").length - 1; | ||||||
|  |                                 } | ||||||
|  |                             } | ||||||
|  |                         } | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     return { | ||||||
|  |                         start: start, | ||||||
|  |                         end: end | ||||||
|  |                     }; | ||||||
|  |                 } // getInputSelection | ||||||
|  |  | ||||||
|  |                 function canInputMoreNumbers() { | ||||||
|  |                     var haventReachedMaxLength = !($input.val().length >= $input.attr("maxlength") && $input.attr("maxlength") >= 0), | ||||||
|  |                         selection = getInputSelection(), | ||||||
|  |                         start = selection.start, | ||||||
|  |                         end = selection.end, | ||||||
|  |                         haveNumberSelected = (selection.start !== selection.end && $input.val().substring(start, end).match(/\d/)) ? true : false, | ||||||
|  |                         startWithZero = ($input.val().substring(0, 1) === "0"); | ||||||
|  |  | ||||||
|  |                     return haventReachedMaxLength || haveNumberSelected || startWithZero; | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function setCursorPosition(pos) { | ||||||
|  |                     // Do not set the position if | ||||||
|  |                     // the we're formatting on blur. | ||||||
|  |                     // This is because we do not want | ||||||
|  |                     // to refocus on the control after | ||||||
|  |                     // the blur. | ||||||
|  |                     if (!!settings.formatOnBlur) { | ||||||
|  |                         return; | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     $input.each(function (index, elem) { | ||||||
|  |                         if (elem.setSelectionRange) { | ||||||
|  |                             elem.focus(); | ||||||
|  |  | ||||||
|  |                             elem.setSelectionRange(pos, pos); | ||||||
|  |                         } else if (elem.createTextRange) { | ||||||
|  |                             var range = elem.createTextRange(); | ||||||
|  |  | ||||||
|  |                             range.collapse(true); | ||||||
|  |  | ||||||
|  |                             range.moveEnd("character", pos); | ||||||
|  |                             range.moveStart("character", pos); | ||||||
|  |  | ||||||
|  |                             range.select(); | ||||||
|  |                         } | ||||||
|  |                     }); | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function maskAndPosition(startPos) { | ||||||
|  |                     var originalLen = $input.val().length, | ||||||
|  |                         newLen; | ||||||
|  |  | ||||||
|  |                     //$input.val(maskValue($input.val(), settings)); | ||||||
|  |  | ||||||
|  |                     newLen = $input.val().length; | ||||||
|  |  | ||||||
|  |                     // If the we're using the reverse option, | ||||||
|  |                     // do not put the cursor at the end of | ||||||
|  |                     // the input. The reverse option allows | ||||||
|  |                     // the user to input text from left to right. | ||||||
|  |                     if (!settings.reverse) { | ||||||
|  |                         startPos = startPos - (originalLen - newLen); | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     setCursorPosition(startPos); | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function mask() { | ||||||
|  |                     var value = $input.val(); | ||||||
|  |  | ||||||
|  |                     if (settings.allowEmpty && value === "") { | ||||||
|  |                         return; | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     var isNumber = !isNaN(value); | ||||||
|  |                     var decimalPointIndex = isNumber ? value.indexOf(".") : value.indexOf(settings.decimal); | ||||||
|  |  | ||||||
|  |                     if (settings.precision > 0) { | ||||||
|  |                         if (decimalPointIndex < 0) { | ||||||
|  |                             value += settings.decimal + new Array(settings.precision + 1).join(0); | ||||||
|  |                         } else { | ||||||
|  |                             // If the following decimal part dosen't have enough length against the precision, it needs to be filled with zeros. | ||||||
|  |                             var integerPart = value.slice(0, decimalPointIndex), | ||||||
|  |                                 decimalPart = value.slice(decimalPointIndex + 1); | ||||||
|  |  | ||||||
|  |                             var decimalPartLength = decimalPart.length; | ||||||
|  |  | ||||||
|  |                             if (decimalPartLength > settings.precision) { | ||||||
|  |                                 decimalPartLength = settings.precision; | ||||||
|  |                             } | ||||||
|  |  | ||||||
|  |                             value = integerPart + settings.decimal + decimalPart + | ||||||
|  |                                     new Array((settings.precision + 1) - decimalPartLength).join(0); | ||||||
|  |                         } | ||||||
|  |                     } else if (decimalPointIndex > 0) { | ||||||
|  |                         // if the precision is 0, discard the decimal part | ||||||
|  |                         value = value.slice(0, decimalPointIndex); | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     $input.val(maskValue(value, settings)); | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function changeSign() { | ||||||
|  |                     var inputValue = $input.val(); | ||||||
|  |  | ||||||
|  |                     if (settings.allowNegative) { | ||||||
|  |                         if (inputValue !== "" && inputValue.charAt(0) === "-") { | ||||||
|  |                             return inputValue.replace("-", ""); | ||||||
|  |                         } else { | ||||||
|  |                             return "-" + inputValue; | ||||||
|  |                         } | ||||||
|  |                     } else { | ||||||
|  |                         return inputValue; | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function preventDefault(e) { | ||||||
|  |                     if (e.preventDefault) { //standard browsers | ||||||
|  |                         e.preventDefault(); | ||||||
|  |                     } else { // old internet explorer | ||||||
|  |                         e.returnValue = false; | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function fixMobile() { | ||||||
|  |                     if ($.browser.device) { | ||||||
|  |                         $input.attr("type", "tel"); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function keypressEvent(e) { | ||||||
|  |                     e = e || window.event; | ||||||
|  |  | ||||||
|  |                     var key = e.which || e.charCode || e.keyCode, | ||||||
|  |                         decimalKeyCode = settings.decimal.charCodeAt(0); | ||||||
|  |  | ||||||
|  |                     //added to handle an IE "special" event | ||||||
|  |                     if (key === undefined) { | ||||||
|  |                         return false; | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     // any key except the numbers 0-9. if we're using settings.reverse, | ||||||
|  |                     // allow the user to input the decimal key | ||||||
|  |                     if ((key != decimalKeyCode) && (key < 48 || key > 57) && (key !== decimalKeyCode || !settings.reverse)) { | ||||||
|  |                         return handleAllKeysExceptNumericalDigits(key, e); | ||||||
|  |                     } else if (!canInputMoreNumbers()) { | ||||||
|  |                         return false; | ||||||
|  |                     } else { | ||||||
|  |                         if (key === decimalKeyCode && shouldPreventDecimalKey()) { | ||||||
|  |                             return false; | ||||||
|  |                         } | ||||||
|  |  | ||||||
|  |                         if (settings.formatOnBlur) { | ||||||
|  |                             return true; | ||||||
|  |                         } | ||||||
|  |  | ||||||
|  |                         preventDefault(e); | ||||||
|  |  | ||||||
|  |                         applyMask(e); | ||||||
|  |  | ||||||
|  |                         return false; | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function shouldPreventDecimalKey() { | ||||||
|  |                     // If all text is selected, we can accept the decimal | ||||||
|  |                     // key because it will replace everything. | ||||||
|  |                     if (isAllTextSelected()) { | ||||||
|  |                         return false; | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     return alreadyContainsDecimal(); | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function isAllTextSelected() { | ||||||
|  |                     var length = $input.val().length; | ||||||
|  |                     var selection = getInputSelection(); | ||||||
|  |  | ||||||
|  |                     // This should if all text is selected or if the | ||||||
|  |                     // input is empty. | ||||||
|  |                     return selection.start === 0 && selection.end === length; | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function alreadyContainsDecimal() { | ||||||
|  |                     return $input.val().indexOf(settings.decimal) > -1; | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function applyMask(e) { | ||||||
|  |                     e = e || window.event; | ||||||
|  |  | ||||||
|  |                     decimalKeyCode = settings.decimal.charCodeAt(0); | ||||||
|  |  | ||||||
|  |                     var key = e.which || e.charCode || e.keyCode, | ||||||
|  |                         keyPressedChar = "", | ||||||
|  |                         selection, | ||||||
|  |                         startPos, | ||||||
|  |                         endPos, | ||||||
|  |                         value, | ||||||
|  |                         decimalKeyCode = settings.decimal.charCodeAt(0); | ||||||
|  |  | ||||||
|  |                     if (key == decimalKeyCode) { | ||||||
|  |                         keyPressedChar = String.fromCharCode(key); | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     if (key >= 48 && key <= 57) { | ||||||
|  |                         keyPressedChar = String.fromCharCode(key); | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     selection = getInputSelection(); | ||||||
|  |  | ||||||
|  |                     startPos = selection.start; | ||||||
|  |                     endPos = selection.end; | ||||||
|  |  | ||||||
|  |                     value = $input.val(); | ||||||
|  |  | ||||||
|  |                     $input.val(value.substring(0, startPos) + keyPressedChar + value.substring(endPos, value.length)); | ||||||
|  |  | ||||||
|  |                     maskAndPosition(startPos + 1); | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function handleAllKeysExceptNumericalDigits(key, e) { | ||||||
|  |                     var decimalKeyCode = settings.decimal.charCodeAt(0); | ||||||
|  |  | ||||||
|  |                     // -(minus) key | ||||||
|  |                     if (key === 45) { | ||||||
|  |                         $input.val(changeSign()); | ||||||
|  |  | ||||||
|  |                         return false; | ||||||
|  |                         // +(plus) key | ||||||
|  |                     } else if (key === 43) { | ||||||
|  |                         $input.val($input.val().replace("-", "")); | ||||||
|  |  | ||||||
|  |                         return false; | ||||||
|  |                         // enter key or tab key | ||||||
|  |                     } else if (key === 13 || key === 9) { | ||||||
|  |                         return true; | ||||||
|  |                     } else if ($.browser.mozilla && (key === 37 || key === 39) && e.charCode === 0) { | ||||||
|  |                         // needed for left arrow key or right arrow key with firefox | ||||||
|  |                         // the charCode part is to avoid allowing "%"(e.charCode 0, e.keyCode 37) | ||||||
|  |                         return true; | ||||||
|  |                     } else if (key == decimalKeyCode) { | ||||||
|  |                         preventDefault(e); | ||||||
|  |  | ||||||
|  |                         return false; | ||||||
|  |                     } else { // any other key with keycode less than 48 and greater than 57 | ||||||
|  |                         preventDefault(e); | ||||||
|  |  | ||||||
|  |                         return true; | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function keydownEvent(e) { | ||||||
|  |                     e = e || window.event; | ||||||
|  |  | ||||||
|  |                     var key = e.which || e.charCode || e.keyCode, | ||||||
|  |                         selection, | ||||||
|  |                         startPos, | ||||||
|  |                         endPos, | ||||||
|  |                         value, | ||||||
|  |                         lastNumber; | ||||||
|  |  | ||||||
|  |                     //needed to handle an IE "special" event | ||||||
|  |                     if (key === undefined) { | ||||||
|  |                         return false; | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     selection = getInputSelection(); | ||||||
|  |  | ||||||
|  |                     startPos = selection.start; | ||||||
|  |                     endPos = selection.end; | ||||||
|  |  | ||||||
|  |                     if (key === 8 || key === 46 || key === 63272) { // backspace or delete key (with special case for safari) | ||||||
|  |                         preventDefault(e); | ||||||
|  |  | ||||||
|  |                         value = $input.val(); | ||||||
|  |  | ||||||
|  |                         // not a selection | ||||||
|  |                         if (startPos === endPos) { | ||||||
|  |                             // backspace | ||||||
|  |                             if (key === 8) { | ||||||
|  |                                 if (settings.suffix === "") { | ||||||
|  |                                     startPos -= 1; | ||||||
|  |                                 } else { | ||||||
|  |                                     // needed to find the position of the last number to be erased | ||||||
|  |                                     lastNumber = value.split("").reverse().join("").search(/\d/); | ||||||
|  |                                     startPos = value.length - lastNumber - 1; | ||||||
|  |                                     endPos = startPos + 1; | ||||||
|  |                                 } | ||||||
|  |                                 //delete | ||||||
|  |                             } else { | ||||||
|  |                                 endPos += 1; | ||||||
|  |                             } | ||||||
|  |                         } | ||||||
|  |  | ||||||
|  |                         $input.val(value.substring(0, startPos) + value.substring(endPos, value.length)); | ||||||
|  |  | ||||||
|  |                         maskAndPosition(startPos); | ||||||
|  |  | ||||||
|  |                         return false; | ||||||
|  |                     } else if (key === 9) { // tab key | ||||||
|  |                         return true; | ||||||
|  |                     } else { // any other key | ||||||
|  |                         return true; | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function focusEvent() { | ||||||
|  |                     onFocusValue = $input.val(); | ||||||
|  |  | ||||||
|  |                     mask(); | ||||||
|  |  | ||||||
|  |                     var input = $input.get(0), | ||||||
|  |                         textRange; | ||||||
|  |  | ||||||
|  |                     if (!!settings.selectAllOnFocus) { | ||||||
|  |                         input.select(); | ||||||
|  |                     } else if (input.createTextRange && settings.bringCaretAtEndOnFocus) { | ||||||
|  |                         textRange = input.createTextRange(); | ||||||
|  |  | ||||||
|  |                         textRange.collapse(false); // set the cursor at the end of the input | ||||||
|  |                         textRange.select(); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function focusoutEvent() { | ||||||
|  |                     onFocusValue = $input.val(); | ||||||
|  |  | ||||||
|  |                     mask(); | ||||||
|  |  | ||||||
|  |                     var input = $input.get(0), | ||||||
|  |                         textRange; | ||||||
|  |  | ||||||
|  |                     if (!!settings.selectAllOnFocus) { | ||||||
|  |                         input.select(); | ||||||
|  |                     } else if (input.createTextRange && settings.bringCaretAtEndOnFocus) { | ||||||
|  |                         textRange = input.createTextRange(); | ||||||
|  |  | ||||||
|  |                         textRange.collapse(false); // set the cursor at the end of the input | ||||||
|  |                         textRange.select(); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function cutPasteEvent() { | ||||||
|  |                     setTimeout(function () { | ||||||
|  |                         mask(); | ||||||
|  |                     }, 0); | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function getDefaultMask() { | ||||||
|  |                     var n = parseFloat("0") / Math.pow(10, settings.precision); | ||||||
|  |  | ||||||
|  |                     return (n.toFixed(settings.precision)).replace(new RegExp("\\.", "g"), settings.decimal); | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function blurEvent(e) { | ||||||
|  |                     if ($.browser.msie) { | ||||||
|  |                         keypressEvent(e); | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     if (!!settings.formatOnBlur && $input.val() !== onFocusValue) { | ||||||
|  |                         applyMask(e); | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     if ($input.val() === "" && settings.allowEmpty) { | ||||||
|  |                         $input.val(""); | ||||||
|  |                     } else if ($input.val() === "" || $input.val() === setSymbol(getDefaultMask(), settings)) { | ||||||
|  |                         if (!settings.allowZero) { | ||||||
|  |                             $input.val(""); | ||||||
|  |                         } else if (!settings.affixesStay) { | ||||||
|  |                             $input.val(getDefaultMask()); | ||||||
|  |                         } else { | ||||||
|  |                             $input.val(setSymbol(getDefaultMask(), settings)); | ||||||
|  |                         } | ||||||
|  |                     } else { | ||||||
|  |                         if (!settings.affixesStay) { | ||||||
|  |                             var newValue = $input.val().replace(settings.prefix, "").replace(settings.suffix, ""); | ||||||
|  |  | ||||||
|  |                             $input.val(newValue); | ||||||
|  |                         } | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     if ($input.val() !== onFocusValue) { | ||||||
|  |                         $input.change(); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function clickEvent() { | ||||||
|  |                     var input = $input.get(0), | ||||||
|  |                         length; | ||||||
|  |  | ||||||
|  |                     if (!!settings.selectAllOnFocus) { | ||||||
|  |                         // selectAllOnFocus will be handled by | ||||||
|  |                         // the focus event. The focus event is | ||||||
|  |                         // also fired when the input is clicked. | ||||||
|  |                         return; | ||||||
|  |                     } else if (input.setSelectionRange && settings.bringCaretAtEndOnFocus) { | ||||||
|  |                         length = $input.val().length; | ||||||
|  |  | ||||||
|  |                         //input.setSelectionRange(length, length); | ||||||
|  |                     } else { | ||||||
|  |                         $input.val($input.val()); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 function doubleClickEvent() { | ||||||
|  |                     var input = $input.get(0), | ||||||
|  |                         start, | ||||||
|  |                         length; | ||||||
|  |  | ||||||
|  |                     if (input.setSelectionRange && settings.bringCaretAtEndOnFocus) { | ||||||
|  |                         length = $input.val().length; | ||||||
|  |  | ||||||
|  |                         start = settings.doubleClickSelection ? 0 : length; | ||||||
|  |  | ||||||
|  |                         //input.setSelectionRange(start, length); | ||||||
|  |                     } else { | ||||||
|  |                         $input.val($input.val()); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 fixMobile(); | ||||||
|  |  | ||||||
|  |                 $input.unbind(".maskMoney"); | ||||||
|  |                 $input.bind("keypress.maskMoney", keypressEvent); | ||||||
|  |                 $input.bind("keydown.maskMoney", keydownEvent); | ||||||
|  |                 $input.bind("blur.maskMoney", blurEvent); | ||||||
|  |                 $input.bind("focus.maskMoney", focusEvent); | ||||||
|  |                 $input.bind("focusout.maskMoney", focusoutEvent); | ||||||
|  |                 $input.bind("click.maskMoney", clickEvent); | ||||||
|  |                 $input.bind("dblclick.maskMoney", doubleClickEvent); | ||||||
|  |                 $input.bind("cut.maskMoney", cutPasteEvent); | ||||||
|  |                 $input.bind("paste.maskMoney", cutPasteEvent); | ||||||
|  |                 $input.bind("mask.maskMoney", mask); | ||||||
|  |             }); | ||||||
|  |         } | ||||||
|  |     }; | ||||||
|  |  | ||||||
|  |     function setSymbol(value, settings) { | ||||||
|  |         var operator = ""; | ||||||
|  |  | ||||||
|  |         if (value.indexOf("-") > -1) { | ||||||
|  |             value = value.replace("-", ""); | ||||||
|  |             operator = "-"; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         if (value.indexOf(settings.prefix) > -1) { | ||||||
|  |             value = value.replace(settings.prefix, ""); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         if (value.indexOf(settings.suffix) > -1) { | ||||||
|  |             value = value.replace(settings.suffix, ""); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         return operator + settings.prefix + value + settings.suffix; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     function maskValue(value, settings) { | ||||||
|  |         if (settings.allowEmpty && value === "") { | ||||||
|  |             return ""; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         if (!!settings.reverse) { | ||||||
|  |             return maskValueReverse(value, settings); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         return maskValueStandard(value, settings); | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     function maskValueStandard(value, settings) { | ||||||
|  |         var negative = (value.indexOf("-") > -1 && settings.allowNegative) ? "-" : "", | ||||||
|  |             onlyNumbers = value.replace(/[^0-9]/g, ""), | ||||||
|  |             input_precision = value.length - value.lastIndexOf(settings.decimal) - 1, | ||||||
|  |             integerPart = onlyNumbers.slice(0, onlyNumbers.length - input_precision), | ||||||
|  |             newValue, | ||||||
|  |             decimalPart, | ||||||
|  |             leadingZeros; | ||||||
|  |  | ||||||
|  |         newValue = buildIntegerPart(integerPart, negative, settings); | ||||||
|  |  | ||||||
|  |         if (settings.precision > 0) { | ||||||
|  |             if(!isNaN(value) && value.indexOf(".")){ | ||||||
|  |                 var precision = value.substr(value.indexOf(".") + 1); | ||||||
|  |  | ||||||
|  |                 onlyNumbers += new Array((settings.precision + 1) - precision.length).join(0); | ||||||
|  |  | ||||||
|  |                 integerPart = onlyNumbers.slice(0, onlyNumbers.length - input_precision); | ||||||
|  |  | ||||||
|  |                 newValue = buildIntegerPart(integerPart, negative, settings); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             decimalPart = onlyNumbers.slice(onlyNumbers.length - input_precision, (onlyNumbers.length - input_precision) + settings.precision); | ||||||
|  |  | ||||||
|  |             leadingZeros = new Array((settings.precision + 1) - decimalPart.length).join(0); | ||||||
|  |  | ||||||
|  |             newValue += settings.decimal + leadingZeros + decimalPart; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         return setSymbol(newValue, settings); | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     function maskValueReverse(value, settings) { | ||||||
|  |         var negative = (value.indexOf("-") > -1 && settings.allowNegative) ? "-" : "", | ||||||
|  |             valueWithoutSymbol = value.replace(settings.prefix, "").replace(settings.suffix, ""), | ||||||
|  |             integerPart = valueWithoutSymbol.split(settings.decimal)[0], | ||||||
|  |             newValue, | ||||||
|  |             decimalPart = ""; | ||||||
|  |  | ||||||
|  |         if (integerPart === "") { | ||||||
|  |             integerPart = "0"; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         newValue = buildIntegerPart(integerPart, negative, settings); | ||||||
|  |  | ||||||
|  |         if (settings.precision > 0) { | ||||||
|  |             var arr = valueWithoutSymbol.split(settings.decimal); | ||||||
|  |  | ||||||
|  |             if (arr.length > 1) { | ||||||
|  |                 decimalPart = arr[1]; | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             newValue += settings.decimal + decimalPart; | ||||||
|  |  | ||||||
|  |             var rounded = Number.parseFloat((integerPart + "." + decimalPart)).toFixed(settings.precision); | ||||||
|  |  | ||||||
|  |             var roundedDecimalPart = rounded.toString().split(settings.decimal)[1]; | ||||||
|  |  | ||||||
|  |             newValue = newValue.split(settings.decimal)[0] + "." + roundedDecimalPart; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         return setSymbol(newValue, settings); | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     function buildIntegerPart(integerPart, negative, settings) { | ||||||
|  |         // remove initial zeros | ||||||
|  |         integerPart = integerPart.replace(/^0*/g, ""); | ||||||
|  |  | ||||||
|  |         // put settings.thousands every 3 chars | ||||||
|  |         integerPart = integerPart.replace(/\B(?=(\d{3})+(?!\d))/g, settings.thousands); | ||||||
|  |  | ||||||
|  |         if (integerPart === "") { | ||||||
|  |             integerPart = "0"; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         return negative + integerPart; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     $.fn.maskMoney = function (method) { | ||||||
|  |         if (methods[method]) { | ||||||
|  |             return methods[method].apply(this, Array.prototype.slice.call(arguments, 1)); | ||||||
|  |         } else if (typeof method === "object" || !method) { | ||||||
|  |             return methods.init.apply(this, arguments); | ||||||
|  |         } else { | ||||||
|  |             $.error("Method " + method + " does not exist on jQuery.maskMoney"); | ||||||
|  |         } | ||||||
|  |     }; | ||||||
|  | })(window.jQuery || window.Zepto); | ||||||
| @@ -43,6 +43,20 @@ | |||||||
|         var text_no = '{{ trans('general.no') }}'; |         var text_no = '{{ trans('general.no') }}'; | ||||||
|  |  | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#opening_balance").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $("#opening_balance").focusout(); | ||||||
|  |  | ||||||
|             $('#enabled_1').trigger('click'); |             $('#enabled_1').trigger('click'); | ||||||
|  |  | ||||||
|             $('#name').focus(); |             $('#name').focus(); | ||||||
| @@ -51,5 +65,35 @@ | |||||||
|                 placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.currencies', 1)]) }}" |                 placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.currencies', 1)]) }}" | ||||||
|             }); |             }); | ||||||
|         }); |         }); | ||||||
|  |  | ||||||
|  |         $(document).on('change', '#currency_code', function (e) { | ||||||
|  |             $.ajax({ | ||||||
|  |                 url: '{{ url("settings/currencies/currency") }}', | ||||||
|  |                 type: 'GET', | ||||||
|  |                 dataType: 'JSON', | ||||||
|  |                 data: 'code=' + $(this).val(), | ||||||
|  |                 success: function(data) { | ||||||
|  |                     $('#currency').val(data.currency_code); | ||||||
|  |  | ||||||
|  |                     $('#currency_code').val(data.currency_code); | ||||||
|  |                     $('#currency_rate').val(data.currency_rate); | ||||||
|  |  | ||||||
|  |                     opening_balance = $('#opening_balance').maskMoney('unmasked')[0]; | ||||||
|  |  | ||||||
|  |                     $("#opening_balance").maskMoney({ | ||||||
|  |                         thousands : data.thousands_separator, | ||||||
|  |                         decimal : data.decimal_mark, | ||||||
|  |                         precision : data.precision, | ||||||
|  |                         allowZero : true, | ||||||
|  |                         prefix : (data.symbol_first) ? data.symbol : '', | ||||||
|  |                         suffix : (data.symbol_first) ? '' : data.symbol | ||||||
|  |                     }); | ||||||
|  |  | ||||||
|  |                     $('#opening_balance').val(opening_balance); | ||||||
|  |  | ||||||
|  |                     $('#opening_balance').trigger('focus'); | ||||||
|  |                 } | ||||||
|  |             }); | ||||||
|  |         }); | ||||||
|     </script> |     </script> | ||||||
| @endpush | @endpush | ||||||
|   | |||||||
| @@ -49,9 +49,53 @@ | |||||||
|         var text_no = '{{ trans('general.no') }}'; |         var text_no = '{{ trans('general.no') }}'; | ||||||
|  |  | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#opening_balance").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $("#opening_balance").focusout(); | ||||||
|  |  | ||||||
|             $("#currency_code").select2({ |             $("#currency_code").select2({ | ||||||
|                 placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.currencies', 1)]) }}" |                 placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.currencies', 1)]) }}" | ||||||
|             }); |             }); | ||||||
|         }); |         }); | ||||||
|  |  | ||||||
|  |         $(document).on('change', '#currency_code', function (e) { | ||||||
|  |             $.ajax({ | ||||||
|  |                 url: '{{ url("settings/currencies/currency") }}', | ||||||
|  |                 type: 'GET', | ||||||
|  |                 dataType: 'JSON', | ||||||
|  |                 data: 'code=' + $(this).val(), | ||||||
|  |                 success: function(data) { | ||||||
|  |                     $('#currency').val(data.currency_code); | ||||||
|  |  | ||||||
|  |                     $('#currency_code').val(data.currency_code); | ||||||
|  |                     $('#currency_rate').val(data.currency_rate); | ||||||
|  |  | ||||||
|  |                     opening_balance = $('#opening_balance').maskMoney('unmasked')[0]; | ||||||
|  |  | ||||||
|  |                     $("#opening_balance").maskMoney({ | ||||||
|  |                         thousands : data.thousands_separator, | ||||||
|  |                         decimal : data.decimal_mark, | ||||||
|  |                         precision : data.precision, | ||||||
|  |                         allowZero : true, | ||||||
|  |                         prefix : (data.symbol_first) ? data.symbol : '', | ||||||
|  |                         suffix : (data.symbol_first) ? '' : data.symbol | ||||||
|  |                     }); | ||||||
|  |  | ||||||
|  |                     $('#opening_balance').val(opening_balance); | ||||||
|  |  | ||||||
|  |                     $('#opening_balance').trigger('focus'); | ||||||
|  |                 } | ||||||
|  |             }); | ||||||
|  |         }); | ||||||
|     </script> |     </script> | ||||||
| @endpush | @endpush | ||||||
|   | |||||||
| @@ -45,6 +45,20 @@ | |||||||
| @push('scripts') | @push('scripts') | ||||||
|     <script type="text/javascript"> |     <script type="text/javascript"> | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#amount").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $("#amount").focusout(); | ||||||
|  |  | ||||||
|             //Date picker |             //Date picker | ||||||
|             $('#transferred_at').datepicker({ |             $('#transferred_at').datepicker({ | ||||||
|                 format: 'yyyy-mm-dd', |                 format: 'yyyy-mm-dd', | ||||||
| @@ -65,5 +79,35 @@ | |||||||
|                 placeholder: "{{ trans_choice('general.payment_methods', 1) }}" |                 placeholder: "{{ trans_choice('general.payment_methods', 1) }}" | ||||||
|             }); |             }); | ||||||
|         }); |         }); | ||||||
|  |  | ||||||
|  |         $(document).on('change', '#from_account_id', function (e) { | ||||||
|  |             $.ajax({ | ||||||
|  |                 url: '{{ url("banking/accounts/currency") }}', | ||||||
|  |                 type: 'GET', | ||||||
|  |                 dataType: 'JSON', | ||||||
|  |                 data: 'account_id=' + $(this).val(), | ||||||
|  |                 success: function(data) { | ||||||
|  |                     $('#currency').val(data.currency_code); | ||||||
|  |  | ||||||
|  |                     $('#currency_code').val(data.currency_code); | ||||||
|  |                     $('#currency_rate').val(data.currency_rate); | ||||||
|  |  | ||||||
|  |                     amount = $('#amount').maskMoney('unmasked')[0]; | ||||||
|  |  | ||||||
|  |                     $("#amount").maskMoney({ | ||||||
|  |                         thousands : data.thousands_separator, | ||||||
|  |                         decimal : data.decimal_mark, | ||||||
|  |                         precision : data.precision, | ||||||
|  |                         allowZero : true, | ||||||
|  |                         prefix : (data.symbol_first) ? data.symbol : '', | ||||||
|  |                         suffix : (data.symbol_first) ? '' : data.symbol | ||||||
|  |                     }); | ||||||
|  |  | ||||||
|  |                     $('#amount').val(amount); | ||||||
|  |  | ||||||
|  |                     $('#amount').trigger('focus'); | ||||||
|  |                 } | ||||||
|  |             }); | ||||||
|  |         }); | ||||||
|     </script> |     </script> | ||||||
| @endpush | @endpush | ||||||
|   | |||||||
| @@ -51,6 +51,20 @@ | |||||||
| @push('scripts') | @push('scripts') | ||||||
|     <script type="text/javascript"> |     <script type="text/javascript"> | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#amount").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $("#amount").focusout(); | ||||||
|  |  | ||||||
|             //Date picker |             //Date picker | ||||||
|             $('#transferred_at').datepicker({ |             $('#transferred_at').datepicker({ | ||||||
|                 format: 'yyyy-mm-dd', |                 format: 'yyyy-mm-dd', | ||||||
| @@ -71,5 +85,35 @@ | |||||||
|                 placeholder: "{{ trans_choice('general.payment_methods', 1) }}" |                 placeholder: "{{ trans_choice('general.payment_methods', 1) }}" | ||||||
|             }); |             }); | ||||||
|         }); |         }); | ||||||
|  |  | ||||||
|  |         $(document).on('change', '#from_account_id', function (e) { | ||||||
|  |             $.ajax({ | ||||||
|  |                 url: '{{ url("banking/accounts/currency") }}', | ||||||
|  |                 type: 'GET', | ||||||
|  |                 dataType: 'JSON', | ||||||
|  |                 data: 'account_id=' + $(this).val(), | ||||||
|  |                 success: function(data) { | ||||||
|  |                     $('#currency').val(data.currency_code); | ||||||
|  |  | ||||||
|  |                     $('#currency_code').val(data.currency_code); | ||||||
|  |                     $('#currency_rate').val(data.currency_rate); | ||||||
|  |  | ||||||
|  |                     amount = $('#amount').maskMoney('unmasked')[0]; | ||||||
|  |  | ||||||
|  |                     $("#amount").maskMoney({ | ||||||
|  |                         thousands : data.thousands_separator, | ||||||
|  |                         decimal : data.decimal_mark, | ||||||
|  |                         precision : data.precision, | ||||||
|  |                         allowZero : true, | ||||||
|  |                         prefix : (data.symbol_first) ? data.symbol : '', | ||||||
|  |                         suffix : (data.symbol_first) ? '' : data.symbol | ||||||
|  |                     }); | ||||||
|  |  | ||||||
|  |                     $('#amount').val(amount); | ||||||
|  |  | ||||||
|  |                     $('#amount').trigger('focus'); | ||||||
|  |                 } | ||||||
|  |             }); | ||||||
|  |         }); | ||||||
|     </script> |     </script> | ||||||
| @endpush | @endpush | ||||||
|   | |||||||
| @@ -67,6 +67,33 @@ | |||||||
|         var text_no = '{{ trans('general.no') }}'; |         var text_no = '{{ trans('general.no') }}'; | ||||||
|  |  | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#sale_price").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $("#purchase_price").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $("#sale_price").focusout(); | ||||||
|  |             $("#purchase_price").focusout(); | ||||||
|  |  | ||||||
|             $('#enabled_1').trigger('click'); |             $('#enabled_1').trigger('click'); | ||||||
|  |  | ||||||
|             $('#name').focus(); |             $('#name').focus(); | ||||||
|   | |||||||
| @@ -59,6 +59,33 @@ | |||||||
|         var text_no = '{{ trans('general.no') }}'; |         var text_no = '{{ trans('general.no') }}'; | ||||||
|  |  | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#sale_price").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $("#purchase_price").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $("#sale_price").focusout(); | ||||||
|  |             $("#purchase_price").focusout(); | ||||||
|  |  | ||||||
|             $("#tax_id").select2({ |             $("#tax_id").select2({ | ||||||
|                 placeholder: { |                 placeholder: { | ||||||
|                     id: '-1', // the value of the option |                     id: '-1', // the value of the option | ||||||
|   | |||||||
| @@ -409,7 +409,7 @@ | |||||||
|  |  | ||||||
|             $(document).on('change', '#account_id', function (e) { |             $(document).on('change', '#account_id', function (e) { | ||||||
|                 $.ajax({ |                 $.ajax({ | ||||||
|                     url: '{{ url("settings/currencies/currency") }}', |                     url: '{{ url("banking/accounts/currency") }}', | ||||||
|                     type: 'GET', |                     type: 'GET', | ||||||
|                     dataType: 'JSON', |                     dataType: 'JSON', | ||||||
|                     data: 'account_id=' + $(this).val(), |                     data: 'account_id=' + $(this).val(), | ||||||
|   | |||||||
| @@ -86,6 +86,20 @@ | |||||||
| @push('scripts') | @push('scripts') | ||||||
|     <script type="text/javascript"> |     <script type="text/javascript"> | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#amount").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $('#amount').trigger('focus'); | ||||||
|  |  | ||||||
|             $('#account_id').trigger('change'); |             $('#account_id').trigger('change'); | ||||||
|  |  | ||||||
|             //Date picker |             //Date picker | ||||||
| @@ -133,6 +147,21 @@ | |||||||
|  |  | ||||||
|                     $('#currency_code').val(data.currency_code); |                     $('#currency_code').val(data.currency_code); | ||||||
|                     $('#currency_rate').val(data.currency_rate); |                     $('#currency_rate').val(data.currency_rate); | ||||||
|  |  | ||||||
|  |                     amount = $('#amount').maskMoney('unmasked')[0]; | ||||||
|  |  | ||||||
|  |                     $("#amount").maskMoney({ | ||||||
|  |                         thousands : data.thousands_separator, | ||||||
|  |                         decimal : data.decimal_mark, | ||||||
|  |                         precision : data.precision, | ||||||
|  |                         allowZero : true, | ||||||
|  |                         prefix : (data.symbol_first) ? data.symbol : '', | ||||||
|  |                         suffix : (data.symbol_first) ? '' : data.symbol | ||||||
|  |                     }); | ||||||
|  |  | ||||||
|  |                     $('#amount').val(amount); | ||||||
|  |  | ||||||
|  |                     $('#amount').trigger('focus'); | ||||||
|                 } |                 } | ||||||
|             }); |             }); | ||||||
|         }); |         }); | ||||||
|   | |||||||
| @@ -84,6 +84,20 @@ | |||||||
| @push('scripts') | @push('scripts') | ||||||
|     <script type="text/javascript"> |     <script type="text/javascript"> | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#amount").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $('#amount').trigger('focus'); | ||||||
|  |  | ||||||
|             $('#account_id').trigger('change'); |             $('#account_id').trigger('change'); | ||||||
|  |  | ||||||
|             //Date picker |             //Date picker | ||||||
| @@ -156,6 +170,21 @@ | |||||||
|  |  | ||||||
|                     $('#currency_code').val(data.currency_code); |                     $('#currency_code').val(data.currency_code); | ||||||
|                     $('#currency_rate').val(data.currency_rate); |                     $('#currency_rate').val(data.currency_rate); | ||||||
|  |  | ||||||
|  |                     amount = $('#amount').maskMoney('unmasked')[0]; | ||||||
|  |  | ||||||
|  |                     $("#amount").maskMoney({ | ||||||
|  |                         thousands : data.thousands_separator, | ||||||
|  |                         decimal : data.decimal_mark, | ||||||
|  |                         precision : data.precision, | ||||||
|  |                         allowZero : true, | ||||||
|  |                         prefix : (data.symbol_first) ? data.symbol : '', | ||||||
|  |                         suffix : (data.symbol_first) ? '' : data.symbol | ||||||
|  |                     }); | ||||||
|  |  | ||||||
|  |                     $('#amount').val(amount); | ||||||
|  |  | ||||||
|  |                     $('#amount').trigger('focus'); | ||||||
|                 } |                 } | ||||||
|             }); |             }); | ||||||
|         }); |         }); | ||||||
|   | |||||||
| @@ -422,7 +422,7 @@ | |||||||
|  |  | ||||||
|             $(document).on('change', '#account_id', function (e) { |             $(document).on('change', '#account_id', function (e) { | ||||||
|                 $.ajax({ |                 $.ajax({ | ||||||
|                     url: '{{ url("settings/currencies/currency") }}', |                     url: '{{ url("banking/accounts/currency") }}', | ||||||
|                     type: 'GET', |                     type: 'GET', | ||||||
|                     dataType: 'JSON', |                     dataType: 'JSON', | ||||||
|                     data: 'account_id=' + $(this).val(), |                     data: 'account_id=' + $(this).val(), | ||||||
|   | |||||||
| @@ -86,6 +86,20 @@ | |||||||
| @push('scripts') | @push('scripts') | ||||||
|     <script type="text/javascript"> |     <script type="text/javascript"> | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#amount").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $('#amount').trigger('focus'); | ||||||
|  |  | ||||||
|             $('#account_id').trigger('change'); |             $('#account_id').trigger('change'); | ||||||
|  |  | ||||||
|             //Date picker |             //Date picker | ||||||
| @@ -133,6 +147,21 @@ | |||||||
|  |  | ||||||
|                     $('#currency_code').val(data.currency_code); |                     $('#currency_code').val(data.currency_code); | ||||||
|                     $('#currency_rate').val(data.currency_rate); |                     $('#currency_rate').val(data.currency_rate); | ||||||
|  |  | ||||||
|  |                     amount = $('#amount').maskMoney('unmasked')[0]; | ||||||
|  |  | ||||||
|  |                     $("#amount").maskMoney({ | ||||||
|  |                         thousands : data.thousands_separator, | ||||||
|  |                         decimal : data.decimal_mark, | ||||||
|  |                         precision : data.precision, | ||||||
|  |                         allowZero : true, | ||||||
|  |                         prefix : (data.symbol_first) ? data.symbol : '', | ||||||
|  |                         suffix : (data.symbol_first) ? '' : data.symbol | ||||||
|  |                     }); | ||||||
|  |  | ||||||
|  |                     $('#amount').val(amount); | ||||||
|  |  | ||||||
|  |                     $('#amount').trigger('focus'); | ||||||
|                 } |                 } | ||||||
|             }); |             }); | ||||||
|         }); |         }); | ||||||
|   | |||||||
| @@ -84,6 +84,20 @@ | |||||||
| @push('scripts') | @push('scripts') | ||||||
|     <script type="text/javascript"> |     <script type="text/javascript"> | ||||||
|         $(document).ready(function(){ |         $(document).ready(function(){ | ||||||
|  |             $("#amount").maskMoney({ | ||||||
|  |                 thousands : '{{ $currency->thousands_separator }}', | ||||||
|  |                 decimal : '{{ $currency->decimal_mark }}', | ||||||
|  |                 precision : {{ $currency->precision }}, | ||||||
|  |                 allowZero : true, | ||||||
|  |                 @if($currency->symbol_first) | ||||||
|  |                 prefix : '{{ $currency->symbol }}' | ||||||
|  |                 @else | ||||||
|  |                 suffix : '{{ $currency->symbol }}' | ||||||
|  |                 @endif | ||||||
|  |             }); | ||||||
|  |  | ||||||
|  |             $('#amount').trigger('focus'); | ||||||
|  |  | ||||||
|             $('#account_id').trigger('change'); |             $('#account_id').trigger('change'); | ||||||
|  |  | ||||||
|             //Date picker |             //Date picker | ||||||
| @@ -156,6 +170,21 @@ | |||||||
|  |  | ||||||
|                     $('#currency_code').val(data.currency_code); |                     $('#currency_code').val(data.currency_code); | ||||||
|                     $('#currency_rate').val(data.currency_rate); |                     $('#currency_rate').val(data.currency_rate); | ||||||
|  |  | ||||||
|  |                     amount = $('#amount').maskMoney('unmasked')[0]; | ||||||
|  |  | ||||||
|  |                     $("#amount").maskMoney({ | ||||||
|  |                         thousands : data.thousands_separator, | ||||||
|  |                         decimal : data.decimal_mark, | ||||||
|  |                         precision : data.precision, | ||||||
|  |                         allowZero : true, | ||||||
|  |                         prefix : (data.symbol_first) ? data.symbol : '', | ||||||
|  |                         suffix : (data.symbol_first) ? '' : data.symbol | ||||||
|  |                     }); | ||||||
|  |  | ||||||
|  |                     $('#amount').val(amount); | ||||||
|  |  | ||||||
|  |                     $('#amount').trigger('focus'); | ||||||
|                 } |                 } | ||||||
|             }); |             }); | ||||||
|         }); |         }); | ||||||
|   | |||||||
| @@ -52,9 +52,10 @@ | |||||||
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/fastclick/fastclick.js') }}"></script> |     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/fastclick/fastclick.js') }}"></script> | ||||||
|     <!-- AdminLTE App --> |     <!-- AdminLTE App --> | ||||||
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/dist/js/app.min.js') }}"></script> |     <script src="{{ asset('vendor/almasaeed2010/adminlte/dist/js/app.min.js') }}"></script> | ||||||
|  |  | ||||||
|     <!-- Select2 --> |     <!-- Select2 --> | ||||||
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.js') }}"></script> |     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.js') }}"></script> | ||||||
|  |     <!-- Mask Money --> | ||||||
|  |     <script src="{{ asset('public/js/jquery/jquery.maskMoney.js') }}"></script> | ||||||
|  |  | ||||||
|     <script src="{{ asset('public/js/app.js?v=1.0') }}"></script> |     <script src="{{ asset('public/js/app.js?v=1.0') }}"></script> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -60,6 +60,8 @@ | |||||||
|  |  | ||||||
|     <!-- Select2 --> |     <!-- Select2 --> | ||||||
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.js') }}"></script> |     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.js') }}"></script> | ||||||
|  |     <!-- Mask Money --> | ||||||
|  |     <script src="{{ asset('public/js/jquery/jquery.maskMoney.js') }}"></script> | ||||||
|  |  | ||||||
|     <script src="{{ asset('public/js/app.js?v=1.0') }}"></script> |     <script src="{{ asset('public/js/app.js?v=1.0') }}"></script> | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user