@colijnit/transaction 1.9.28 → 12.0.1
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/app/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.d.ts +4 -0
- package/app/component/common/icon/icon.component.d.ts +1 -2
- package/app/service/ione-connector-adapter.service.d.ts +1 -1
- package/bundles/colijnit-transaction.umd.js +762 -809
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +14 -14
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/app/component/checkout/checkout/checkout.component.js +23 -25
- package/esm2015/app/component/checkout/checkout-login/checkout-login.component.js +18 -27
- package/esm2015/app/component/checkout/checkout-overview/checkout-overview.component.js +26 -49
- package/esm2015/app/component/checkout/checkout-overview-block/checkout-overview-block.component.js +17 -24
- package/esm2015/app/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.js +19 -23
- package/esm2015/app/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +48 -42
- package/esm2015/app/component/checkout/checkout-overview-relation-address/checkout-overview-relation-address.component.js +20 -21
- package/esm2015/app/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +26 -35
- package/esm2015/app/component/checkout/checkout-relation-suggestions-list/checkout-relation-suggestions-list.component.js +18 -24
- package/esm2015/app/component/checkout/checkout-relation-suggestions-list-item/checkout-relation-suggestions-list-item.component.js +16 -21
- package/esm2015/app/component/checkout/ione-checkout.component.js +27 -32
- package/esm2015/app/component/checkout/ione-checkout.module.js +55 -58
- package/esm2015/app/component/checkout/retail-transaction-checkout/retail-transaction-checkout.component.js +17 -17
- package/esm2015/app/component/common/icon/icon.component.js +17 -19
- package/esm2015/app/component/common/image-display/image-display.component.js +19 -36
- package/esm2015/app/component/common/no-image-display/no-image-display.component.js +14 -20
- package/esm2015/app/component/core/core.module.js +32 -34
- package/esm2015/app/component/shopping-cart/characteristic-answer/characteristic-answer.component.js +21 -26
- package/esm2015/app/component/shopping-cart/ione-shopping-cart.component.js +31 -46
- package/esm2015/app/component/shopping-cart/ione-shopping-cart.module.js +51 -52
- package/esm2015/app/component/shopping-cart/shopping-cart/shopping-cart.component.js +29 -47
- package/esm2015/app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component.js +26 -37
- package/esm2015/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.js +28 -37
- package/esm2015/app/component/shopping-cart/stock-status-indicator/stock-status-indicator.component.js +13 -17
- package/esm2015/app/model/business-object.js +6 -6
- package/esm2015/app/pipe/append.pipe.js +6 -8
- package/esm2015/app/pipe/co-currency.pipe.js +8 -11
- package/esm2015/app/pipe/date-duration.pipe.js +10 -10
- package/esm2015/app/pipe/delivery-time.pipe.js +10 -10
- package/esm2015/app/pipe/localize.pipe.js +13 -16
- package/esm2015/app/pipe/safe-style-pipe.js +12 -12
- package/esm2015/app/service/dictionary.service.js +10 -10
- package/esm2015/app/service/ione-connector-adapter.service.js +11 -11
- package/esm2015/app/service/options.service.js +8 -8
- package/esm2015/app/service/transaction-event.service.js +6 -8
- package/esm2015/app/service/transaction.service.js +17 -16
- package/esm2015/assets/dictionary/text.properties.js +13 -5
- package/esm2015/colijnit-transaction.js +15 -15
- package/esm2015/factory/decorators/complex-field.decorator.js +2 -2
- package/fesm2015/colijnit-transaction.js +677 -775
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/package.json +32 -20
- package/bundles/colijnit-transaction.umd.min.js +0 -16
- package/bundles/colijnit-transaction.umd.min.js.map +0 -1
- package/enum/icon.enum.d.ts +0 -281
- package/esm2015/enum/icon.enum.js +0 -283
|
@@ -44,6 +44,10 @@ export declare class CheckoutOverviewDeliveryEditComponent implements OnInit, Af
|
|
|
44
44
|
addresses: Address[];
|
|
45
45
|
selectedAddress: Address;
|
|
46
46
|
columns: any[];
|
|
47
|
+
deliveryDateFinal: boolean;
|
|
48
|
+
assemblyDate: Date;
|
|
49
|
+
totalAssemblyTime: string;
|
|
50
|
+
dropshipment: boolean;
|
|
47
51
|
private _addressType;
|
|
48
52
|
get billingAddress(): Address;
|
|
49
53
|
get deliveryAddress(): Address;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { OnDestroy } from "@angular/core";
|
|
2
2
|
import { SafeHtml } from "@angular/platform-browser";
|
|
3
|
-
import { IconCacheService } from "@colijnit/corecomponents_v9";
|
|
4
|
-
import { CoreComponentsIcon } from "@colijnit/corecomponents_v9";
|
|
3
|
+
import { CoreComponentsIcon, IconCacheService } from "@colijnit/corecomponents_v9";
|
|
5
4
|
export declare class IconComponent implements OnDestroy {
|
|
6
5
|
private _iconCacheService;
|
|
7
6
|
set icon(icon: CoreComponentsIcon);
|
|
@@ -39,7 +39,7 @@ export declare class IOneConnectorAdapterService {
|
|
|
39
39
|
getMarketingCodes(): Promise<Marketing[]>;
|
|
40
40
|
createTransaction(kind: TransactionKind, branchNr: string): Promise<TransactionInfoResponse>;
|
|
41
41
|
getTransactionByNrAndKind(kind: TransactionKind, transactionNo: number): Promise<TransactionInfoResponse>;
|
|
42
|
-
saveTransaction(uuid: string
|
|
42
|
+
saveTransaction(uuid: string): Promise<TransactionInfoResponse>;
|
|
43
43
|
getCustomerFullObject(relationNo: number): Promise<CustomerFullObject>;
|
|
44
44
|
getRelationNumber(relationId: number): Promise<string>;
|
|
45
45
|
getSequenceValue(sequenceName: SequenceName): Promise<number>;
|