ng-easycommerce 0.0.595 → 0.0.597
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 +8 -0
- package/bundles/ng-easycommerce.umd.js +81 -13
- 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/account-ec/order-ec/order-ec.component.js +9 -2
- package/esm2015/lib/ec-component/account-ec/orders-list-ec/orders-list-ec.component.js +12 -4
- package/esm2015/lib/ec-component/cart-ec/cart-ec.component.js +18 -3
- package/esm2015/lib/ec-component/checkout-ec/checkout-ec.component.js +7 -1
- package/esm2015/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.js +14 -4
- package/esm2015/lib/ec-component/header-ec/header-ec.component.js +6 -1
- package/esm2015/lib/ec-component/product-detail-ec/product-detail-ec.component.js +4 -1
- package/esm2015/lib/ec-component/product-ec/product-ec.component.js +13 -3
- package/esm2015/lib/ec-component/sidebar-ec/sidebar-ec.component.js +13 -3
- package/esm5/lib/ec-component/account-ec/order-ec/order-ec.component.js +9 -2
- package/esm5/lib/ec-component/account-ec/orders-list-ec/orders-list-ec.component.js +12 -4
- package/esm5/lib/ec-component/cart-ec/cart-ec.component.js +18 -3
- package/esm5/lib/ec-component/checkout-ec/checkout-ec.component.js +7 -1
- package/esm5/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.js +14 -4
- package/esm5/lib/ec-component/header-ec/header-ec.component.js +6 -1
- package/esm5/lib/ec-component/product-detail-ec/product-detail-ec.component.js +4 -1
- package/esm5/lib/ec-component/product-ec/product-ec.component.js +13 -3
- package/esm5/lib/ec-component/sidebar-ec/sidebar-ec.component.js +13 -3
- package/fesm2015/ng-easycommerce.js +81 -13
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +81 -13
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/lib/ec-component/account-ec/order-ec/order-ec.component.d.ts +3 -0
- package/lib/ec-component/account-ec/orders-list-ec/orders-list-ec.component.d.ts +4 -1
- package/lib/ec-component/cart-ec/cart-ec.component.d.ts +6 -1
- package/lib/ec-component/checkout-ec/checkout-ec.component.d.ts +1 -0
- package/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.d.ts +5 -1
- package/lib/ec-component/header-ec/header-ec.component.d.ts +1 -0
- package/lib/ec-component/product-detail-ec/product-detail-ec.component.d.ts +1 -0
- package/lib/ec-component/product-ec/product-ec.component.d.ts +4 -1
- package/lib/ec-component/sidebar-ec/sidebar-ec.component.d.ts +5 -1
- package/ng-easycommerce.metadata.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# version 0.0.597
|
|
2
|
+
- Se integran los parámetros `hideDiscounts` y `hideTaxes` del servicio `channel-config.service.ts` en el componente `sidebar-ec.component.ts` y `detail-checkout-block-ec.component.ts`
|
|
3
|
+
# version 0.0.596
|
|
4
|
+
- Se integran los parámetros `hidePrices`, `hideDiscounts` y `hideTaxes` del servicio `channel-config.service.ts` en los siguientes componentes:
|
|
5
|
+
- `product-detail-ec.component` y `product-ec.component`: Se ocultan los precios si `hidePrices` está activado.
|
|
6
|
+
- `header-ec.component`: Se ajusta la visibilidad de los precios en el carrito si `hidePrices` está activo.
|
|
7
|
+
- `checkout-ec.component` y `cart-ec.component`: Se eliminan los descuentos e impuestos en la visualización del pedido si `hideDiscounts` o `hideTaxes` están activados.
|
|
8
|
+
- `orders-list-ec.component` y `order-ec.component`: Se ocultan los precios y descuentos en el historial de pedidos cuando `hidePrices` o `hideDiscounts` están activos.
|
|
1
9
|
# version 0.0.595
|
|
2
10
|
- Se agrego una condición en `order-ec.component.html`. Ahora, en dispositivos móviles, los precios solo se muestran si la configuración de crédito lo permite.
|
|
3
11
|
- Se agrego una validación para `Repetir pedido`, se verifica si los productos se agregaron, si tenian stock.
|
|
@@ -7361,7 +7361,7 @@
|
|
|
7361
7361
|
};
|
|
7362
7362
|
var CartEcComponent = /** @class */ (function (_super) {
|
|
7363
7363
|
__extends$g(CartEcComponent, _super);
|
|
7364
|
-
function CartEcComponent(cartService, authService, consts, productsService, router, modalService, toastrService, addressingService) {
|
|
7364
|
+
function CartEcComponent(cartService, authService, consts, productsService, router, modalService, toastrService, addressingService, channelConfigService) {
|
|
7365
7365
|
var _this = _super.call(this) || this;
|
|
7366
7366
|
_this.cartService = cartService;
|
|
7367
7367
|
_this.authService = authService;
|
|
@@ -7371,6 +7371,7 @@
|
|
|
7371
7371
|
_this.modalService = modalService;
|
|
7372
7372
|
_this.toastrService = toastrService;
|
|
7373
7373
|
_this.addressingService = addressingService;
|
|
7374
|
+
_this.channelConfigService = channelConfigService;
|
|
7374
7375
|
_this.variantsToShow = ['TALLE', 'COLOR'];
|
|
7375
7376
|
_this.isLoggedIn = false;
|
|
7376
7377
|
_this.mediaUrl = '';
|
|
@@ -7380,6 +7381,9 @@
|
|
|
7380
7381
|
_this.updateStock = false;
|
|
7381
7382
|
_this.exitUpdate = false;
|
|
7382
7383
|
_this.isDisabled = false;
|
|
7384
|
+
_this.hidePrices = false;
|
|
7385
|
+
_this.hideDiscounts = false;
|
|
7386
|
+
_this.hideTaxes = false;
|
|
7383
7387
|
_this.toDecimal = function (amount) { return _this.consts.toDecimal(amount); };
|
|
7384
7388
|
_this.actualizarCantidad = function (item, cantidad, stock, id) {
|
|
7385
7389
|
if (id) {
|
|
@@ -7464,6 +7468,15 @@
|
|
|
7464
7468
|
window.scroll(0, 0);
|
|
7465
7469
|
this.cartService.promotions.subscribe(function (promotions) { return _this.promotions = promotions; });
|
|
7466
7470
|
// console.log(this.cartService.getTaxes());
|
|
7471
|
+
this.channelConfigService.channelConfig$.subscribe(function (channel) {
|
|
7472
|
+
var _a, _b, _c, _d, _e, _f;
|
|
7473
|
+
_this.hidePrices = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hidePrices, (_b !== null && _b !== void 0 ? _b : false));
|
|
7474
|
+
_this.hideDiscounts = (_d = (_c = channel) === null || _c === void 0 ? void 0 : _c.hideDiscounts, (_d !== null && _d !== void 0 ? _d : false));
|
|
7475
|
+
_this.hideTaxes = (_f = (_e = channel) === null || _e === void 0 ? void 0 : _e.hideTaxes, (_f !== null && _f !== void 0 ? _f : false));
|
|
7476
|
+
if (_this.hidePrices) {
|
|
7477
|
+
_this.router.navigate(['/']);
|
|
7478
|
+
}
|
|
7479
|
+
});
|
|
7467
7480
|
this.ecOnInit();
|
|
7468
7481
|
};
|
|
7469
7482
|
CartEcComponent.prototype.redirectCheckout = function () {
|
|
@@ -7737,7 +7750,8 @@
|
|
|
7737
7750
|
{ type: router.Router },
|
|
7738
7751
|
{ type: modal.BsModalService },
|
|
7739
7752
|
{ type: ToastService },
|
|
7740
|
-
{ type: AddressingService }
|
|
7753
|
+
{ type: AddressingService },
|
|
7754
|
+
{ type: ChannelConfigService }
|
|
7741
7755
|
]; };
|
|
7742
7756
|
CartEcComponent = __decorate$O([
|
|
7743
7757
|
core.Component({
|
|
@@ -7782,6 +7796,7 @@
|
|
|
7782
7796
|
_this.canCheckout = false;
|
|
7783
7797
|
_this.require_login = false;
|
|
7784
7798
|
_this.steps = [];
|
|
7799
|
+
_this.hidePrices = false;
|
|
7785
7800
|
_this.loading$ = _this.loadingSubject.asObservable();
|
|
7786
7801
|
_this.initializeCheckout = function () {
|
|
7787
7802
|
var _a, _b, _c, _d;
|
|
@@ -7860,8 +7875,13 @@
|
|
|
7860
7875
|
}
|
|
7861
7876
|
};
|
|
7862
7877
|
_this.channelService.channelConfig$.subscribe(function (res) {
|
|
7878
|
+
var _a, _b;
|
|
7863
7879
|
_this.channel = res;
|
|
7864
7880
|
_this.initializeSteps();
|
|
7881
|
+
_this.hidePrices = (_b = (_a = res) === null || _a === void 0 ? void 0 : _a.hidePrices, (_b !== null && _b !== void 0 ? _b : false));
|
|
7882
|
+
if (_this.hidePrices) {
|
|
7883
|
+
_this.router.navigate(['/']);
|
|
7884
|
+
}
|
|
7865
7885
|
//console.log(this.stepEnabled(3))
|
|
7866
7886
|
});
|
|
7867
7887
|
_this.ecOnConstruct();
|
|
@@ -9704,6 +9724,7 @@
|
|
|
9704
9724
|
_this.toggled = false;
|
|
9705
9725
|
_this.locales = [];
|
|
9706
9726
|
_this.selectedLocale = 'ESP';
|
|
9727
|
+
_this.hidePrices = false;
|
|
9707
9728
|
_this.updateMenuItemSection = function (elements) {
|
|
9708
9729
|
_this.menuItemsSections = _this.optionsService.generateMenu(elements);
|
|
9709
9730
|
_this.menuItemsSections = _this.ecUpdateMenuItemSection(_this.menuItemsSections);
|
|
@@ -9829,6 +9850,10 @@
|
|
|
9829
9850
|
_this.selectedLocale = _this.locales[0].name;
|
|
9830
9851
|
}
|
|
9831
9852
|
});
|
|
9853
|
+
this.channelConfigService.channelConfig$.subscribe(function (channel) {
|
|
9854
|
+
var _a, _b;
|
|
9855
|
+
_this.hidePrices = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hidePrices, (_b !== null && _b !== void 0 ? _b : false));
|
|
9856
|
+
});
|
|
9832
9857
|
};
|
|
9833
9858
|
HeaderEcComponent.prototype.subscribeToBalance = function () {
|
|
9834
9859
|
var _this = this;
|
|
@@ -10752,6 +10777,7 @@
|
|
|
10752
10777
|
_this.focusImage = null;
|
|
10753
10778
|
_this.owlOptions = {};
|
|
10754
10779
|
_this.showReviews = false;
|
|
10780
|
+
_this.hidePrices = false;
|
|
10755
10781
|
_this.addToCart = function () {
|
|
10756
10782
|
_this.quantity > 0 && _this.productService.addToCart(_this.quantity);
|
|
10757
10783
|
};
|
|
@@ -10832,7 +10858,9 @@
|
|
|
10832
10858
|
_this.changeImgFocus(productParam.picturesdefault[0]);
|
|
10833
10859
|
});
|
|
10834
10860
|
_this.injector.get(ChannelConfigService).channelConfig$.subscribe(function (channel) {
|
|
10861
|
+
var _a, _b;
|
|
10835
10862
|
_this.showReviews = channel.showReviews;
|
|
10863
|
+
_this.hidePrices = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hidePrices, (_b !== null && _b !== void 0 ? _b : false));
|
|
10836
10864
|
});
|
|
10837
10865
|
_this.ecOnConstruct();
|
|
10838
10866
|
return _this;
|
|
@@ -10898,7 +10926,7 @@
|
|
|
10898
10926
|
};
|
|
10899
10927
|
var ProductEcComponent = /** @class */ (function (_super) {
|
|
10900
10928
|
__extends$x(ProductEcComponent, _super);
|
|
10901
|
-
function ProductEcComponent(consts, router, productService, authService, toastrService, analyticsService) {
|
|
10929
|
+
function ProductEcComponent(consts, router, productService, authService, toastrService, analyticsService, injector) {
|
|
10902
10930
|
var _this = _super.call(this) || this;
|
|
10903
10931
|
_this.consts = consts;
|
|
10904
10932
|
_this.router = router;
|
|
@@ -10906,9 +10934,11 @@
|
|
|
10906
10934
|
_this.authService = authService;
|
|
10907
10935
|
_this.toastrService = toastrService;
|
|
10908
10936
|
_this.analyticsService = analyticsService;
|
|
10937
|
+
_this.injector = injector;
|
|
10909
10938
|
_this.quantity = 1;
|
|
10910
10939
|
_this.stock = 0;
|
|
10911
10940
|
_this.data = null;
|
|
10941
|
+
_this.hidePrices = false;
|
|
10912
10942
|
/**
|
|
10913
10943
|
* @description variable utilizada mutar de la vista de lista, a la de box.
|
|
10914
10944
|
*/
|
|
@@ -10969,6 +10999,11 @@
|
|
|
10969
10999
|
.filter(function (attribute) { return attribute.code === 'marca'; })
|
|
10970
11000
|
.map(function (attribute) { return attribute.children[0].name; });
|
|
10971
11001
|
};
|
|
11002
|
+
var channelConfigService = _this.injector.get(ChannelConfigService);
|
|
11003
|
+
channelConfigService.channelConfig$.subscribe(function (channel) {
|
|
11004
|
+
var _a, _b;
|
|
11005
|
+
_this.hidePrices = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hidePrices, (_b !== null && _b !== void 0 ? _b : false));
|
|
11006
|
+
});
|
|
10972
11007
|
_this.ecOnConstruct();
|
|
10973
11008
|
return _this;
|
|
10974
11009
|
}
|
|
@@ -10990,7 +11025,8 @@
|
|
|
10990
11025
|
{ type: ProductDetailService },
|
|
10991
11026
|
{ type: AuthService },
|
|
10992
11027
|
{ type: ToastService },
|
|
10993
|
-
{ type: AnalyticsService }
|
|
11028
|
+
{ type: AnalyticsService },
|
|
11029
|
+
{ type: core.Injector }
|
|
10994
11030
|
]; };
|
|
10995
11031
|
__decorate$15([
|
|
10996
11032
|
core.Input()
|
|
@@ -12733,16 +12769,18 @@
|
|
|
12733
12769
|
};
|
|
12734
12770
|
var OrdersEcComponent = /** @class */ (function (_super) {
|
|
12735
12771
|
__extends$L(OrdersEcComponent, _super);
|
|
12736
|
-
function OrdersEcComponent(ordersService, router, consts, cartService) {
|
|
12772
|
+
function OrdersEcComponent(ordersService, router, consts, cartService, channelConfigService) {
|
|
12737
12773
|
var _this = _super.call(this) || this;
|
|
12738
12774
|
_this.ordersService = ordersService;
|
|
12739
12775
|
_this.router = router;
|
|
12740
12776
|
_this.consts = consts;
|
|
12741
12777
|
_this.cartService = cartService;
|
|
12778
|
+
_this.channelConfigService = channelConfigService;
|
|
12742
12779
|
_this.loading = true;
|
|
12743
12780
|
_this.showImage = true;
|
|
12744
12781
|
_this.showPrice = false;
|
|
12745
12782
|
_this.creditAmountConfigured = false;
|
|
12783
|
+
_this.hidePrices = false;
|
|
12746
12784
|
/**
|
|
12747
12785
|
* @description name -> nombre de clave de valuesToSort; asc -> true: ascendente, false: descendente
|
|
12748
12786
|
*/
|
|
@@ -12887,12 +12925,17 @@
|
|
|
12887
12925
|
this.cartService.creditAmount$.subscribe(function (creditAmount) {
|
|
12888
12926
|
_this.creditAmountConfigured = creditAmount !== null;
|
|
12889
12927
|
});
|
|
12928
|
+
this.channelConfigService.channelConfig$.subscribe(function (channel) {
|
|
12929
|
+
var _a, _b;
|
|
12930
|
+
_this.hidePrices = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hidePrices, (_b !== null && _b !== void 0 ? _b : false));
|
|
12931
|
+
});
|
|
12890
12932
|
};
|
|
12891
12933
|
OrdersEcComponent.ctorParameters = function () { return [
|
|
12892
12934
|
{ type: OrdersService },
|
|
12893
12935
|
{ type: router.Router },
|
|
12894
12936
|
{ type: Constants },
|
|
12895
|
-
{ type: CartService }
|
|
12937
|
+
{ type: CartService },
|
|
12938
|
+
{ type: ChannelConfigService }
|
|
12896
12939
|
]; };
|
|
12897
12940
|
__decorate$1k([
|
|
12898
12941
|
core.Input()
|
|
@@ -12900,7 +12943,7 @@
|
|
|
12900
12943
|
OrdersEcComponent = __decorate$1k([
|
|
12901
12944
|
core.Component({
|
|
12902
12945
|
selector: 'app-orders-ec',
|
|
12903
|
-
template: "<div class=\"container-fluid\" id=\"ordersEcComponent\">\n <section id=\"orders\" class=\"w-100\" *ngIf=\"!loading; else loadingView\">\n <div *ngIf=\"orders && orders.length; else noOrders\">\n
|
|
12946
|
+
template: "<div class=\"container-fluid\" id=\"ordersEcComponent\">\n <section id=\"orders\" class=\"w-100\" *ngIf=\"!loading; else loadingView\">\n <ng-container *ngIf=\"!hidePrices\">\n <div *ngIf=\"orders && orders.length; else noOrders\">\n <div class=\"row mb-1 border-bottom\">\n <div class=\"col-lg-2 col-12\">\n <p [class]=\"'st dropdown-toggle cursor-pointer my-2 '+ (currentSort.name == 'number' ? 'applied ' + (!currentSort.asc ? 'asc' : 'desc') : '')\"\n (click)=\"sortOrders('number')\">{{ 'order' | translate }}:</p>\n </div>\n <div class=\"col-lg-2 col-12\">\n <p [class]=\"'st dropdown-toggle cursor-pointer my-2 '+ (currentSort.name == 'paymentState' ? 'applied ' + (!currentSort.asc ? 'asc' : 'desc') : '')\"\n (click)=\"sortOrders('paymentState')\">{{ 'payment-state' | translate }}:</p>\n </div>\n <div class=\"col-lg-2 col-12\">\n <p [class]=\"'st dropdown-toggle cursor-pointer my-2 '+ (currentSort.name == 'method' ? 'applied ' + (!currentSort.asc ? 'asc' : 'desc') : '')\"\n (click)=\"sortOrders('method')\">{{ 'shipment-method' | translate }}:</p>\n </div>\n <div class=\"col-lg-2 col-12 \">\n <p [class]=\"'st dropdown-toggle cursor-pointer my-2 '+ (currentSort.name == 'methodState' ? 'applied ' + (!currentSort.asc ? 'asc' : 'desc') : '')\"\n (click)=\"sortOrders('methodState')\">\n {{ 'shipment-state' | translate }}:</p>\n </div>\n <div class=\"col-lg-2 col-12\">\n <p [class]=\"'st dropdown-toggle cursor-pointer my-2 '+ (currentSort.name == 'date' ? 'applied ' + (!currentSort.asc ? 'asc' : 'desc') : '')\"\n (click)=\"sortOrders('date')\">{{ 'date' | translate }}:</p>\n </div>\n <div class=\"col-lg-2 col-12\">\n <p [class]=\"'st dropdown-toggle cursor-pointer my-2 '+ (currentSort.name == 'total' ? 'applied ' + (!currentSort.asc ? 'asc' : 'desc') : '')\"\n (click)=\"sortOrders('total')\">{{ 'total' | translate }}:</p>\n </div>\n </div>\n <div class=\"row item border-bottom py-2\" *ngFor=\"let order of orders\">\n <div class=\"col-lg-2 col-12\">\n <h5 class=\"fw-bold\">\n {{ order.number }}\n </h5>\n <!-- <ng-container *ngIf=\"showImage\">\n <ng-container *ngIf=\"order.items[0].product.variants[0]?.images?.length ; else defaultpicture\">\n <img class=\"smc maxwidth\" [src]=\"mediaUrl + order.items[0].product.variants[0].images[0]\" alt=\"\">\n </ng-container>\n <ng-template #defaultpicture>\n <img *ngIf=\"order.items[0].product.picturesdefault\" class=\"smc maxwidth\"\n [src]=\"mediaUrl + order.items[0].product.picturesdefault[0]\" alt=\"\">\n </ng-template>\n </ng-container> -->\n </div>\n <div class=\"col-lg-2 col-12\">\n <p class=\"price\" *ngIf=\"order.payments && order.payments.length > 0\">\n {{ order.payments[0].state | translate | titlecase }}\n </p>\n </div>\n <div class=\"col-lg-2 col-12\">\n\n <p class=\"price\">\n {{ order.shipments[0].method.name }}\n </p>\n </div>\n <div class=\"col-lg-2 col-12\">\n <p class=\"price\">\n {{ order.shipments[0].state | translate | titlecase }}\n </p>\n <!-- ACA DEBERIA IR EL LINK DE SEGUIMIENTO -->\n <!-- <button class=\"btn btn-outline-dark btnLogout px-3 py-1 font-size-10 w-auto btn-sm\">Ver seguimiento</button> -->\n <a *ngIf=\"order.tracking\" [href]=\"order.tracking\"\n class=\"btn btn-outline-dark btnLogout px-3 py-1 font-size-10 w-auto btn-sm\">Ver\n seguimiento</a>\n </div>\n <div class=\"col-lg-2 col-12\">\n <p class=\"price\">\n {{ toDate(order.checkoutCompletedAt, 'DD/MM/YYYY') | translate }}<br>\n {{ toDate(order.checkoutCompletedAt, 'h:mm:ss a') | translate }}\n </p>\n </div>\n <div class=\"col-lg-2 col-12\">\n <h5 class=\"fw-bold text-nowrap\" *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n {{ (order.totals.total) | ecCurrencySymbol }}\n </h5>\n <button class=\"btn px-0 w-100 btdetalle\" (click)=\"goToOrder(order)\">{{\n 'see-order' | translate }}</button>\n </div>\n </div>\n </div>\n </ng-container>\n </section>\n</div>\n\n<ng-template #noOrders>\n <div class=\"w-100 h-50\">\n <div class=\"d-flex flex-row justify-content-center align-items-center text-center\">\n <h5>{{ 'no-orders' | translate }}</h5>\n </div>\n </div>\n</ng-template>\n\n<ng-template #errorView>\n <div class=\"w-100 h-50\">\n <div class=\"d-flex flex-row justify-content-center align-items-center text-center\">\n <h4>{{ 'orders-error' | translate }}</h4>\n </div>\n </div>\n</ng-template>\n\n<ng-template #loadingView>\n <div class=\"w-100 h-50 py-5\">\n <div class=\"d-flex flex-row justify-content-center align-items-center text-center\">\n <app-loading-full-ec></app-loading-full-ec>\n </div>\n </div>\n</ng-template>",
|
|
12904
12947
|
styles: ["#ordersEcComponent .btn.btdetalle{background-color:#000;color:#fff;border-color:#000;border-width:1px;border-radius:10px;padding:10px 0}#ordersEcComponent .btn.btdetalle:hover{background-color:#fff;color:#000;border-color:#000}.asc.dropdown-toggle::after{transform:rotate(180deg)}.applied.dropdown-toggle::after{color:#198754}"]
|
|
12905
12948
|
})
|
|
12906
12949
|
], OrdersEcComponent);
|
|
@@ -12980,6 +13023,9 @@
|
|
|
12980
13023
|
_this.allowRepeatOrders = false;
|
|
12981
13024
|
_this.showPrice = false;
|
|
12982
13025
|
_this.creditAmountConfigured = false;
|
|
13026
|
+
_this.hidePrices = false;
|
|
13027
|
+
_this.hideDiscounts = false;
|
|
13028
|
+
_this.hideTaxes = false;
|
|
12983
13029
|
_this.toDate = function (date, format) { return moment(date).format(!format && 'DD/MM/YYYY, h:mm:ss a' || format); };
|
|
12984
13030
|
_this.callError = function () {
|
|
12985
13031
|
_this.error = '?';
|
|
@@ -13022,12 +13068,16 @@
|
|
|
13022
13068
|
_this.callError();
|
|
13023
13069
|
};
|
|
13024
13070
|
this.channelConfigService.channelConfig$.subscribe(function (config) {
|
|
13071
|
+
var _a, _b, _c, _d, _e, _f;
|
|
13025
13072
|
if (config && config.allowRepeatOrders !== undefined) {
|
|
13026
13073
|
_this.allowRepeatOrders = config.allowRepeatOrders;
|
|
13027
13074
|
}
|
|
13028
13075
|
else {
|
|
13029
13076
|
_this.allowRepeatOrders = false;
|
|
13030
13077
|
}
|
|
13078
|
+
_this.hidePrices = (_b = (_a = config) === null || _a === void 0 ? void 0 : _a.hidePrices, (_b !== null && _b !== void 0 ? _b : false));
|
|
13079
|
+
_this.hideDiscounts = (_d = (_c = config) === null || _c === void 0 ? void 0 : _c.hideDiscounts, (_d !== null && _d !== void 0 ? _d : false));
|
|
13080
|
+
_this.hideTaxes = (_f = (_e = config) === null || _e === void 0 ? void 0 : _e.hideTaxes, (_f !== null && _f !== void 0 ? _f : false));
|
|
13031
13081
|
});
|
|
13032
13082
|
this.cartService.showPrice$.subscribe(function (showPrice) {
|
|
13033
13083
|
_this.showPrice = showPrice;
|
|
@@ -13056,7 +13106,7 @@
|
|
|
13056
13106
|
OrderEcComponent = __decorate$1l([
|
|
13057
13107
|
core.Component({
|
|
13058
13108
|
selector: 'app-order-ec',
|
|
13059
|
-
template: "<main class=\"py-5\" id=\"orderEcComponent\">\n <div class=\"container\">\n <div class=\"wrap\" *ngIf=\"!loading; else loadingView\">\n <div *ngIf=\"order; else noOrder\">\n\n <div class=\"row justify-content-between \">\n <div class=\"col-sm-auto col-12 font-brandon\">\n <h4 class=\"tit1 fw-bold\">{{ ('order' | translate) + ': ' + order.number }}</h4>\n </div>\n <ng-container *ngIf=\"order?.invoice\">\n <div class=\"col-sm col-12 font-brandon\">\n <a target=\"_blank\" [href]=\"consts.getUrlBase().slice(0, -1) + order.invoice\"\n class=\"btn btn-link btn-invoice\">\n <i class=\"fas fa-file-download me-1\"></i>\n {{ 'download' | translate }} {{ 'invoices' | translate | titlecase }}\n </a>\n </div>\n </ng-container>\n <a (click)=\"volver()\" class=\"col-auto text-end\">\n <button class=\"btn btvolver bg-gray text-white\">{{ 'back-to-orders' | translate }}</button>\n </a>\n </div>\n\n <section id=\"orders\">\n <div class=\"row pt-2\">\n <div class=\"col-md-2 col-12\">\n <p class=\"st\">{{ 'payment-state' | translate }}:</p>\n <p class=\"\">\n {{ order.payments[0].state | translate }}\n </p>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\">\n <p class=\"st\">{{ 'shipment-state' | translate }}:</p>\n <p class=\"\">\n {{ order.shipments[0].state | translate }}\n </p>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\">\n <p class=\"st\">{{ 'payment-method' | translate }}:</p>\n <p class=\"\">\n {{ order.payments[0]?.method?.name | translate }}\n </p>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\">\n <p class=\"st\">{{ 'shipment-method' | translate }}:</p>\n <p class=\"\">\n {{ order.shipments[0].method.name }}\n </p>\n <!-- ACA DEBERIA IR EL LINK DE SEGUIMIENTO -->\n <a *ngIf=\"order.tracking\" [href]=\"order.tracking\"\n class=\"btn btn-outline-dark btnLogout px-3 py-1 font-size-10 w-auto btn-sm\">Ver\n seguimiento</a>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\">\n <p class=\"st\">{{ 'date' | translate }}:</p>\n <p class=\"\">\n {{ toDate(order.checkoutCompletedAt, 'DD/MM/YYYY') | translate }}<br>\n {{ toDate(order.checkoutCompletedAt, 'h:mm:ss a') | translate }}\n </p>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\" *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"st\">{{ 'total' | translate }}:</p>\n <h5 class=\"fw-bold\">\n {{ (order.totals.total) | ecCurrencySymbol}}\n\n </h5>\n </div>\n </div>\n </section>\n\n <div class=\"text-end mt-3\" *ngIf=\"allowRepeatOrders\">\n <button class=\"btn btn-primary mb-2\" (click)=\"repeatOrder()\">\n {{ 'repeat-order' | translate }}\n </button>\n </div>\n\n <div class=\"container py-3 border-top border-bottom\">\n <div *ngIf=\"order.items.length; else noProducts\" class=\"row\">\n <div class=\"col-2 font-sm font-brandon d-none d-md-block\">\n {{ 'product' | translate | uppercase }}\n </div>\n <div class=\"col-4 font-sm font-brandon d-none d-md-block\">\n {{ 'description' | translate | uppercase }}\n </div>\n <div id=\"colLots\" *ngIf=\"ordersService.channelConfig.applyOrderLot\"\n class=\"col-1 font-sm font-brandon d-none d-md-block\">\n <!-- {{ 'description' | translate | uppercase }} -->\n {{ 'lots' | translate | uppercase }}\n </div>\n <div class=\"col-2 text-center font-sm font-brandon d-none d-md-block\"\n *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n {{ 'unit-price' | translate | uppercase }}\n </div>\n <div class=\"col-1 text-center font-sm font-brandon d-none d-md-block\">\n {{ 'quantity' | translate | uppercase }}\n </div>\n <div class=\"col-2 text-end font-sm font-brandon d-none d-md-block\"\n *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n {{ 'total' | translate | uppercase }}\n </div>\n </div>\n <ng-container *ngFor=\"let item of order.items; let i = index\">\n <div class=\"row cart-items\">\n <div class=\"col-5 col-md-2 py-2\">\n <ng-container *ngIf=\"item.product.variants[0]?.images?.length ; else defaultpicture\">\n <img class=\"smc maxwidth img-fluid rounded-custom \"\n [src]=\"consts.mediaUrl() + item.product.variants[0].images[0]\" alt=\"\">\n </ng-container>\n <ng-template #defaultpicture>\n <img *ngIf=\"item.product.picturesdefault\"\n class=\"smc maxwidth img-fluid rounded-custom\"\n [src]=\"consts.mediaUrl() + item.product.picturesdefault[0]\" alt=\"\">\n </ng-template>\n </div>\n <div\n class=\"col-md-4 col-7 flex-column flex-md-row justify-content-start d-flex align-items-center\">\n <p class=\"font-brandon d-flex w-100 mb-0\">\n {{ item.product.name }} (Cod:{{ item.product.variants[0].code }})\n </p>\n </div>\n <div class=\"col-md-1 col-1 flex-column flex-md-row justify-content-start d-flex align-items-center\"\n *ngIf=\"ordersService.channelConfig.applyOrderLot\">\n <input type=\"button\" class=\"btn btn-primary btnSeguir m-0 text-center\" type=\"button\"\n [attr.data-bs-toggle]=\"'collapse'\" [attr.data-bs-target]=\"'#collapseExample'+i\"\n aria-expanded=\"false\" [attr.aria-controls]=\"'collapseExample'+i\"\n value=\"{{ 'see' | translate | uppercase }}\">\n </div>\n <div class=\"container d-md-none\">\n <div class=\"row\">\n <div class=\"col-4\">\n <p class=\"text-center w-100 m-0\"> {{ item.quantity }}</p>\n </div>\n <div class=\"col-4 font-xl\" *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"text-center w-100 m-0\"> {{ (item.product.variants[0].saleprice ?\n item.product.variants[0].saleprice : item.product.variants[0].price) |\n ecCurrencySymbol}}</p>\n </div>\n <div class=\"col-4 font-xl\" *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"text-center w-100 m-0\"> {{ ((item.product.variants[0].saleprice ?\n item.product.variants[0].saleprice : item.product.variants[0].price) *\n item.quantity) | ecCurrencySymbol}}</p>\n </div>\n </div>\n </div>\n\n <div class=\"col-2 d-none d-md-flex align-items-center\"\n *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"text-center w-100 m-0\">\n {{ (item.product.variants[0].saleprice ? item.product.variants[0].saleprice :\n item.product.variants[0].price) | ecCurrencySymbol}}\n </p>\n </div>\n <div class=\"col-1 d-none d-md-flex align-items-center\">\n <p class=\"text-center w-100 m-0\"> {{ item.quantity }}</p>\n </div>\n <div class=\"col-2 d-none d-md-flex align-items-center\"\n *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"text-end w-100 m-0\">\n {{ ((item.product.variants[0].saleprice ? item.product.variants[0].saleprice :\n item.product.variants[0].price) * item.quantity) | ecCurrencySymbol}}</p>\n </div>\n <div class=\"collapse\" [attr.id]=\"'collapseExample'+i\">\n <div class=\"card card-body\">\n <table class=\"table table-striped\">\n <thead>\n <tr>\n <th scope=\"col\">#</th>\n <th scope=\"col\">Estado</th>\n <th scope=\"col\">Cantidad</th>\n <th scope=\"col\">Fecha Solicitada</th>\n <th scope=\"col\">Fecha Estimada</th>\n <th scope=\"col\">Sede</th>\n <th scope=\"col\">Nota</th>\n <th scope=\"col\">Total Lote</th>\n </tr>\n </thead>\n <tbody>\n <ng-container *ngFor=\"let lot of item.orderItemLot\">\n <tr>\n <th scope=\"row\">{{lot.id}}</th>\n <td>{{lot.lot_status}}</td>\n <td>{{lot.quantity}}</td>\n <td>{{ toDate(lot.date_request, 'DD/MM/YYYY') | translate }}</td>\n <td *ngIf=\"lot.date_deliver; else sinFechaEstimada\">{{\n toDate(lot.date_deliver, 'DD/MM/YYYY') | translate }}</td>\n <ng-template #sinFechaEstimada>\n <td>Pendiente</td>\n </ng-template>\n <td>{{lot.shipping_address_name}}</td>\n <td>{{lot.notes}}</td>\n <td>{{lot.total_lot | ecCurrencySymbol}}</td>\n </tr>\n </ng-container>\n </tbody>\n </table>\n </div>\n </div>\n </div>\n\n </ng-container>\n </div>\n\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-12 col-md-6\"></div>\n <div class=\"col-12 col-md-6\" *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <div class=\"row py-4\">\n <div class=\"col-6 font-brandon font-md text-gray border-bottom \">{{ 'total-products' |\n translate }}</div>\n <div class=\"col-6 font-brandon font-md text-gray border-bottom text-end\">\n {{ (order.totals.items) | ecCurrencySymbol }}\n </div>\n\n <div class=\"col-6 font-brandon font-md text-gray border-bottom \">{{ 'shipment' |\n translate }}</div>\n <div class=\"col-6 font-brandon font-md text-gray border-bottom text-end\">\n {{ (order.totals.shipping || '0') | ecCurrencySymbol }}\n\n </div>\n\n <div *ngIf=\"order.totals.promotion && order.totals.promotion != 0\"\n class=\"col-6 font-brandon font-md text-gray border-bottom \">{{ 'discount' |\n translate }}</div>\n <div *ngIf=\"order.totals.promotion && order.totals.promotion != 0\"\n class=\"col-6 font-brandon font-md text-gray border-bottom text-end text-end\">\n {{ (order.totals.promotion) | ecCurrencySymbol }}</div>\n\n <div *ngIf=\"order.totals.taxes && order.totals.taxes != 0 \"\n class=\"col-6 font-brandon font-md text-gray border-bottom \">\n {{ 'taxes' | translate }}</div>\n <div *ngIf=\"order.totals.taxes && order.totals.taxes != 0\"\n class=\"col-6 font-brandon font-md text-gray border-bottom text-end\">\n {{ (order.totals.taxes) | ecCurrencySymbol }}</div>\n\n <div class=\"col-6 font-brandon font-md\">{{ 'total' | translate | uppercase }}</div>\n <div class=\"col-6 font-brandon font-md text-end\">\n {{ (order.totals.total) | ecCurrencySymbol }}\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n</main>\n\n<ng-template #noOrder>\n <div class=\"w-100 h-50\">\n <div class=\"d-flex flex-row justify-content-center align-items-center text-center\">\n <h5>{{ 'no-orders' | translate }}</h5>\n </div>\n </div>\n</ng-template>\n\n<ng-template #loadingView>\n <div class=\"w-100 h-50 py-5\">\n <div class=\"d-flex flex-row justify-content-center align-items-center text-center\">\n <app-loading-full-ec></app-loading-full-ec>\n </div>\n </div>\n</ng-template>",
|
|
13109
|
+
template: "<main class=\"py-5\" id=\"orderEcComponent\">\n <div class=\"container\">\n <div class=\"wrap\" *ngIf=\"!loading; else loadingView\">\n <div *ngIf=\"order; else noOrder\">\n\n <div class=\"row justify-content-between \">\n <div class=\"col-sm-auto col-12 font-brandon\">\n <h4 class=\"tit1 fw-bold\">{{ ('order' | translate) + ': ' + order.number }}</h4>\n </div>\n <ng-container *ngIf=\"order?.invoice\">\n <div class=\"col-sm col-12 font-brandon\">\n <a target=\"_blank\" [href]=\"consts.getUrlBase().slice(0, -1) + order.invoice\"\n class=\"btn btn-link btn-invoice\">\n <i class=\"fas fa-file-download me-1\"></i>\n {{ 'download' | translate }} {{ 'invoices' | translate | titlecase }}\n </a>\n </div>\n </ng-container>\n <a (click)=\"volver()\" class=\"col-auto text-end\">\n <button class=\"btn btvolver bg-gray text-white\">{{ 'back-to-orders' | translate }}</button>\n </a>\n </div>\n\n <section id=\"orders\">\n <div class=\"row pt-2\">\n <div class=\"col-md-2 col-12\">\n <p class=\"st\">{{ 'payment-state' | translate }}:</p>\n <p class=\"\">\n {{ order.payments[0].state | translate }}\n </p>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\">\n <p class=\"st\">{{ 'shipment-state' | translate }}:</p>\n <p class=\"\">\n {{ order.shipments[0].state | translate }}\n </p>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\">\n <p class=\"st\">{{ 'payment-method' | translate }}:</p>\n <p class=\"\">\n {{ order.payments[0]?.method?.name | translate }}\n </p>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\">\n <p class=\"st\">{{ 'shipment-method' | translate }}:</p>\n <p class=\"\">\n {{ order.shipments[0].method.name }}\n </p>\n <!-- ACA DEBERIA IR EL LINK DE SEGUIMIENTO -->\n <a *ngIf=\"order.tracking\" [href]=\"order.tracking\"\n class=\"btn btn-outline-dark btnLogout px-3 py-1 font-size-10 w-auto btn-sm\">Ver\n seguimiento</a>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\">\n <p class=\"st\">{{ 'date' | translate }}:</p>\n <p class=\"\">\n {{ toDate(order.checkoutCompletedAt, 'DD/MM/YYYY') | translate }}<br>\n {{ toDate(order.checkoutCompletedAt, 'h:mm:ss a') | translate }}\n </p>\n </div>\n <div class=\"col-md-2 col-12 font-brandon\" *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"st\">{{ 'total' | translate }}:</p>\n <h5 class=\"fw-bold\">\n {{ (order.totals.total) | ecCurrencySymbol}}\n\n </h5>\n </div>\n </div>\n </section>\n\n <div class=\"text-end mt-3\" *ngIf=\"!hidePrices && allowRepeatOrders\">\n <button class=\"btn btn-primary mb-2\" (click)=\"repeatOrder()\">\n {{ 'repeat-order' | translate }}\n </button>\n </div>\n\n <div class=\"container py-3 border-top border-bottom\">\n <div *ngIf=\"order.items.length; else noProducts\" class=\"row\">\n <div class=\"col-2 font-sm font-brandon d-none d-md-block\">\n {{ 'product' | translate | uppercase }}\n </div>\n <div class=\"col-4 font-sm font-brandon d-none d-md-block\">\n {{ 'description' | translate | uppercase }}\n </div>\n <div id=\"colLots\" *ngIf=\"ordersService.channelConfig.applyOrderLot\"\n class=\"col-1 font-sm font-brandon d-none d-md-block\">\n <!-- {{ 'description' | translate | uppercase }} -->\n {{ 'lots' | translate | uppercase }}\n </div>\n <div class=\"col-2 text-center font-sm font-brandon d-none d-md-block\"\n *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n {{ 'unit-price' | translate | uppercase }}\n </div>\n <div class=\"col-1 text-center font-sm font-brandon d-none d-md-block\">\n {{ 'quantity' | translate | uppercase }}\n </div>\n <div class=\"col-2 text-end font-sm font-brandon d-none d-md-block\"\n *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n {{ 'total' | translate | uppercase }}\n </div>\n </div>\n <ng-container *ngFor=\"let item of order.items; let i = index\">\n <div class=\"row cart-items\">\n <div class=\"col-5 col-md-2 py-2\">\n <ng-container *ngIf=\"item.product.variants[0]?.images?.length ; else defaultpicture\">\n <img class=\"smc maxwidth img-fluid rounded-custom \"\n [src]=\"consts.mediaUrl() + item.product.variants[0].images[0]\" alt=\"\">\n </ng-container>\n <ng-template #defaultpicture>\n <img *ngIf=\"item.product.picturesdefault\"\n class=\"smc maxwidth img-fluid rounded-custom\"\n [src]=\"consts.mediaUrl() + item.product.picturesdefault[0]\" alt=\"\">\n </ng-template>\n </div>\n <div\n class=\"col-md-4 col-7 flex-column flex-md-row justify-content-start d-flex align-items-center\">\n <p class=\"font-brandon d-flex w-100 mb-0\">\n {{ item.product.name }} (Cod:{{ item.product.variants[0].code }})\n </p>\n </div>\n <div class=\"col-md-1 col-1 flex-column flex-md-row justify-content-start d-flex align-items-center\"\n *ngIf=\"ordersService.channelConfig.applyOrderLot\">\n <input type=\"button\" class=\"btn btn-primary btnSeguir m-0 text-center\" type=\"button\"\n [attr.data-bs-toggle]=\"'collapse'\" [attr.data-bs-target]=\"'#collapseExample'+i\"\n aria-expanded=\"false\" [attr.aria-controls]=\"'collapseExample'+i\"\n value=\"{{ 'see' | translate | uppercase }}\">\n </div>\n <div class=\"container d-md-none\">\n <div class=\"row\">\n <div class=\"col-4\">\n <p class=\"text-center w-100 m-0\"> {{ item.quantity }}</p>\n </div>\n <div class=\"col-4 font-xl\" *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"text-center w-100 m-0\"> {{ (item.product.variants[0].saleprice ?\n item.product.variants[0].saleprice : item.product.variants[0].price) |\n ecCurrencySymbol}}</p>\n </div>\n <div class=\"col-4 font-xl\" *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"text-center w-100 m-0\"> {{ ((item.product.variants[0].saleprice ?\n item.product.variants[0].saleprice : item.product.variants[0].price) *\n item.quantity) | ecCurrencySymbol}}</p>\n </div>\n </div>\n </div>\n\n <div class=\"col-2 d-none d-md-flex align-items-center\"\n *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"text-center w-100 m-0\">\n {{ (item.product.variants[0].saleprice ? item.product.variants[0].saleprice :\n item.product.variants[0].price) | ecCurrencySymbol}}\n </p>\n </div>\n <div class=\"col-1 d-none d-md-flex align-items-center\">\n <p class=\"text-center w-100 m-0\"> {{ item.quantity }}</p>\n </div>\n <div class=\"col-2 d-none d-md-flex align-items-center\"\n *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <p class=\"text-end w-100 m-0\">\n {{ ((item.product.variants[0].saleprice ? item.product.variants[0].saleprice :\n item.product.variants[0].price) * item.quantity) | ecCurrencySymbol}}</p>\n </div>\n <div class=\"collapse\" [attr.id]=\"'collapseExample'+i\">\n <div class=\"card card-body\">\n <table class=\"table table-striped\">\n <thead>\n <tr>\n <th scope=\"col\">#</th>\n <th scope=\"col\">Estado</th>\n <th scope=\"col\">Cantidad</th>\n <th scope=\"col\">Fecha Solicitada</th>\n <th scope=\"col\">Fecha Estimada</th>\n <th scope=\"col\">Sede</th>\n <th scope=\"col\">Nota</th>\n <th scope=\"col\">Total Lote</th>\n </tr>\n </thead>\n <tbody>\n <ng-container *ngFor=\"let lot of item.orderItemLot\">\n <tr>\n <th scope=\"row\">{{lot.id}}</th>\n <td>{{lot.lot_status}}</td>\n <td>{{lot.quantity}}</td>\n <td>{{ toDate(lot.date_request, 'DD/MM/YYYY') | translate }}</td>\n <td *ngIf=\"lot.date_deliver; else sinFechaEstimada\">{{\n toDate(lot.date_deliver, 'DD/MM/YYYY') | translate }}</td>\n <ng-template #sinFechaEstimada>\n <td>Pendiente</td>\n </ng-template>\n <td>{{lot.shipping_address_name}}</td>\n <td>{{lot.notes}}</td>\n <td>{{lot.total_lot | ecCurrencySymbol}}</td>\n </tr>\n </ng-container>\n </tbody>\n </table>\n </div>\n </div>\n </div>\n\n </ng-container>\n </div>\n\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-12 col-md-6\"></div>\n <div class=\"col-12 col-md-6\" *ngIf=\"(creditAmountConfigured ? showPrice : true)\">\n <div class=\"row py-4\">\n <div class=\"col-6 font-brandon font-md text-gray border-bottom \">{{ 'total-products' |\n translate }}</div>\n <div class=\"col-6 font-brandon font-md text-gray border-bottom text-end\">\n {{ (order.totals.items) | ecCurrencySymbol }}\n </div>\n\n <div class=\"col-6 font-brandon font-md text-gray border-bottom \">{{ 'shipment' |\n translate }}</div>\n <div class=\"col-6 font-brandon font-md text-gray border-bottom text-end\">\n {{ (order.totals.shipping || '0') | ecCurrencySymbol }}\n\n </div>\n\n <div *ngIf=\"!hideDiscounts && order.totals.promotion && order.totals.promotion != 0\"\n class=\"col-6 font-brandon font-md text-gray border-bottom \">{{ 'discount' |\n translate }}</div>\n <div *ngIf=\"!hideDiscounts && order.totals.promotion && order.totals.promotion != 0\"\n class=\"col-6 font-brandon font-md text-gray border-bottom text-end text-end\">\n {{ (order.totals.promotion) | ecCurrencySymbol }}</div>\n\n <div *ngIf=\"!hideTaxes && order.totals.taxes && order.totals.taxes != 0 \"\n class=\"col-6 font-brandon font-md text-gray border-bottom \">\n {{ 'taxes' | translate }}</div>\n <div *ngIf=\"!hideTaxes && order.totals.taxes && order.totals.taxes != 0\"\n class=\"col-6 font-brandon font-md text-gray border-bottom text-end\">\n {{ (order.totals.taxes) | ecCurrencySymbol }}</div>\n\n <div class=\"col-6 font-brandon font-md\">{{ 'total' | translate | uppercase }}</div>\n <div class=\"col-6 font-brandon font-md text-end\">\n {{ (order.totals.total) | ecCurrencySymbol }}\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n</main>\n\n<ng-template #noOrder>\n <div class=\"w-100 h-50\">\n <div class=\"d-flex flex-row justify-content-center align-items-center text-center\">\n <h5>{{ 'no-orders' | translate }}</h5>\n </div>\n </div>\n</ng-template>\n\n<ng-template #loadingView>\n <div class=\"w-100 h-50 py-5\">\n <div class=\"d-flex flex-row justify-content-center align-items-center text-center\">\n <app-loading-full-ec></app-loading-full-ec>\n </div>\n </div>\n</ng-template>",
|
|
13060
13110
|
styles: [".maxwidth{max-width:100px}"]
|
|
13061
13111
|
})
|
|
13062
13112
|
], OrderEcComponent);
|
|
@@ -14068,15 +14118,18 @@
|
|
|
14068
14118
|
};
|
|
14069
14119
|
var DetailCheckoutBlockEcComponent = /** @class */ (function (_super) {
|
|
14070
14120
|
__extends$V(DetailCheckoutBlockEcComponent, _super);
|
|
14071
|
-
function DetailCheckoutBlockEcComponent(checkoutService, cartService) {
|
|
14121
|
+
function DetailCheckoutBlockEcComponent(checkoutService, cartService, channelConfigService) {
|
|
14072
14122
|
var _this = _super.call(this) || this;
|
|
14073
14123
|
_this.checkoutService = checkoutService;
|
|
14074
14124
|
_this.cartService = cartService;
|
|
14125
|
+
_this.channelConfigService = channelConfigService;
|
|
14075
14126
|
_this.data = null;
|
|
14076
14127
|
_this.discountTotal = 0;
|
|
14077
14128
|
_this.couponTotal = 0;
|
|
14078
14129
|
_this.showPrice = false;
|
|
14079
14130
|
_this.creditAmountConfigured = false;
|
|
14131
|
+
_this.hideDiscounts = false;
|
|
14132
|
+
_this.hideTaxes = false;
|
|
14080
14133
|
_this.getIcon = function (data_item) {
|
|
14081
14134
|
switch (data_item.type) {
|
|
14082
14135
|
case 'coupon': return 'fas fa-ticket-alt fa-3x';
|
|
@@ -14109,6 +14162,11 @@
|
|
|
14109
14162
|
this.cartService.creditAmount$.subscribe(function (creditAmount) {
|
|
14110
14163
|
_this.creditAmountConfigured = creditAmount !== null;
|
|
14111
14164
|
});
|
|
14165
|
+
this.channelConfigService.channelConfig$.subscribe(function (channel) {
|
|
14166
|
+
var _a, _b, _c, _d;
|
|
14167
|
+
_this.hideDiscounts = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hideDiscounts, (_b !== null && _b !== void 0 ? _b : false));
|
|
14168
|
+
_this.hideTaxes = (_d = (_c = channel) === null || _c === void 0 ? void 0 : _c.hideTaxes, (_d !== null && _d !== void 0 ? _d : false));
|
|
14169
|
+
});
|
|
14112
14170
|
};
|
|
14113
14171
|
DetailCheckoutBlockEcComponent.prototype.calcularTotales = function () {
|
|
14114
14172
|
if (this.data) {
|
|
@@ -14122,7 +14180,8 @@
|
|
|
14122
14180
|
};
|
|
14123
14181
|
DetailCheckoutBlockEcComponent.ctorParameters = function () { return [
|
|
14124
14182
|
{ type: CheckoutService },
|
|
14125
|
-
{ type: CartService }
|
|
14183
|
+
{ type: CartService },
|
|
14184
|
+
{ type: ChannelConfigService }
|
|
14126
14185
|
]; };
|
|
14127
14186
|
__decorate$1u([
|
|
14128
14187
|
core.Input()
|
|
@@ -14130,7 +14189,7 @@
|
|
|
14130
14189
|
DetailCheckoutBlockEcComponent = __decorate$1u([
|
|
14131
14190
|
core.Component({
|
|
14132
14191
|
selector: 'app-detail-checkout-block-ec',
|
|
14133
|
-
template: "<div id=\"appDetailCheckoutBlockEc\" class=\"d-flex flex-row w-100 justify-content-center flex-wrap\"\n *ngIf=\"data && (creditAmountConfigured ? showPrice : true)\">\n <ng-container *ngFor=\"let item of data; let i = index\">\n <ng-container *ngIf=\"item.type != 'discount' && item.type != 'coupon'\">\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\">{{ item.type | translate }}</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=\"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=\"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>",
|
|
14192
|
+
template: "<div id=\"appDetailCheckoutBlockEc\" class=\"d-flex flex-row w-100 justify-content-center flex-wrap\"\n *ngIf=\"data && (creditAmountConfigured ? showPrice : true)\">\n <ng-container *ngFor=\"let item of data; let i = index\">\n <ng-container *ngIf=\"item.type != 'discount' && item.type != 'coupon'\">\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\">{{ item.type | translate }}</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>",
|
|
14134
14193
|
styles: [""]
|
|
14135
14194
|
})
|
|
14136
14195
|
], DetailCheckoutBlockEcComponent);
|
|
@@ -18451,16 +18510,19 @@
|
|
|
18451
18510
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
18452
18511
|
};
|
|
18453
18512
|
var SidebarEcComponent = /** @class */ (function () {
|
|
18454
|
-
function SidebarEcComponent(cartService, consts, authService, router, toastrService) {
|
|
18513
|
+
function SidebarEcComponent(cartService, consts, authService, router, toastrService, channelConfigService) {
|
|
18455
18514
|
var _this = this;
|
|
18456
18515
|
this.cartService = cartService;
|
|
18457
18516
|
this.consts = consts;
|
|
18458
18517
|
this.authService = authService;
|
|
18459
18518
|
this.router = router;
|
|
18460
18519
|
this.toastrService = toastrService;
|
|
18520
|
+
this.channelConfigService = channelConfigService;
|
|
18461
18521
|
this.user = null;
|
|
18462
18522
|
this.promotions = [];
|
|
18463
18523
|
this.variantsToShow = ['TALLE', 'COLOR'];
|
|
18524
|
+
this.hideDiscounts = false;
|
|
18525
|
+
this.hideTaxes = false;
|
|
18464
18526
|
this.actualizarCantidad = function (item, cantidad, stock, id) {
|
|
18465
18527
|
if (id) {
|
|
18466
18528
|
var elem_1 = document.getElementById(id);
|
|
@@ -18524,6 +18586,11 @@
|
|
|
18524
18586
|
this.authService.getUserProfile().subscribe(function (u) {
|
|
18525
18587
|
_this.user = u;
|
|
18526
18588
|
});
|
|
18589
|
+
this.channelConfigService.channelConfig$.subscribe(function (channel) {
|
|
18590
|
+
var _a, _b, _c, _d;
|
|
18591
|
+
_this.hideDiscounts = (_b = (_a = channel) === null || _a === void 0 ? void 0 : _a.hideDiscounts, (_b !== null && _b !== void 0 ? _b : false));
|
|
18592
|
+
_this.hideTaxes = (_d = (_c = channel) === null || _c === void 0 ? void 0 : _c.hideTaxes, (_d !== null && _d !== void 0 ? _d : false));
|
|
18593
|
+
});
|
|
18527
18594
|
};
|
|
18528
18595
|
SidebarEcComponent.prototype.redirectDetailProduct = function (product) {
|
|
18529
18596
|
var variant = product.variants[0];
|
|
@@ -18545,7 +18612,8 @@
|
|
|
18545
18612
|
{ type: Constants },
|
|
18546
18613
|
{ type: AuthService },
|
|
18547
18614
|
{ type: router.Router },
|
|
18548
|
-
{ type: ToastService }
|
|
18615
|
+
{ type: ToastService },
|
|
18616
|
+
{ type: ChannelConfigService }
|
|
18549
18617
|
]; };
|
|
18550
18618
|
SidebarEcComponent = __decorate$1$([
|
|
18551
18619
|
core.Component({
|