ng-easycommerce 0.0.530 → 0.0.531

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.531
2
+ - ajustes asociaciones por categorias y por atributos.
1
3
  # version 0.0.530
2
4
  - pruebas meta og
3
5
  # version 0.0.529
@@ -15332,12 +15332,15 @@
15332
15332
  _this.finished = false; //Marca si finalizo la secuencia de pasos
15333
15333
  _this.noMoreCoincidences = false; //Marca si no hay mas coincidencias de productos
15334
15334
  _this.products = []; //Recibe el/los producto/s resultantes
15335
+ _this.total = [];
15335
15336
  /**
15336
15337
  * @description Arreglo de funciones para ejecutarse al terminar la carga de pasos.
15337
15338
  * El objeto se arma { function: [Function] , args: [Argumentos] }
15338
15339
  */
15339
15340
  _this.functionsToNextStep = [];
15340
15341
  _this.functionsToPrevStep = [];
15342
+ _this.attributes = [];
15343
+ _this.values = [];
15341
15344
  /**
15342
15345
  * @description inserta atributos adicionales a los pasos recibidos.
15343
15346
  * current => para indicar cuando el paso esta activo.
@@ -15494,6 +15497,9 @@
15494
15497
  */
15495
15498
  _this.prev = function (index) {
15496
15499
  if (index === void 0) { index = -1; }
15500
+ _this.values.pop();
15501
+ _this.attributes.pop();
15502
+ _this.total.pop();
15497
15503
  _this.taxonCode = 0;
15498
15504
  _this.noMoreCoincidences = false;
15499
15505
  _this.stepList[_this.currentPosition].current = false;