@colijnit/transaction 300.1.3 → 300.1.5
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/fesm2022/colijnit-transaction.mjs +847 -463
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +66 -11
- package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/_layout.scss +17 -0
- package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/_material-definition.scss +0 -0
- package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/_theme.scss +4 -0
- package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/material.scss +4 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -297,6 +297,7 @@ import { ChangeLineDiscountRequest } from '@colijnit/transactionapi/build/model/
|
|
|
297
297
|
import { SuggestedReceiptLocation } from '@colijnit/transactionapi/build/model/suggested-receipt-location';
|
|
298
298
|
import { PdfHistoricPosReceiptRequest } from '@colijnit/transactionapi/build/model/pdf-historic-pos-receipt-request';
|
|
299
299
|
import { CreatePublicQuoteRequest } from '@colijnit/transactionapi/build/model/create-public-quote-request';
|
|
300
|
+
import { UpsertTransactionStandardTextRequest } from '@colijnit/transactionapi/build/model/upsert-transaction-standard-text-request';
|
|
300
301
|
import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
|
|
301
302
|
import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
|
|
302
303
|
import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
@@ -1095,6 +1096,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1095
1096
|
getTransactionArticleWarehouses(goodId: number): Promise<TransactionArticleWarehouse[]>;
|
|
1096
1097
|
getTextTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
1097
1098
|
getStandardTexts(languageCode: string): Promise<StandardText[]>;
|
|
1099
|
+
upsertTransactionStandardText(request: UpsertTransactionStandardTextRequest): Promise<void>;
|
|
1098
1100
|
getSalesPersons(date?: Date): Promise<SalesPerson[]>;
|
|
1099
1101
|
getRetailStadiums(): Promise<RetailStadium[]>;
|
|
1100
1102
|
getTags(category: number): Promise<Tag[]>;
|
|
@@ -1162,6 +1164,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1162
1164
|
changeLineSupplierArticleNumber(uuid: string, lineUuid: string, artNr: string): Promise<TransactionInfoResponse>;
|
|
1163
1165
|
changeTransactionLineGoodDescription(uuid: string, lineUuid: string, goodDescription: string): Promise<TransactionInfoResponse>;
|
|
1164
1166
|
changeHeaderTransactionDefinitive(uuid: string, definitive: boolean): Promise<TransactionInfoResponse>;
|
|
1167
|
+
changeHeaderReleaseTransaction(uuid: string, value: boolean): Promise<TransactionInfoResponse>;
|
|
1165
1168
|
changeHeaderDiscountOnOrderLine(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1166
1169
|
changeHeaderPrintDiscount(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1167
1170
|
changeHeaderDeliveryAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
@@ -1256,6 +1259,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1256
1259
|
setGoodsToBePickedForSalesOrder(request: GoodsToBePickedForOrderRequest): Promise<TransactionInfoResponse>;
|
|
1257
1260
|
setGoodsPickedForOrder(request: GoodsPickedRequest): Promise<TransactionInfoResponse>;
|
|
1258
1261
|
getOrderConfirmationEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]>;
|
|
1262
|
+
isMontrieursDelivery(transactionId: number): Promise<boolean>;
|
|
1259
1263
|
getCashOnDeliveryData(uuid: string): Promise<CashOnDeliveryData>;
|
|
1260
1264
|
changeHeaderCashOnDeliveryAmount(request: ChangeHeaderCashOnDeliveryAmountRequest): Promise<void>;
|
|
1261
1265
|
getOrderConfirmationPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]>;
|
|
@@ -1643,6 +1647,7 @@ declare class TransactionConnectorService {
|
|
|
1643
1647
|
setRelationByUser(uuid: string, username: string, password: string): Promise<boolean>;
|
|
1644
1648
|
getTextTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
1645
1649
|
getStandardTexts(languageCode: string): Promise<StandardText[]>;
|
|
1650
|
+
upsertTransactionStandardText(request: UpsertTransactionStandardTextRequest): Promise<void>;
|
|
1646
1651
|
getSalesPersons(date?: Date): Promise<SalesPerson[]>;
|
|
1647
1652
|
getRetailStadiums(): Promise<RetailStadium[]>;
|
|
1648
1653
|
getTags(category: number): Promise<Tag[]>;
|
|
@@ -1677,6 +1682,7 @@ declare class TransactionConnectorService {
|
|
|
1677
1682
|
changeTransactionLineGoodDescription(uuid: string, lineUuid: string, goodDescription: string): Promise<TransactionInfoResponse>;
|
|
1678
1683
|
changeTransactionLineCollectionCode(uuid: string, lineUuid: string, code: string): Promise<TransactionInfoResponse>;
|
|
1679
1684
|
changeHeaderTransactionDefinitive(uuid: string, definitive: boolean): Promise<TransactionInfoResponse>;
|
|
1685
|
+
changeHeaderReleaseTransaction(uuid: string, release: boolean): Promise<TransactionInfoResponse>;
|
|
1680
1686
|
changeHeaderDiscountOnOrderLine(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1681
1687
|
changeHeaderPrintDiscount(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1682
1688
|
changeHeaderDeliveryAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
@@ -1759,6 +1765,7 @@ declare class TransactionConnectorService {
|
|
|
1759
1765
|
setGoodsToBePickedForSalesOrder(request: GoodsToBePickedForOrderRequest): Promise<TransactionInfoResponse>;
|
|
1760
1766
|
setGoodsPickedForOrder(request: GoodsPickedRequest): Promise<TransactionInfoResponse>;
|
|
1761
1767
|
getOrderConfirmationEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]>;
|
|
1768
|
+
isMontrieursDelivery(transactionId: number): Promise<boolean>;
|
|
1762
1769
|
getCashOnDeliveryData(uuid: string): Promise<CashOnDeliveryData>;
|
|
1763
1770
|
changeHeaderCashOnDeliveryAmount(request: ChangeHeaderCashOnDeliveryAmountRequest): Promise<void>;
|
|
1764
1771
|
getOrderConfirmationPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]>;
|
|
@@ -2276,6 +2283,8 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2276
2283
|
transactionKindSet: BehaviorSubject<boolean>;
|
|
2277
2284
|
transactionMargeViewClicked: Subject<boolean>;
|
|
2278
2285
|
currentBranch: string;
|
|
2286
|
+
currentTransactionNr: string;
|
|
2287
|
+
currentTransactionDate: Date;
|
|
2279
2288
|
autoSave: boolean;
|
|
2280
2289
|
manualSaveParam: boolean;
|
|
2281
2290
|
applicationUser: boolean;
|
|
@@ -2285,6 +2294,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2285
2294
|
canChangeSalesOrderWhenFullyInvoiced: boolean;
|
|
2286
2295
|
invalidTransaction: boolean;
|
|
2287
2296
|
headerReadonly: boolean;
|
|
2297
|
+
transactionDialogOpen: boolean;
|
|
2288
2298
|
get manualSaveActive(): boolean;
|
|
2289
2299
|
set activeRubric(value: TransactionTypeCategory);
|
|
2290
2300
|
get activeRubric(): TransactionTypeCategory;
|
|
@@ -2467,6 +2477,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2467
2477
|
deleteTransaction(): Promise<void>;
|
|
2468
2478
|
cancelCashRegisterOrder(): Promise<void>;
|
|
2469
2479
|
updateHeaderTransactionDefinitive(uuid: string, definitive: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2480
|
+
updateHeaderReleaseTransaction(uuid: string, release: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2470
2481
|
updateHeaderDiscountOnOrderLine(uuid: string, discount: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2471
2482
|
changeHeaderPrintDiscount(uuid: string, discount: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2472
2483
|
updateHeaderDeliveryAddress(uuid: string, newNawNr: number, saveTransaction?: boolean): Promise<boolean>;
|
|
@@ -2618,6 +2629,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2618
2629
|
updatePurchasePortalLines(transactionId: number, version: number, purchasePortalLine: PurchasePortalLine): Promise<boolean>;
|
|
2619
2630
|
getTextTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
2620
2631
|
getStandardTexts(languageCode: string): Promise<StandardText[]>;
|
|
2632
|
+
upsertTransactionStandardText(request: UpsertTransactionStandardTextRequest): Promise<void>;
|
|
2621
2633
|
getArticleFullObject(goodId: number): Promise<ArticleFullObject>;
|
|
2622
2634
|
getGoodIdFromArticleNr(sku: string): Promise<number>;
|
|
2623
2635
|
getCountry(countryCode: string): Promise<Country>;
|
|
@@ -2643,6 +2655,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2643
2655
|
getLinePurchaseHistory(transId: number, lineNr: number): Promise<PurchaseHistory>;
|
|
2644
2656
|
getLinePurchaseInfo(transId: number, lineNr: number): Promise<PurchaseInfo[]>;
|
|
2645
2657
|
getOrderConfirmationEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]>;
|
|
2658
|
+
isMontrieursDelivery(transactionId: number): Promise<boolean>;
|
|
2646
2659
|
getOrderConfirmationPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]>;
|
|
2647
2660
|
getOrderConfirmationDefaultSendMethod(relationId: number): Promise<number>;
|
|
2648
2661
|
getDefaultEmailAddressListForOrderConfirmation(transactionUUID: any): Promise<string[]>;
|
|
@@ -3541,6 +3554,9 @@ declare class CheckoutComponent implements OnInit, OnDestroy {
|
|
|
3541
3554
|
emailMandatory: boolean;
|
|
3542
3555
|
phoneMandatory: boolean;
|
|
3543
3556
|
showCreateOnFirstPages: boolean;
|
|
3557
|
+
showManualOrderNrAndDateDialog: boolean;
|
|
3558
|
+
manualOrderNrAndDate: boolean;
|
|
3559
|
+
setManualOrderNrAndDate: boolean;
|
|
3544
3560
|
private _relationNr;
|
|
3545
3561
|
private _transNrForServiceFromSalesTransactionLine;
|
|
3546
3562
|
private _lineNrForServiceFromSalesTransactionLine;
|
|
@@ -3562,6 +3578,8 @@ declare class CheckoutComponent implements OnInit, OnDestroy {
|
|
|
3562
3578
|
handleInvoiceAddressChange(nawNr: number): void;
|
|
3563
3579
|
handleInvoiceLocalHashChange(localHash: string): void;
|
|
3564
3580
|
handleTransactionFinished(id: number): void;
|
|
3581
|
+
handleManualCreateDialogClose(): void;
|
|
3582
|
+
handleCommitManualValues(): void;
|
|
3565
3583
|
private scrollToTop;
|
|
3566
3584
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckoutComponent, never>;
|
|
3567
3585
|
static ɵcmp: i0.ɵɵComponentDeclaration<CheckoutComponent, "co-checkout", never, { "newTransaction": { "alias": "newTransaction"; "required": false; }; "relationNr": { "alias": "relationNr"; "required": false; }; "transForServiceFromSalesTransactionLine": { "alias": "transForServiceFromSalesTransactionLine"; "required": false; }; "lineNrForServiceFromSalesTransactionLine": { "alias": "lineNrForServiceFromSalesTransactionLine"; "required": false; }; "sellerId": { "alias": "sellerId"; "required": false; }; "transactionType": { "alias": "transactionType"; "required": false; }; "showCreateTransactionButton": { "alias": "showCreateTransactionButton"; "required": false; }; }, { "transactionFinished": "transactionFinished"; "editCartClick": "editCartClick"; }, never, never, false, never>;
|
|
@@ -4034,6 +4052,7 @@ declare enum TransactionCfgName {
|
|
|
4034
4052
|
HeaderOrderOrderTotalHeader = "headerOrderOrderTotalHeader",
|
|
4035
4053
|
HeaderOrderDiscountHeader = "headerOrderDiscountHeader",
|
|
4036
4054
|
HeaderOrderDefinitiveHeader = "headerOrderDefinitiveHeader",
|
|
4055
|
+
HeaderOrderReleaseHeader = "headerOrderReleaseHeader",
|
|
4037
4056
|
DiscountPercentage = "discountPercentage",
|
|
4038
4057
|
DiscountAmount = "discountAmount",
|
|
4039
4058
|
DiscountTransTotal = "discountTransTotal",
|
|
@@ -7037,20 +7056,16 @@ declare class TransactionHeaderDepositPercentageModule {
|
|
|
7037
7056
|
|
|
7038
7057
|
declare class TransactionHeaderDepositAmountComponent extends TransactionInputHeaderFieldBaseComponent {
|
|
7039
7058
|
currencyPipe: typeof CoCurrencyPipe;
|
|
7040
|
-
private _elementRef;
|
|
7041
7059
|
set child(content: any);
|
|
7042
|
-
onDocumentClick(target: HTMLElement): void;
|
|
7043
7060
|
clickToEdit: boolean;
|
|
7044
7061
|
businessRuleApplied: EventEmitter<boolean>;
|
|
7045
|
-
depositUpdated: EventEmitter<boolean>;
|
|
7046
7062
|
showClass: boolean;
|
|
7047
7063
|
input: InputTextComponent;
|
|
7048
7064
|
amount: number;
|
|
7049
7065
|
commit(amount: number): Promise<boolean>;
|
|
7050
7066
|
onDisplayClick(event?: KeyboardEvent | MouseEvent): void;
|
|
7051
|
-
onBlur(): void;
|
|
7052
7067
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDepositAmountComponent, never>;
|
|
7053
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDepositAmountComponent, "co-transaction-header-deposit-amount", never, { "clickToEdit": { "alias": "clickToEdit"; "required": false; }; }, { "businessRuleApplied": "businessRuleApplied";
|
|
7068
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDepositAmountComponent, "co-transaction-header-deposit-amount", never, { "clickToEdit": { "alias": "clickToEdit"; "required": false; }; }, { "businessRuleApplied": "businessRuleApplied"; }, never, never, false, never>;
|
|
7054
7069
|
}
|
|
7055
7070
|
|
|
7056
7071
|
declare class TransactionHeaderDepositAmountModule {
|
|
@@ -10011,7 +10026,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
10011
10026
|
showCategories: boolean;
|
|
10012
10027
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10013
10028
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10014
|
-
currentTitle(): "
|
|
10029
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10015
10030
|
ngOnDestroy(): void;
|
|
10016
10031
|
handleClickWrapper(event: MouseEvent): void;
|
|
10017
10032
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10037,7 +10052,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
10037
10052
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
10038
10053
|
ngOnDestroy(): void;
|
|
10039
10054
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10040
|
-
currentTitle(): "
|
|
10055
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10041
10056
|
handleClickWrapper(event: MouseEvent): void;
|
|
10042
10057
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
10043
10058
|
private handleDocumentClick;
|
|
@@ -10089,7 +10104,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
10089
10104
|
showCategories: boolean;
|
|
10090
10105
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10091
10106
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10092
|
-
currentTitle(): "
|
|
10107
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10093
10108
|
ngOnDestroy(): void;
|
|
10094
10109
|
handleClickWrapper(event: MouseEvent): void;
|
|
10095
10110
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -13872,9 +13887,26 @@ declare class DialogTransactionHeaderPlanningRequest {
|
|
|
13872
13887
|
static ɵinj: i0.ɵɵInjectorDeclaration<DialogTransactionHeaderPlanningRequest>;
|
|
13873
13888
|
}
|
|
13874
13889
|
|
|
13890
|
+
declare class TransactionHeaderReleaseComponent extends TransactionHeaderBaseComponent {
|
|
13891
|
+
checkbox: InputCheckboxComponent;
|
|
13892
|
+
showClass: boolean;
|
|
13893
|
+
onlyIcon: boolean;
|
|
13894
|
+
readonly icons: typeof Icon;
|
|
13895
|
+
commit(release: boolean): Promise<boolean>;
|
|
13896
|
+
toggleTransactionRelease(): void;
|
|
13897
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderReleaseComponent, never>;
|
|
13898
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderReleaseComponent, "co-transaction-header-release", never, { "onlyIcon": { "alias": "onlyIcon"; "required": false; }; }, {}, never, never, false, never>;
|
|
13899
|
+
}
|
|
13900
|
+
|
|
13901
|
+
declare class TransactionHeaderReleaseModule {
|
|
13902
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderReleaseModule, never>;
|
|
13903
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderReleaseModule, [typeof TransactionHeaderReleaseComponent], [typeof i2.CommonModule, typeof PipeModule, typeof i3.InputCheckboxModule, typeof i3.TooltipDirectiveModule, typeof i3.ScreenConfigurationModule, typeof i3.IconModule], [typeof TransactionHeaderReleaseComponent]>;
|
|
13904
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderReleaseModule>;
|
|
13905
|
+
}
|
|
13906
|
+
|
|
13875
13907
|
declare class TransactionHeaderDeliveryModule {
|
|
13876
13908
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDeliveryModule, never>;
|
|
13877
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderDeliveryModule, [typeof TransactionHeaderDeliveryComponent], [typeof i2.CommonModule, typeof CoreModule, typeof TransactionHeaderBlockModule, typeof i3.InputCheckboxModule, typeof i3.IconModule, typeof PipeModule, typeof i3.InputDatePickerModule, typeof TransactionHeaderDeliveryDateModule, typeof i3.CoDialogModule, typeof TransactionHeaderDeliveryOptionsModule, typeof TransactionHeaderRemarksModule, typeof TransactionHeaderReferenceModule, typeof TransactionHeaderRelationReferenceModule, typeof TransactionHeaderDeliveryMethodModule, typeof TransactionHeaderPreferredDeliveryDateModule, typeof DialogTransactionHeaderDeliveryMethodModule, typeof TransactionHeaderPopupModule, typeof TransactionHeaderDeliveryMethodButtonModule, typeof TransactionHeaderDeliverydateDefinitiveButtonModule, typeof TransactionHeaderPartialDeliveryModule, typeof i3.ScreenConfigurationModule, typeof i6.DatePlanningModule, typeof DialogTransactionHeaderPlanningRequest, typeof TransactionHeaderPreferredDeliveryTimeModule, typeof TransactionHeaderDefinitiveModule], [typeof TransactionHeaderDeliveryComponent]>;
|
|
13909
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderDeliveryModule, [typeof TransactionHeaderDeliveryComponent], [typeof i2.CommonModule, typeof CoreModule, typeof TransactionHeaderBlockModule, typeof i3.InputCheckboxModule, typeof i3.IconModule, typeof PipeModule, typeof i3.InputDatePickerModule, typeof TransactionHeaderDeliveryDateModule, typeof i3.CoDialogModule, typeof TransactionHeaderDeliveryOptionsModule, typeof TransactionHeaderRemarksModule, typeof TransactionHeaderReferenceModule, typeof TransactionHeaderRelationReferenceModule, typeof TransactionHeaderDeliveryMethodModule, typeof TransactionHeaderPreferredDeliveryDateModule, typeof DialogTransactionHeaderDeliveryMethodModule, typeof TransactionHeaderPopupModule, typeof TransactionHeaderDeliveryMethodButtonModule, typeof TransactionHeaderDeliverydateDefinitiveButtonModule, typeof TransactionHeaderPartialDeliveryModule, typeof i3.ScreenConfigurationModule, typeof i6.DatePlanningModule, typeof DialogTransactionHeaderPlanningRequest, typeof TransactionHeaderPreferredDeliveryTimeModule, typeof TransactionHeaderDefinitiveModule, typeof TransactionHeaderReleaseModule], [typeof TransactionHeaderDeliveryComponent]>;
|
|
13878
13910
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderDeliveryModule>;
|
|
13879
13911
|
}
|
|
13880
13912
|
|
|
@@ -13944,9 +13976,30 @@ declare class StepperStepModule {
|
|
|
13944
13976
|
static ɵinj: i0.ɵɵInjectorDeclaration<StepperStepModule>;
|
|
13945
13977
|
}
|
|
13946
13978
|
|
|
13979
|
+
declare class TransactionManualCreateDialogComponent {
|
|
13980
|
+
iconCacheService: IconCacheService;
|
|
13981
|
+
service: TransactionService;
|
|
13982
|
+
readonly icons: typeof Icon;
|
|
13983
|
+
closeEvent: EventEmitter<void>;
|
|
13984
|
+
saveEvent: EventEmitter<void>;
|
|
13985
|
+
showClass(): boolean;
|
|
13986
|
+
constructor(iconCacheService: IconCacheService, service: TransactionService);
|
|
13987
|
+
handleCloseClick(): void;
|
|
13988
|
+
handleCommitClick(): void;
|
|
13989
|
+
handleCancelClick(): void;
|
|
13990
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionManualCreateDialogComponent, never>;
|
|
13991
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionManualCreateDialogComponent, "co-transaction-manual-create-dialog", never, {}, { "closeEvent": "closeEvent"; "saveEvent": "saveEvent"; }, never, never, false, never>;
|
|
13992
|
+
}
|
|
13993
|
+
|
|
13994
|
+
declare class TransactionManualCreateDialogModule {
|
|
13995
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionManualCreateDialogModule, never>;
|
|
13996
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionManualCreateDialogModule, [typeof TransactionManualCreateDialogComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof i3.InputTextModule, typeof PipeModule, typeof i3.InputDatePickerModule, typeof i3.ButtonModule], [typeof TransactionManualCreateDialogComponent]>;
|
|
13997
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionManualCreateDialogModule>;
|
|
13998
|
+
}
|
|
13999
|
+
|
|
13947
14000
|
declare class CheckoutModule {
|
|
13948
14001
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckoutModule, never>;
|
|
13949
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CheckoutModule, [typeof CheckoutOverviewRelationEditComponent, typeof CheckoutOverviewDeliveryEditComponent, typeof CheckoutOverviewPaymentComponent, typeof CheckoutComponent], [typeof CoreModule, typeof i2.CommonModule, typeof i3.IconModule, typeof i3.InputTextModule, typeof i3.InputCheckboxModule, typeof i3.InputRadioButtonModule, typeof i3.FormModule, typeof i3.InputDatePickerModule, typeof i3.InputNumberPickerModule, typeof i3.CoDialogModule, typeof i3.ButtonModule, typeof i3.PopupModule, typeof i8.ReactiveFormsModule, typeof i8.FormsModule, typeof RelationAddressModule, typeof RelationAddressSelectModule, typeof RelationAddressTileModule, typeof i3.InputTextareaModule, typeof PipeModule, typeof StepperModule, typeof ShoppingCartPreviewModule, typeof AvatarModule, typeof DeliveryTypeTileModule, typeof i3.CollapsibleModule, typeof PaymentModule, typeof RelationTypeModule, typeof RelationGeneralModule, typeof RelationAddressesModule, typeof RelationContactDetailsModule, typeof RelationPreferencesModule, typeof TransactionHeaderDeliveryModule, typeof TransactionHeaderPreferredDeliveryDateModule, typeof TransactionHeaderDeliveryDateModule, typeof TransactionHeaderDeliveryMethodModule, typeof TransactionHeaderPartialDeliveryModule, typeof TransactionHeaderDeliveryOptionsModule, typeof TransactionHeaderRemarksModule, typeof TransactionHeaderReferenceModule, typeof TransactionHeaderRelationReferenceModule, typeof TransactionHeaderDepositPercentageModule, typeof TransactionHeaderDepositAmountModule, typeof TransactionHeaderDefinitiveModule, typeof TransactionHeaderBranchModule, typeof TransactionHeaderAdministrativeRelationModule, typeof TransactionHeaderMarketingModule, typeof TransactionHeaderHoldCodesModule, typeof RelationSuggestionsListModule, typeof i3.ScreenConfigurationModule, typeof SuggestionsSidebarModule, typeof i3.ListOfValuesModule, typeof StepperStepModule, typeof TransactionHeaderSalesPersonModule, typeof TransactionHeaderPaymentConditionModule, typeof i3.InputSearchModule], [typeof CheckoutComponent, typeof CheckoutOverviewRelationEditComponent]>;
|
|
14002
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CheckoutModule, [typeof CheckoutOverviewRelationEditComponent, typeof CheckoutOverviewDeliveryEditComponent, typeof CheckoutOverviewPaymentComponent, typeof CheckoutComponent], [typeof CoreModule, typeof i2.CommonModule, typeof i3.IconModule, typeof i3.InputTextModule, typeof i3.InputCheckboxModule, typeof i3.InputRadioButtonModule, typeof i3.FormModule, typeof i3.InputDatePickerModule, typeof i3.InputNumberPickerModule, typeof i3.CoDialogModule, typeof i3.ButtonModule, typeof i3.PopupModule, typeof i8.ReactiveFormsModule, typeof i8.FormsModule, typeof RelationAddressModule, typeof RelationAddressSelectModule, typeof RelationAddressTileModule, typeof i3.InputTextareaModule, typeof PipeModule, typeof StepperModule, typeof ShoppingCartPreviewModule, typeof AvatarModule, typeof DeliveryTypeTileModule, typeof i3.CollapsibleModule, typeof PaymentModule, typeof RelationTypeModule, typeof RelationGeneralModule, typeof RelationAddressesModule, typeof RelationContactDetailsModule, typeof RelationPreferencesModule, typeof TransactionHeaderDeliveryModule, typeof TransactionHeaderPreferredDeliveryDateModule, typeof TransactionHeaderDeliveryDateModule, typeof TransactionHeaderDeliveryMethodModule, typeof TransactionHeaderPartialDeliveryModule, typeof TransactionHeaderDeliveryOptionsModule, typeof TransactionHeaderRemarksModule, typeof TransactionHeaderReferenceModule, typeof TransactionHeaderRelationReferenceModule, typeof TransactionHeaderDepositPercentageModule, typeof TransactionHeaderDepositAmountModule, typeof TransactionHeaderDefinitiveModule, typeof TransactionHeaderBranchModule, typeof TransactionHeaderAdministrativeRelationModule, typeof TransactionHeaderMarketingModule, typeof TransactionHeaderHoldCodesModule, typeof RelationSuggestionsListModule, typeof i3.ScreenConfigurationModule, typeof SuggestionsSidebarModule, typeof i3.ListOfValuesModule, typeof StepperStepModule, typeof TransactionHeaderSalesPersonModule, typeof TransactionHeaderPaymentConditionModule, typeof i3.InputSearchModule, typeof TransactionManualCreateDialogModule], [typeof CheckoutComponent, typeof CheckoutOverviewRelationEditComponent]>;
|
|
13950
14003
|
static ɵinj: i0.ɵɵInjectorDeclaration<CheckoutModule>;
|
|
13951
14004
|
}
|
|
13952
14005
|
|
|
@@ -14498,11 +14551,12 @@ declare class TransactionQuickAccessOverviewComponent extends TransactionQuickAc
|
|
|
14498
14551
|
reportDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
|
|
14499
14552
|
reportDocumentCombinedRequest: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest;
|
|
14500
14553
|
showDirectSell: boolean;
|
|
14554
|
+
isMontrieursDelivery: boolean;
|
|
14501
14555
|
LayoutCode: typeof LayoutCode;
|
|
14502
14556
|
private _subs;
|
|
14503
14557
|
ngOnInit(): void;
|
|
14504
14558
|
ngOnDestroy(): void;
|
|
14505
|
-
openSendDialog(): void
|
|
14559
|
+
openSendDialog(): Promise<void>;
|
|
14506
14560
|
checkDirectSell(): Promise<void>;
|
|
14507
14561
|
orderDirectSellLines(): Promise<void>;
|
|
14508
14562
|
protected emailDocument(request: ReportingDocumentEmailSignDocBaseRequest): Promise<void>;
|
|
@@ -14515,6 +14569,7 @@ declare class TransactionQuickAccessOverviewComponent extends TransactionQuickAc
|
|
|
14515
14569
|
protected getPreviewDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
14516
14570
|
protected getDefaultSendMethod(): Promise<number>;
|
|
14517
14571
|
private _prepareHistoricRequest;
|
|
14572
|
+
private _loadIsMontrieursDelivery;
|
|
14518
14573
|
protected combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): void;
|
|
14519
14574
|
private _getHistoricReports;
|
|
14520
14575
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessOverviewComponent, never>;
|
package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/_layout.scss
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@include export-module('cc-transaction-manual-create-dialog-layout') {
|
|
2
|
+
.co-transaction-manual-create-dialog {
|
|
3
|
+
.co-dialog {
|
|
4
|
+
.co-dialog-wrapper {
|
|
5
|
+
display: flex;
|
|
6
|
+
width: 350px;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
.co-dialog-content {
|
|
10
|
+
margin: 1em 0;
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
gap: 0.5em;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "300.1.
|
|
3
|
+
"version": "300.1.5",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@colijnit/relationapi": ">=300.1.0",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
21
|
"@colijnit/sharedcomponents": ">=300.1.0",
|
|
22
|
-
"@colijnit/transactionapi": ">=300.1.
|
|
22
|
+
"@colijnit/transactionapi": ">=300.1.5"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|