ng-easycommerce 0.0.603 → 0.0.604

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # version 0.0.604
2
+ - se agrega validacion en decidir, para verificar el campo subtotal y cuotas con iteres llegue
1
3
  # version 0.0.603
2
4
  - Se agrego un nuevo metodo de pago `Place_to_pay`
3
5
  # version 0.0.602
@@ -438,8 +438,11 @@
438
438
  'name': document.getElementById('address').value,
439
439
  'number': document.getElementById('nro').value
440
440
  }
441
- data['subtotal'] = document.getElementById('total_con_interes').value
442
- data['dues'] = document.getElementById('tipo_interes').value;
441
+ if ((!debito.includes(dataDecidirHead.config.public_code))){
442
+ data['subtotal'] = document.getElementById('total_con_interes').value
443
+ data['dues'] = document.getElementById('tipo_interes').value;
444
+ }
445
+
443
446
  }
444
447
 
445
448
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-easycommerce",
3
- "version": "0.0.603",
3
+ "version": "0.0.604",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^9.0.0",
6
6
  "@angular/core": "^9.0.0",