@colijnit/transaction 261.20.0 → 261.20.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/index.d.ts
CHANGED
|
@@ -257,6 +257,7 @@ import { GenerateAndSendPurchaseOrdersRequest } from '@colijnit/transactionapi/b
|
|
|
257
257
|
import { ChangeHeaderRelationTransactionDateRequest } from '@colijnit/transactionapi/build/model/change-header-relation-transaction-date-request';
|
|
258
258
|
import { PrintLspPackageInfoRequest } from '@colijnit/transactionapi/build/model/print-lsp-package-info-request.bo';
|
|
259
259
|
import { DropshipmentInfo } from '@colijnit/transactionapi/build/model/dropshipment-info';
|
|
260
|
+
import { ChangeHeaderDropshipmentInfoRequest } from '@colijnit/transactionapi/build/model/change-header-dropshipment-info-request';
|
|
260
261
|
import { GetRouteDepartureRequest } from '@colijnit/transactionapi/build/model/get-route-departure-request';
|
|
261
262
|
import { InterBranchFilters } from '@colijnit/transactionapi/build/model/inter-branch-filters';
|
|
262
263
|
import { StockReplenishment } from '@colijnit/transactionapi/build/model/stock-replenishment.bo';
|
|
@@ -1241,6 +1242,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1241
1242
|
getInvoiceDefaultSendMethod(relationId: number): Promise<number>;
|
|
1242
1243
|
getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
|
|
1243
1244
|
insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
|
|
1245
|
+
changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
|
|
1244
1246
|
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest): Promise<PdfPosReceiptResponse>;
|
|
1245
1247
|
printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
|
|
1246
1248
|
printHistoricPosReceipt(printHistoricPosReceiptRequest: PrintHistoricPosReceiptRequest): Promise<boolean>;
|
|
@@ -1698,6 +1700,7 @@ declare class TransactionConnectorService {
|
|
|
1698
1700
|
getInvoiceDefaultSendMethod(relationId: number): Promise<number>;
|
|
1699
1701
|
getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
|
|
1700
1702
|
insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
|
|
1703
|
+
changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
|
|
1701
1704
|
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest): Promise<PdfPosReceiptResponse>;
|
|
1702
1705
|
printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
|
|
1703
1706
|
printHistoricPosReceipt(printHistoricPosReceiptRequest: PrintHistoricPosReceiptRequest): Promise<boolean>;
|
|
@@ -2519,6 +2522,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2519
2522
|
getInvoiceDefaultSendMethod(relationId: number): Promise<number>;
|
|
2520
2523
|
getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
|
|
2521
2524
|
insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
|
|
2525
|
+
changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
|
|
2522
2526
|
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest): Promise<PdfPosReceiptResponse>;
|
|
2523
2527
|
printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
|
|
2524
2528
|
printHistoricPosReceipt(printHistoricPosReceiptRequest: PrintHistoricPosReceiptRequest): Promise<boolean>;
|
|
@@ -8900,6 +8904,7 @@ declare class AvatarComponent implements OnInit {
|
|
|
8900
8904
|
get relationId(): number;
|
|
8901
8905
|
set relation(value: RelationListObject);
|
|
8902
8906
|
get relation(): RelationListObject;
|
|
8907
|
+
showBranchNr: boolean;
|
|
8903
8908
|
showClass(): boolean;
|
|
8904
8909
|
imageSrc: string;
|
|
8905
8910
|
backgroundColor: string;
|
|
@@ -8919,7 +8924,7 @@ declare class AvatarComponent implements OnInit {
|
|
|
8919
8924
|
private _setBackgroundColor;
|
|
8920
8925
|
private _detectChanges;
|
|
8921
8926
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
8922
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "co-avatar", never, { "image": { "alias": "image"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; }, {}, never, never, false, never>;
|
|
8927
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "co-avatar", never, { "image": { "alias": "image"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "showBranchNr": { "alias": "showBranchNr"; "required": false; }; }, {}, never, never, false, never>;
|
|
8923
8928
|
}
|
|
8924
8929
|
|
|
8925
8930
|
declare class AvatarModule {
|
|
@@ -12202,20 +12207,28 @@ declare class DropShipmentComponent implements OnInit {
|
|
|
12202
12207
|
transactionService: TransactionService;
|
|
12203
12208
|
private _dialogService;
|
|
12204
12209
|
showClass(): boolean;
|
|
12210
|
+
transUuid: string;
|
|
12205
12211
|
showDropShipmentDialog: boolean;
|
|
12206
12212
|
dropShipmentInfo: DropshipmentInfo;
|
|
12207
12213
|
allDropShipmentAddresses: DropshipmentInfo[];
|
|
12208
12214
|
existingDropShipmentAddresses: DropshipmentInfo[];
|
|
12209
12215
|
searchTerm: string;
|
|
12216
|
+
showDisconnectButton: boolean;
|
|
12217
|
+
editMode: boolean;
|
|
12210
12218
|
readonly icons: typeof Icon;
|
|
12211
12219
|
constructor(iconCacheService: IconCacheService, transactionService: TransactionService, _dialogService: TransactionDialogService);
|
|
12212
|
-
ngOnInit():
|
|
12213
|
-
openDropShipmentDialog(): void;
|
|
12220
|
+
ngOnInit(): void;
|
|
12214
12221
|
saveDropShipment(): void;
|
|
12222
|
+
closeDropShipment(): void;
|
|
12215
12223
|
handleSearch(searchTerm: string): void;
|
|
12224
|
+
selectAddress(selectedAddress: DropshipmentInfo): void;
|
|
12225
|
+
removeDropShipment(): void;
|
|
12226
|
+
addNewAddress(): void;
|
|
12227
|
+
cancelAddingNewAddress(): void;
|
|
12216
12228
|
private _objectContainsTerm;
|
|
12229
|
+
private _getAddresses;
|
|
12217
12230
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropShipmentComponent, never>;
|
|
12218
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropShipmentComponent, "co-drop-shipment", never, {}, {}, never, never, false, never>;
|
|
12231
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropShipmentComponent, "co-drop-shipment", never, { "transUuid": { "alias": "transUuid"; "required": false; }; }, {}, never, never, false, never>;
|
|
12219
12232
|
}
|
|
12220
12233
|
|
|
12221
12234
|
declare class DropShipmentModule {
|
|
@@ -586,6 +586,8 @@
|
|
|
586
586
|
}
|
|
587
587
|
|
|
588
588
|
.drop-shipment-dialog {
|
|
589
|
+
cursor: default;
|
|
590
|
+
|
|
589
591
|
.co-dialog-wrapper {
|
|
590
592
|
width: 1000px !important;
|
|
591
593
|
|
|
@@ -619,6 +621,23 @@
|
|
|
619
621
|
}
|
|
620
622
|
}
|
|
621
623
|
|
|
624
|
+
.form-actions {
|
|
625
|
+
display: flex;
|
|
626
|
+
margin: 20px 0;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.remove-entry {
|
|
630
|
+
width: fit-content !important;
|
|
631
|
+
margin-right: 15px;
|
|
632
|
+
color: #FFFFFF;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.add-entry {
|
|
636
|
+
width: fit-content !important;
|
|
637
|
+
margin: 15px 0 30px;
|
|
638
|
+
color: #FFFFFF;
|
|
639
|
+
}
|
|
640
|
+
|
|
622
641
|
.search-input {
|
|
623
642
|
margin-bottom: 20px;
|
|
624
643
|
}
|
|
@@ -641,6 +660,15 @@
|
|
|
641
660
|
&:hover {
|
|
642
661
|
background-color: #F5F5FC;
|
|
643
662
|
}
|
|
663
|
+
|
|
664
|
+
&.active {
|
|
665
|
+
color: #FFFFFF;
|
|
666
|
+
background-color: #1A73E8;
|
|
667
|
+
|
|
668
|
+
&:hover {
|
|
669
|
+
background-color: #1A73E8;
|
|
670
|
+
}
|
|
671
|
+
}
|
|
644
672
|
}
|
|
645
673
|
}
|
|
646
674
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.1",
|
|
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": ">=261.1.0",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
21
|
"@colijnit/sharedcomponents": ">=261.20.0",
|
|
22
|
-
"@colijnit/transactionapi": ">=261.1.
|
|
22
|
+
"@colijnit/transactionapi": ">=261.1.2"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|