| Server IP : 162.214.74.102 / Your IP : 216.73.216.192 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/leo/application/plugins/module_fish/assets/js/ |
Upload File : |
/* global ind_mil, _L */
function dropdown() {
$('.dropdown-advanced').click(function (event) {
event.stopPropagation();
});
$('.dropdown-period').click(function (event) {
event.stopPropagation();
});
}
function filter() {
// Period interval
$('#period-filter-interval').on('click', function(event) {
event.preventDefault();
$('#form-filter').submit();
});
$('#average-filter-interval').on('click', function(event) {
event.preventDefault();
$('#form-filter').submit();
});
// Clear
$('#filter-clear').on('click', function(event) {
event.preventDefault();
$("#crm_accounts_id").val('');
$("#module_fish_species_id").val('');
$("input[name=period_ini]").val('');
$("input[name=period_end]").val('');
$("input[name=average_weight_ini]").val('');
$("input[name=average_weight_end]").val('');
$('#form-filter').submit();
});
$('#filter-search').on('click', function(event) {
event.preventDefault();
$('#form-filter').submit();
});
findDataSelect("#crm_accounts_id", $("#_client_view").val()+'module_fish/ajax/Associated', _L['Module_Fish Select Associated'] );
findDataSelect("#module_fish_species_id", $("#_client_view").val()+'module_fish/ajax/species', _L['Module_Fish Select Specie']);
}
$(function(){
filter();
dropdown();
$('.weight_kg').autoNumeric('init', {aSep: ind_mil, aDec: ind_decimal, mDec: 3, aSign:''});
});