ng-easycommerce 0.0.610 → 0.0.612
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 +4 -0
- package/bundles/ng-easycommerce.umd.js +29 -6
- package/bundles/ng-easycommerce.umd.js.map +1 -1
- package/bundles/ng-easycommerce.umd.min.js +1 -1
- package/bundles/ng-easycommerce.umd.min.js.map +1 -1
- package/esm2015/lib/ec-component/cart-ec/cart-ec.component.js +2 -2
- package/esm2015/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.js +10 -3
- package/esm2015/lib/ec-component/sidebar-ec/sidebar-ec.component.js +4 -2
- package/esm2015/lib/ec-component/widgets-ec/price-ec/price-ec.component.js +13 -3
- package/esm5/lib/ec-component/cart-ec/cart-ec.component.js +2 -2
- package/esm5/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.js +10 -3
- package/esm5/lib/ec-component/sidebar-ec/sidebar-ec.component.js +4 -2
- package/esm5/lib/ec-component/widgets-ec/price-ec/price-ec.component.js +17 -3
- package/fesm2015/ng-easycommerce.js +25 -6
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +29 -6
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.d.ts +1 -0
- package/lib/ec-component/sidebar-ec/sidebar-ec.component.d.ts +1 -0
- package/lib/ec-component/widgets-ec/price-ec/price-ec.component.d.ts +2 -0
- package/ng-easycommerce.metadata.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# version 0.0.612
|
|
2
|
+
- Se corrigió la lógica para mostrar u ocultar los impuestos en `price-ec.component` egún la configuración del canal.
|
|
3
|
+
# version 0.0.611
|
|
4
|
+
- Se muestra u oculta los impuestos en `detalle-checkout` segun la configuración del canal
|
|
1
5
|
# version 0.0.610
|
|
2
6
|
- Corrige errores al mostrar u ocultar precios según la configuración de cuenta corriente (creditAccountShowPrices)
|
|
3
7
|
- Reemplaza el uso de creditAmountConfigured y showPrice por creditAccountShowPrices
|
|
@@ -7501,7 +7501,7 @@
|
|
|
7501
7501
|
_this.hidePrices = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hidePrices, (_b !== null && _b !== void 0 ? _b : false));
|
|
7502
7502
|
_this.hideDiscounts = (_d = (_c = channel) === null || _c === void 0 ? void 0 : _c.hideDiscounts, (_d !== null && _d !== void 0 ? _d : false));
|
|
7503
7503
|
_this.hideTaxes = (_f = (_e = channel) === null || _e === void 0 ? void 0 : _e.hideTaxes, (_f !== null && _f !== void 0 ? _f : false));
|
|
7504
|
-
_this.showPriceWithoutTaxes = (_h = (_g = channel) === null || _g === void 0 ? void 0 : _g.showPriceWithoutTaxes, (_h !== null && _h !== void 0 ? _h :
|
|
7504
|
+
_this.showPriceWithoutTaxes = (_h = (_g = channel) === null || _g === void 0 ? void 0 : _g.showPriceWithoutTaxes, (_h !== null && _h !== void 0 ? _h : true));
|
|
7505
7505
|
if (_this.hidePrices) {
|
|
7506
7506
|
_this.router.navigate(['/']);
|
|
7507
7507
|
}
|
|
@@ -12325,17 +12325,31 @@
|
|
|
12325
12325
|
_this.showTaxLegendOnly = false;
|
|
12326
12326
|
_this.disableTaxInfo = false;
|
|
12327
12327
|
_this.showPriceWithoutTaxes = true;
|
|
12328
|
+
_this.hideTaxes = false;
|
|
12328
12329
|
_this.ecOnConstruct();
|
|
12329
12330
|
return _this;
|
|
12330
12331
|
}
|
|
12331
12332
|
PriceEcComponent.prototype.ngOnInit = function () {
|
|
12332
12333
|
var _this = this;
|
|
12333
12334
|
this.channelConfigService.channelConfig$.subscribe(function (channel) {
|
|
12334
|
-
var _a;
|
|
12335
|
+
var _a, _b, _c;
|
|
12335
12336
|
_this.showPriceWithoutTaxes = (_a = channel) === null || _a === void 0 ? void 0 : _a.showPriceWithoutTaxes;
|
|
12337
|
+
_this.hideTaxes = (_c = (_b = channel) === null || _b === void 0 ? void 0 : _b.hideTaxes, (_c !== null && _c !== void 0 ? _c : false));
|
|
12336
12338
|
});
|
|
12337
12339
|
this.ecOnInit();
|
|
12338
12340
|
};
|
|
12341
|
+
Object.defineProperty(PriceEcComponent.prototype, "shouldShowTaxes", {
|
|
12342
|
+
get: function () {
|
|
12343
|
+
console.log('shouldShowTaxes', this.disableTaxInfo, this.showPriceWithoutTaxes, this.hideTaxes, this.basePrice, this.taxeAmount);
|
|
12344
|
+
return !this.disableTaxInfo &&
|
|
12345
|
+
!this.showPriceWithoutTaxes &&
|
|
12346
|
+
!this.hideTaxes &&
|
|
12347
|
+
!!this.basePrice &&
|
|
12348
|
+
!!this.taxeAmount;
|
|
12349
|
+
},
|
|
12350
|
+
enumerable: true,
|
|
12351
|
+
configurable: true
|
|
12352
|
+
});
|
|
12339
12353
|
PriceEcComponent.ctorParameters = function () { return [
|
|
12340
12354
|
{ type: ProductsService },
|
|
12341
12355
|
{ type: ChannelConfigService }
|
|
@@ -12388,7 +12402,7 @@
|
|
|
12388
12402
|
PriceEcComponent = __decorate$1f([
|
|
12389
12403
|
core.Component({
|
|
12390
12404
|
selector: 'app-price-ec',
|
|
12391
|
-
template: "<!-- Si hay templates personalizados, se proyectan -->\n<ng-container *ngIf=\"customSalePriceTemplate || customPriceTemplate; else defaultPriceBlock\">\n <ng-container *ngTemplateOutlet=\"customPriceTemplate || defaultPriceBlock\"></ng-container>\n</ng-container>\n\n<ng-template #defaultPriceBlock>\n <div *ngIf=\"saleprice; else onlyprice\" class=\"line-height-custom\">\n <div [class]=\"(priceSize ? 'price-sm' : 'price')\"\n *ngIf=\"price && price.split(' - ').length > 1; else simplePriceDel\">\n <del class=\"tachado\">\n {{ price.split(' - ')[0] | ecCurrencySymbol }}\n {{ price.split(' - ')[1] | ecCurrencySymbol }}\n </del>\n </div>\n <div [class]=\"(priceSize ? 'price-sm' : 'price')\"\n *ngIf=\"saleprice && saleprice.split(' - ').length > 1; else simpleSalePrice\">\n {{ saleprice.split(' - ')[0] | ecCurrencySymbol }}\n {{ saleprice.split(' - ')[1] | ecCurrencySymbol }}\n </div>\n </div>\n\n <ng-template #onlyprice>\n <div [class]=\"(priceSize ? 'price-sm' : 'price')\"\n *ngIf=\"price && price.split(' - ').length > 1; else simplePrice\">\n {{ price.split(' - ')[0] | ecCurrencySymbol }} -\n {{ price.split(' - ')[1] | ecCurrencySymbol }}\n </div>\n </ng-template>\n\n <ng-template #simplePrice>\n <ng-container *ngIf=\"customSimplePriceTemplate; else fallbackSimplePrice\">\n <ng-container *ngTemplateOutlet=\"customSimplePriceTemplate\"></ng-container>\n </ng-container>\n </ng-template>\n\n <ng-template #fallbackSimplePrice>\n <div [class]=\"'uno line-height-custom ' + (priceSize ? 'price-sm' : 'price')\">\n {{ price | ecCurrencySymbol }}\n </div>\n </ng-template>\n\n <ng-template #simplePriceDel>\n <div [class]=\"'dos line-height-custom ' + (priceSize ? 'price-sm' : 'price')\">\n <span class=\"lnth\">{{ price | ecCurrencySymbol }}</span>\n </div>\n </ng-template>\n\n <ng-template #simpleSalePrice>\n <ng-container *ngIf=\"customSimpleSalePriceTemplate; else fallbackSimpleSalePrice\">\n <ng-container *ngTemplateOutlet=\"customSimpleSalePriceTemplate\"></ng-container>\n </ng-container>\n </ng-template>\n\n <ng-template #fallbackSimpleSalePrice>\n <div [class]=\"'tres line-height-custom ' + (priceSize ? 'price-sm' : 'price')\">\n {{ saleprice | ecCurrencySymbol }}\n </div>\n </ng-template>\n</ng-template>\n\n<!-- Secci\u00F3n de impuestos -->\n<ng-container *ngIf=\"
|
|
12405
|
+
template: "<!-- Si hay templates personalizados, se proyectan -->\n<ng-container *ngIf=\"customSalePriceTemplate || customPriceTemplate; else defaultPriceBlock\">\n <ng-container *ngTemplateOutlet=\"customPriceTemplate || defaultPriceBlock\"></ng-container>\n</ng-container>\n\n<ng-template #defaultPriceBlock>\n <div *ngIf=\"saleprice; else onlyprice\" class=\"line-height-custom\">\n <div [class]=\"(priceSize ? 'price-sm' : 'price')\"\n *ngIf=\"price && price.split(' - ').length > 1; else simplePriceDel\">\n <del class=\"tachado\">\n {{ price.split(' - ')[0] | ecCurrencySymbol }}\n {{ price.split(' - ')[1] | ecCurrencySymbol }}\n </del>\n </div>\n <div [class]=\"(priceSize ? 'price-sm' : 'price')\"\n *ngIf=\"saleprice && saleprice.split(' - ').length > 1; else simpleSalePrice\">\n {{ saleprice.split(' - ')[0] | ecCurrencySymbol }}\n {{ saleprice.split(' - ')[1] | ecCurrencySymbol }}\n </div>\n </div>\n\n <ng-template #onlyprice>\n <div [class]=\"(priceSize ? 'price-sm' : 'price')\"\n *ngIf=\"price && price.split(' - ').length > 1; else simplePrice\">\n {{ price.split(' - ')[0] | ecCurrencySymbol }} -\n {{ price.split(' - ')[1] | ecCurrencySymbol }}\n </div>\n </ng-template>\n\n <ng-template #simplePrice>\n <ng-container *ngIf=\"customSimplePriceTemplate; else fallbackSimplePrice\">\n <ng-container *ngTemplateOutlet=\"customSimplePriceTemplate\"></ng-container>\n </ng-container>\n </ng-template>\n\n <ng-template #fallbackSimplePrice>\n <div [class]=\"'uno line-height-custom ' + (priceSize ? 'price-sm' : 'price')\">\n {{ price | ecCurrencySymbol }}\n </div>\n </ng-template>\n\n <ng-template #simplePriceDel>\n <div [class]=\"'dos line-height-custom ' + (priceSize ? 'price-sm' : 'price')\">\n <span class=\"lnth\">{{ price | ecCurrencySymbol }}</span>\n </div>\n </ng-template>\n\n <ng-template #simpleSalePrice>\n <ng-container *ngIf=\"customSimpleSalePriceTemplate; else fallbackSimpleSalePrice\">\n <ng-container *ngTemplateOutlet=\"customSimpleSalePriceTemplate\"></ng-container>\n </ng-container>\n </ng-template>\n\n <ng-template #fallbackSimpleSalePrice>\n <div [class]=\"'tres line-height-custom ' + (priceSize ? 'price-sm' : 'price')\">\n {{ saleprice | ecCurrencySymbol }}\n </div>\n </ng-template>\n</ng-template>\n\n<!-- Secci\u00F3n de impuestos -->\n<ng-container *ngIf=\"shouldShowTaxes\">\n <ng-container *ngIf=\"showTaxLegendOnly; else detailedTaxBlock\">\n <ng-container *ngIf=\"customOnlyTaxLabelTemplate; else defaultOnlyTaxLabelBlock\">\n <ng-container *ngTemplateOutlet=\"customOnlyTaxLabelTemplate\"></ng-container>\n </ng-container>\n <ng-template #defaultOnlyTaxLabelBlock>\n <p class=\"taxes-title\">{{'price-without-national-taxes' | translate }}: {{ basePrice | ecCurrencySymbol }}\n </p>\n </ng-template>\n </ng-container>\n\n <ng-template #detailedTaxBlock>\n <ng-container *ngIf=\"customTaxTemplate; else defaultTaxBlock\">\n <ng-container *ngTemplateOutlet=\"customTaxTemplate\"></ng-container>\n </ng-container>\n </ng-template>\n</ng-container>\n\n<ng-template #defaultTaxBlock>\n <div class=\"taxes-section\">\n <p class=\"taxes-title\">{{'price-without-national-taxes' | translate }}: {{ basePrice | ecCurrencySymbol }}</p>\n <ul class=\"taxes-list\">\n <li>\n {{ taxes.Name }}: {{ taxeAmount | ecCurrencySymbol }}\n </li>\n </ul>\n </div>\n</ng-template>",
|
|
12392
12406
|
styles: [".price-sm{font-size:13px}.price{font-size:18px}.lnth{text-decoration:line-through;color:gray}.taxes-section{margin-top:.5rem;border-radius:.5rem;font-size:.95rem;color:#333;line-height:1.4;max-width:400px}.taxes-title{font-weight:500;margin-bottom:.2rem;font-size:.7rem;color:#222}.taxes-list{list-style-type:none;padding-left:0;margin:0}.taxes-list li{margin-bottom:.05rem;font-size:.65rem;display:flex;justify-content:space-between}"]
|
|
12393
12407
|
})
|
|
12394
12408
|
], PriceEcComponent);
|
|
@@ -14346,7 +14360,7 @@
|
|
|
14346
14360
|
var _a, _b, _c, _d, _e, _f;
|
|
14347
14361
|
_this.hideDiscounts = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hideDiscounts, (_b !== null && _b !== void 0 ? _b : false));
|
|
14348
14362
|
_this.hideTaxes = (_d = (_c = channel) === null || _c === void 0 ? void 0 : _c.hideTaxes, (_d !== null && _d !== void 0 ? _d : false));
|
|
14349
|
-
_this.showPriceWithoutTaxes = (_f = (_e = channel) === null || _e === void 0 ? void 0 : _e.showPriceWithoutTaxes, (_f !== null && _f !== void 0 ? _f :
|
|
14363
|
+
_this.showPriceWithoutTaxes = (_f = (_e = channel) === null || _e === void 0 ? void 0 : _e.showPriceWithoutTaxes, (_f !== null && _f !== void 0 ? _f : true));
|
|
14350
14364
|
});
|
|
14351
14365
|
};
|
|
14352
14366
|
DetailCheckoutBlockEcComponent.prototype.calcularTotales = function () {
|
|
@@ -14365,6 +14379,13 @@
|
|
|
14365
14379
|
}
|
|
14366
14380
|
return type;
|
|
14367
14381
|
};
|
|
14382
|
+
DetailCheckoutBlockEcComponent.prototype.shouldShowItem = function (type) {
|
|
14383
|
+
if (type === 'discount' || type === 'coupon')
|
|
14384
|
+
return false;
|
|
14385
|
+
if (type === 'taxes')
|
|
14386
|
+
return !this.hideTaxes;
|
|
14387
|
+
return true;
|
|
14388
|
+
};
|
|
14368
14389
|
DetailCheckoutBlockEcComponent.ctorParameters = function () { return [
|
|
14369
14390
|
{ type: CheckoutService },
|
|
14370
14391
|
{ type: CartService },
|
|
@@ -14376,7 +14397,7 @@
|
|
|
14376
14397
|
DetailCheckoutBlockEcComponent = __decorate$1u([
|
|
14377
14398
|
core.Component({
|
|
14378
14399
|
selector: 'app-detail-checkout-block-ec',
|
|
14379
|
-
template: "<div id=\"appDetailCheckoutBlockEc\" class=\"d-flex flex-row w-100 justify-content-center flex-wrap\"\n *ngIf=\"data && (creditAccountShowPrices !== null ? creditAccountShowPrices : true)\">\n <ng-container *ngFor=\"let item of data; let i = index\">\n <ng-container *ngIf=\"item.type
|
|
14400
|
+
template: "<div id=\"appDetailCheckoutBlockEc\" class=\"d-flex flex-row w-100 justify-content-center flex-wrap\"\n *ngIf=\"data && (creditAccountShowPrices !== null ? creditAccountShowPrices : true)\">\n <ng-container *ngFor=\"let item of data; let i = index\">\n <ng-container *ngIf=\"shouldShowItem(item.type)\">\n <div class=\"d-flex flex-column justify-content-center mx-sm-3 mx-2 text-center mb-4 resumen\">\n <i ngClass=\"mb-2 colorIconoCheckout\" [class]=\"getIcon(item)\"></i>\n <strong class=\"text-center w-100 font-brandon font-md mb-1\">\n {{ getTypeLabel(item.type) | translate }}\n </strong>\n <span class=\"text-center w-100 font-brandon font-md text-gray\">{{ (item.amount != 0 ) ? (item.amount |\n ecCurrencySymbol) : ('free' | translate) }}</span>\n </div>\n </ng-container>\n\n\n <!-- Mostrar total de descuentos -->\n <div class=\"d-flex flex-column justify-content-center mx-sm-3 mx-2 text-center mb-4 resumen\"\n *ngIf=\"!hideDiscounts && this.discountTotal != 0 && i === 1\">\n <i ngClass=\"mb-2 colorIconoCheckout\" [class]=\"getIcon2('discount')\"></i>\n <strong class=\"text-center w-100 font-brandon font-md mb-1\">Descuento</strong>\n <span class=\"text-center w-100 font-brandon font-md text-gray\">{{ (this.discountTotal | ecCurrencySymbol)\n }}</span>\n </div>\n\n <!-- Mostrar total de cupones -->\n <div class=\"d-flex flex-column justify-content-center mx-sm-3 mx-2 text-center mb-4 resumen\"\n *ngIf=\"!hideDiscounts && this.couponTotal != 0 && i === 1\">\n <i ngClass=\"mb-2 colorIconoCheckout\" [class]=\"getIcon2('coupon')\"></i>\n <strong class=\"text-center w-100 font-brandon font-md mb-1\">Cupon</strong>\n <span class=\"text-center w-100 font-brandon font-md text-gray\">{{(this.couponTotal| ecCurrencySymbol)\n }}</span>\n </div>\n </ng-container>\n</div>",
|
|
14380
14401
|
styles: [""]
|
|
14381
14402
|
})
|
|
14382
14403
|
], DetailCheckoutBlockEcComponent);
|
|
@@ -18711,6 +18732,7 @@
|
|
|
18711
18732
|
this.hideDiscounts = false;
|
|
18712
18733
|
this.hideTaxes = false;
|
|
18713
18734
|
this.creditAccountShowPrices = null;
|
|
18735
|
+
this.showPriceWithoutTaxes = true;
|
|
18714
18736
|
this.actualizarCantidad = function (item, cantidad, stock, id) {
|
|
18715
18737
|
if (id) {
|
|
18716
18738
|
var elem_1 = document.getElementById(id);
|
|
@@ -18775,9 +18797,10 @@
|
|
|
18775
18797
|
_this.user = u;
|
|
18776
18798
|
});
|
|
18777
18799
|
this.channelConfigService.channelConfig$.subscribe(function (channel) {
|
|
18778
|
-
var _a, _b, _c, _d;
|
|
18800
|
+
var _a, _b, _c, _d, _e, _f;
|
|
18779
18801
|
_this.hideDiscounts = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hideDiscounts, (_b !== null && _b !== void 0 ? _b : false));
|
|
18780
18802
|
_this.hideTaxes = (_d = (_c = channel) === null || _c === void 0 ? void 0 : _c.hideTaxes, (_d !== null && _d !== void 0 ? _d : false));
|
|
18803
|
+
_this.showPriceWithoutTaxes = (_f = (_e = channel) === null || _e === void 0 ? void 0 : _e.showPriceWithoutTaxes, (_f !== null && _f !== void 0 ? _f : true));
|
|
18781
18804
|
});
|
|
18782
18805
|
this.cartService.showPrice$.subscribe(function (showPrice) {
|
|
18783
18806
|
_this.creditAccountShowPrices = showPrice;
|