@colijnit/transaction 300.1.2 → 300.1.4
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 +567 -205
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +61 -9
- 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 +1 -1
package/index.d.ts
CHANGED
|
@@ -307,7 +307,7 @@ import { BaseModuleScreenConfigService, BaseModuleService, FormMasterService, Sc
|
|
|
307
307
|
import * as i5 from '@colijnit/relation';
|
|
308
308
|
import { RelationService } from '@colijnit/relation';
|
|
309
309
|
import * as i6 from '@colijnit/sharedcomponents';
|
|
310
|
-
import { SharedService, AgendaEventPerDay, StatusbarData, CalendarView, SendMethod, FormBuilderUserFormComponent, ComponentActivityListComponent, ActivityTimelineComponent } from '@colijnit/sharedcomponents';
|
|
310
|
+
import { SharedService, AgendaEventPerDay, StatusbarData, CalendarView, SendMethod, WeekStart, FormBuilderUserFormComponent, ComponentActivityListComponent, ActivityTimelineComponent } from '@colijnit/sharedcomponents';
|
|
311
311
|
import { ExternalCatalogAddArticleRequest } from '@colijnit/transactionapi/build/model/external-catalog-add-article-request';
|
|
312
312
|
import { TransactionDeliveryCostLineInfo } from '@colijnit/transactionapi/build/model/transaction-delivery-cost-line-info.bo';
|
|
313
313
|
import { UserRoleType } from '@colijnit/ioneconnector/build/enum/user-role-type.enum';
|
|
@@ -1162,6 +1162,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1162
1162
|
changeLineSupplierArticleNumber(uuid: string, lineUuid: string, artNr: string): Promise<TransactionInfoResponse>;
|
|
1163
1163
|
changeTransactionLineGoodDescription(uuid: string, lineUuid: string, goodDescription: string): Promise<TransactionInfoResponse>;
|
|
1164
1164
|
changeHeaderTransactionDefinitive(uuid: string, definitive: boolean): Promise<TransactionInfoResponse>;
|
|
1165
|
+
changeHeaderReleaseTransaction(uuid: string, value: boolean): Promise<TransactionInfoResponse>;
|
|
1165
1166
|
changeHeaderDiscountOnOrderLine(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1166
1167
|
changeHeaderPrintDiscount(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1167
1168
|
changeHeaderDeliveryAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
@@ -1256,6 +1257,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1256
1257
|
setGoodsToBePickedForSalesOrder(request: GoodsToBePickedForOrderRequest): Promise<TransactionInfoResponse>;
|
|
1257
1258
|
setGoodsPickedForOrder(request: GoodsPickedRequest): Promise<TransactionInfoResponse>;
|
|
1258
1259
|
getOrderConfirmationEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]>;
|
|
1260
|
+
isMontrieursDelivery(transactionId: number): Promise<boolean>;
|
|
1259
1261
|
getCashOnDeliveryData(uuid: string): Promise<CashOnDeliveryData>;
|
|
1260
1262
|
changeHeaderCashOnDeliveryAmount(request: ChangeHeaderCashOnDeliveryAmountRequest): Promise<void>;
|
|
1261
1263
|
getOrderConfirmationPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]>;
|
|
@@ -1677,6 +1679,7 @@ declare class TransactionConnectorService {
|
|
|
1677
1679
|
changeTransactionLineGoodDescription(uuid: string, lineUuid: string, goodDescription: string): Promise<TransactionInfoResponse>;
|
|
1678
1680
|
changeTransactionLineCollectionCode(uuid: string, lineUuid: string, code: string): Promise<TransactionInfoResponse>;
|
|
1679
1681
|
changeHeaderTransactionDefinitive(uuid: string, definitive: boolean): Promise<TransactionInfoResponse>;
|
|
1682
|
+
changeHeaderReleaseTransaction(uuid: string, release: boolean): Promise<TransactionInfoResponse>;
|
|
1680
1683
|
changeHeaderDiscountOnOrderLine(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1681
1684
|
changeHeaderPrintDiscount(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1682
1685
|
changeHeaderDeliveryAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
@@ -1759,6 +1762,7 @@ declare class TransactionConnectorService {
|
|
|
1759
1762
|
setGoodsToBePickedForSalesOrder(request: GoodsToBePickedForOrderRequest): Promise<TransactionInfoResponse>;
|
|
1760
1763
|
setGoodsPickedForOrder(request: GoodsPickedRequest): Promise<TransactionInfoResponse>;
|
|
1761
1764
|
getOrderConfirmationEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]>;
|
|
1765
|
+
isMontrieursDelivery(transactionId: number): Promise<boolean>;
|
|
1762
1766
|
getCashOnDeliveryData(uuid: string): Promise<CashOnDeliveryData>;
|
|
1763
1767
|
changeHeaderCashOnDeliveryAmount(request: ChangeHeaderCashOnDeliveryAmountRequest): Promise<void>;
|
|
1764
1768
|
getOrderConfirmationPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]>;
|
|
@@ -2276,6 +2280,8 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2276
2280
|
transactionKindSet: BehaviorSubject<boolean>;
|
|
2277
2281
|
transactionMargeViewClicked: Subject<boolean>;
|
|
2278
2282
|
currentBranch: string;
|
|
2283
|
+
currentTransactionNr: string;
|
|
2284
|
+
currentTransactionDate: Date;
|
|
2279
2285
|
autoSave: boolean;
|
|
2280
2286
|
manualSaveParam: boolean;
|
|
2281
2287
|
applicationUser: boolean;
|
|
@@ -2285,6 +2291,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2285
2291
|
canChangeSalesOrderWhenFullyInvoiced: boolean;
|
|
2286
2292
|
invalidTransaction: boolean;
|
|
2287
2293
|
headerReadonly: boolean;
|
|
2294
|
+
transactionDialogOpen: boolean;
|
|
2288
2295
|
get manualSaveActive(): boolean;
|
|
2289
2296
|
set activeRubric(value: TransactionTypeCategory);
|
|
2290
2297
|
get activeRubric(): TransactionTypeCategory;
|
|
@@ -2467,6 +2474,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2467
2474
|
deleteTransaction(): Promise<void>;
|
|
2468
2475
|
cancelCashRegisterOrder(): Promise<void>;
|
|
2469
2476
|
updateHeaderTransactionDefinitive(uuid: string, definitive: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2477
|
+
updateHeaderReleaseTransaction(uuid: string, release: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2470
2478
|
updateHeaderDiscountOnOrderLine(uuid: string, discount: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2471
2479
|
changeHeaderPrintDiscount(uuid: string, discount: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2472
2480
|
updateHeaderDeliveryAddress(uuid: string, newNawNr: number, saveTransaction?: boolean): Promise<boolean>;
|
|
@@ -2643,6 +2651,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2643
2651
|
getLinePurchaseHistory(transId: number, lineNr: number): Promise<PurchaseHistory>;
|
|
2644
2652
|
getLinePurchaseInfo(transId: number, lineNr: number): Promise<PurchaseInfo[]>;
|
|
2645
2653
|
getOrderConfirmationEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]>;
|
|
2654
|
+
isMontrieursDelivery(transactionId: number): Promise<boolean>;
|
|
2646
2655
|
getOrderConfirmationPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]>;
|
|
2647
2656
|
getOrderConfirmationDefaultSendMethod(relationId: number): Promise<number>;
|
|
2648
2657
|
getDefaultEmailAddressListForOrderConfirmation(transactionUUID: any): Promise<string[]>;
|
|
@@ -3541,6 +3550,9 @@ declare class CheckoutComponent implements OnInit, OnDestroy {
|
|
|
3541
3550
|
emailMandatory: boolean;
|
|
3542
3551
|
phoneMandatory: boolean;
|
|
3543
3552
|
showCreateOnFirstPages: boolean;
|
|
3553
|
+
showManualOrderNrAndDateDialog: boolean;
|
|
3554
|
+
manualOrderNrAndDate: boolean;
|
|
3555
|
+
setManualOrderNrAndDate: boolean;
|
|
3544
3556
|
private _relationNr;
|
|
3545
3557
|
private _transNrForServiceFromSalesTransactionLine;
|
|
3546
3558
|
private _lineNrForServiceFromSalesTransactionLine;
|
|
@@ -3562,6 +3574,8 @@ declare class CheckoutComponent implements OnInit, OnDestroy {
|
|
|
3562
3574
|
handleInvoiceAddressChange(nawNr: number): void;
|
|
3563
3575
|
handleInvoiceLocalHashChange(localHash: string): void;
|
|
3564
3576
|
handleTransactionFinished(id: number): void;
|
|
3577
|
+
handleManualCreateDialogClose(): void;
|
|
3578
|
+
handleCommitManualValues(): void;
|
|
3565
3579
|
private scrollToTop;
|
|
3566
3580
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckoutComponent, never>;
|
|
3567
3581
|
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 +4048,7 @@ declare enum TransactionCfgName {
|
|
|
4034
4048
|
HeaderOrderOrderTotalHeader = "headerOrderOrderTotalHeader",
|
|
4035
4049
|
HeaderOrderDiscountHeader = "headerOrderDiscountHeader",
|
|
4036
4050
|
HeaderOrderDefinitiveHeader = "headerOrderDefinitiveHeader",
|
|
4051
|
+
HeaderOrderReleaseHeader = "headerOrderReleaseHeader",
|
|
4037
4052
|
DiscountPercentage = "discountPercentage",
|
|
4038
4053
|
DiscountAmount = "discountAmount",
|
|
4039
4054
|
DiscountTransTotal = "discountTransTotal",
|
|
@@ -7037,20 +7052,16 @@ declare class TransactionHeaderDepositPercentageModule {
|
|
|
7037
7052
|
|
|
7038
7053
|
declare class TransactionHeaderDepositAmountComponent extends TransactionInputHeaderFieldBaseComponent {
|
|
7039
7054
|
currencyPipe: typeof CoCurrencyPipe;
|
|
7040
|
-
private _elementRef;
|
|
7041
7055
|
set child(content: any);
|
|
7042
|
-
onDocumentClick(target: HTMLElement): void;
|
|
7043
7056
|
clickToEdit: boolean;
|
|
7044
7057
|
businessRuleApplied: EventEmitter<boolean>;
|
|
7045
|
-
depositUpdated: EventEmitter<boolean>;
|
|
7046
7058
|
showClass: boolean;
|
|
7047
7059
|
input: InputTextComponent;
|
|
7048
7060
|
amount: number;
|
|
7049
7061
|
commit(amount: number): Promise<boolean>;
|
|
7050
7062
|
onDisplayClick(event?: KeyboardEvent | MouseEvent): void;
|
|
7051
|
-
onBlur(): void;
|
|
7052
7063
|
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";
|
|
7064
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDepositAmountComponent, "co-transaction-header-deposit-amount", never, { "clickToEdit": { "alias": "clickToEdit"; "required": false; }; }, { "businessRuleApplied": "businessRuleApplied"; }, never, never, false, never>;
|
|
7054
7065
|
}
|
|
7055
7066
|
|
|
7056
7067
|
declare class TransactionHeaderDepositAmountModule {
|
|
@@ -10965,6 +10976,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10965
10976
|
readonly planningActions: typeof DeliveryPlanningUpdateActions;
|
|
10966
10977
|
readonly tileModes: typeof DeliveryPlanningTileModes;
|
|
10967
10978
|
deliveryPlanningViewModes: typeof DeliveryPlanningViewModes;
|
|
10979
|
+
weekStart: typeof WeekStart;
|
|
10968
10980
|
availability: {
|
|
10969
10981
|
transportDay: PlanningTransportWeekDay;
|
|
10970
10982
|
available: boolean;
|
|
@@ -13871,9 +13883,26 @@ declare class DialogTransactionHeaderPlanningRequest {
|
|
|
13871
13883
|
static ɵinj: i0.ɵɵInjectorDeclaration<DialogTransactionHeaderPlanningRequest>;
|
|
13872
13884
|
}
|
|
13873
13885
|
|
|
13886
|
+
declare class TransactionHeaderReleaseComponent extends TransactionHeaderBaseComponent {
|
|
13887
|
+
checkbox: InputCheckboxComponent;
|
|
13888
|
+
showClass: boolean;
|
|
13889
|
+
onlyIcon: boolean;
|
|
13890
|
+
readonly icons: typeof Icon;
|
|
13891
|
+
commit(release: boolean): Promise<boolean>;
|
|
13892
|
+
toggleTransactionRelease(): void;
|
|
13893
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderReleaseComponent, never>;
|
|
13894
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderReleaseComponent, "co-transaction-header-release", never, { "onlyIcon": { "alias": "onlyIcon"; "required": false; }; }, {}, never, never, false, never>;
|
|
13895
|
+
}
|
|
13896
|
+
|
|
13897
|
+
declare class TransactionHeaderReleaseModule {
|
|
13898
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderReleaseModule, never>;
|
|
13899
|
+
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]>;
|
|
13900
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderReleaseModule>;
|
|
13901
|
+
}
|
|
13902
|
+
|
|
13874
13903
|
declare class TransactionHeaderDeliveryModule {
|
|
13875
13904
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDeliveryModule, never>;
|
|
13876
|
-
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]>;
|
|
13905
|
+
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]>;
|
|
13877
13906
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderDeliveryModule>;
|
|
13878
13907
|
}
|
|
13879
13908
|
|
|
@@ -13943,9 +13972,30 @@ declare class StepperStepModule {
|
|
|
13943
13972
|
static ɵinj: i0.ɵɵInjectorDeclaration<StepperStepModule>;
|
|
13944
13973
|
}
|
|
13945
13974
|
|
|
13975
|
+
declare class TransactionManualCreateDialogComponent {
|
|
13976
|
+
iconCacheService: IconCacheService;
|
|
13977
|
+
service: TransactionService;
|
|
13978
|
+
readonly icons: typeof Icon;
|
|
13979
|
+
closeEvent: EventEmitter<void>;
|
|
13980
|
+
saveEvent: EventEmitter<void>;
|
|
13981
|
+
showClass(): boolean;
|
|
13982
|
+
constructor(iconCacheService: IconCacheService, service: TransactionService);
|
|
13983
|
+
handleCloseClick(): void;
|
|
13984
|
+
handleCommitClick(): void;
|
|
13985
|
+
handleCancelClick(): void;
|
|
13986
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionManualCreateDialogComponent, never>;
|
|
13987
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionManualCreateDialogComponent, "co-transaction-manual-create-dialog", never, {}, { "closeEvent": "closeEvent"; "saveEvent": "saveEvent"; }, never, never, false, never>;
|
|
13988
|
+
}
|
|
13989
|
+
|
|
13990
|
+
declare class TransactionManualCreateDialogModule {
|
|
13991
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionManualCreateDialogModule, never>;
|
|
13992
|
+
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]>;
|
|
13993
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionManualCreateDialogModule>;
|
|
13994
|
+
}
|
|
13995
|
+
|
|
13946
13996
|
declare class CheckoutModule {
|
|
13947
13997
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckoutModule, never>;
|
|
13948
|
-
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]>;
|
|
13998
|
+
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]>;
|
|
13949
13999
|
static ɵinj: i0.ɵɵInjectorDeclaration<CheckoutModule>;
|
|
13950
14000
|
}
|
|
13951
14001
|
|
|
@@ -14497,11 +14547,12 @@ declare class TransactionQuickAccessOverviewComponent extends TransactionQuickAc
|
|
|
14497
14547
|
reportDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
|
|
14498
14548
|
reportDocumentCombinedRequest: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest;
|
|
14499
14549
|
showDirectSell: boolean;
|
|
14550
|
+
isMontrieursDelivery: boolean;
|
|
14500
14551
|
LayoutCode: typeof LayoutCode;
|
|
14501
14552
|
private _subs;
|
|
14502
14553
|
ngOnInit(): void;
|
|
14503
14554
|
ngOnDestroy(): void;
|
|
14504
|
-
openSendDialog(): void
|
|
14555
|
+
openSendDialog(): Promise<void>;
|
|
14505
14556
|
checkDirectSell(): Promise<void>;
|
|
14506
14557
|
orderDirectSellLines(): Promise<void>;
|
|
14507
14558
|
protected emailDocument(request: ReportingDocumentEmailSignDocBaseRequest): Promise<void>;
|
|
@@ -14514,6 +14565,7 @@ declare class TransactionQuickAccessOverviewComponent extends TransactionQuickAc
|
|
|
14514
14565
|
protected getPreviewDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
14515
14566
|
protected getDefaultSendMethod(): Promise<number>;
|
|
14516
14567
|
private _prepareHistoricRequest;
|
|
14568
|
+
private _loadIsMontrieursDelivery;
|
|
14517
14569
|
protected combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): void;
|
|
14518
14570
|
private _getHistoricReports;
|
|
14519
14571
|
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
|