Changeset 2061053
- Timestamp:
- 04/01/2019 03:24:25 PM (7 years ago)
- Location:
- genei/trunk
- Files:
-
- 3 edited
-
genei.php (modified) (2 diffs)
-
js/reembolso.js (modified) (2 diffs)
-
js/seguro.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
genei/trunk/genei.php
r2060803 r2061053 5 5 * Plugin URI: https://es.wordpress.org/plugins/genei 6 6 * Description: Plugin para Wordpress de Genei 7 * Version: 1.3. 77 * Version: 1.3.8 8 8 * Author: Genei Global Logistic S.L. 9 9 * Author URI: https://www.genei.es … … 23 23 $api_server = 'genei.es'; 24 24 $nombre_app = 'Genei'; 25 $plugin_version = '1.3. 7';26 $plugin_cn_version = '13 7';25 $plugin_version = '1.3.8'; 26 $plugin_cn_version = '138'; 27 27 $servicio = 'wordpress'; 28 28 defined('ABSPATH') or die('Error'); -
genei/trunk/js/reembolso.js
r2057011 r2061053 12 12 13 13 jQuery("#cantidad_reembolso").on('keyup', function () { 14 14 jQuery(this).val($(this).val().replace(/,/g, '.')); 15 15 if(parseFloat(jQuery("#cantidad_reembolso").val())>parseFloat(jQuery("#maxima_cantidad_reembolso").val())) { 16 16 jQuery("#cantidad_reembolso").val(parseFloat(jQuery("#maxima_cantidad_reembolso").val()).toFixed2(2)); … … 18 18 actualizar_precio_envio(); 19 19 }); 20 21 jQuery("#cantidad_reembolso").on('blur', function () { 22 jQuery("#cantidad_reembolso").val(parseFloat(jQuery("#cantidad_reembolso").val()).toFixed2(2)); 23 24 actualizar_precio_envio(); 25 }); 20 26 21 27 }); -
genei/trunk/js/seguro.js
r2057011 r2061053 12 12 13 13 jQuery("#cantidad_seguro").on('keyup', function () { 14 jQuery(this).val($(this).val().replace(/,/g, '.')); 14 15 if(parseFloat(jQuery("#cantidad_seguro").val())>parseFloat(jQuery("#maxima_cantidad_seguro").val())) { 15 16 jQuery("#cantidad_seguro").val(parseFloat(jQuery("#maxima_cantidad_seguro").val()).toFixed2(2)); … … 18 19 }); 19 20 21 jQuery("#cantidad_seguro").on('blur', function () { 22 jQuery("#cantidad_seguro").val(parseFloat(jQuery("#cantidad_seguro").val()).toFixed2(2)); 23 24 actualizar_precio_envio(); 25 }); 26 20 27 });
Note: See TracChangeset
for help on using the changeset viewer.