@colijnit/transaction 261.20.31 → 261.20.33
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 +498 -461
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +9 -2
- package/lib/component/returns/return-wizard/return-lines-wizard/style/_layout.scss +5 -1
- package/package.json +3 -3
- package/colijnit-transaction-261.20.28.tgz +0 -0
- package/colijnit-transaction-261.20.29.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -2332,6 +2332,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2332
2332
|
prepareReceiveGoodsWithDataTerminalInternalParam(): void;
|
|
2333
2333
|
preparePrintColliStickerDefault(): void;
|
|
2334
2334
|
getInternalParameter(param: InternalParam): Promise<boolean>;
|
|
2335
|
+
getCashLimitValue(param: InternalParam): Promise<number>;
|
|
2335
2336
|
getInternalDefault(param: InternalDefault): Promise<string>;
|
|
2336
2337
|
checkTransactionValidity(): Promise<boolean>;
|
|
2337
2338
|
createNewRelation(): void;
|
|
@@ -4642,6 +4643,8 @@ declare class TransactionLineService {
|
|
|
4642
4643
|
lineQuantityPurchaseConfirmed: number;
|
|
4643
4644
|
lineQuantityTransportNotification: number;
|
|
4644
4645
|
lineQuantityInvoiceControl: number;
|
|
4646
|
+
lineQuantitySignedOff: number;
|
|
4647
|
+
lineQuantityReturnRequested: number;
|
|
4645
4648
|
decimals: number;
|
|
4646
4649
|
isText: boolean;
|
|
4647
4650
|
isArticle: boolean;
|
|
@@ -4965,7 +4968,6 @@ declare class TransactionArticleTextComponent implements OnInit, AfterViewInit,
|
|
|
4965
4968
|
documents: FilterItemViewmodel[];
|
|
4966
4969
|
orderLineSetCategories: OrderLineSetCategory[];
|
|
4967
4970
|
showOnDocuments: number[];
|
|
4968
|
-
amount: number;
|
|
4969
4971
|
color: string;
|
|
4970
4972
|
title: string;
|
|
4971
4973
|
selectAll: boolean;
|
|
@@ -7241,6 +7243,7 @@ declare class QuestionAnswerComponent {
|
|
|
7241
7243
|
onChangeAnswer(changedAnswer: ServiceWizardAnswer): void;
|
|
7242
7244
|
onQaResultChange(newVResult: QaResult): void;
|
|
7243
7245
|
onWizardFinished(wizardFinished: boolean): void;
|
|
7246
|
+
resetResult(): void;
|
|
7244
7247
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionAnswerComponent, never>;
|
|
7245
7248
|
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionAnswerComponent, "co-question-answer-item", never, { "question": { "alias": "question"; "required": false; }; "answers": { "alias": "answers"; "required": false; }; }, { "qaResultChange": "qaResultChange"; "wizardFinished": "wizardFinished"; }, never, never, false, never>;
|
|
7246
7249
|
}
|
|
@@ -7254,6 +7257,7 @@ interface QaResult {
|
|
|
7254
7257
|
|
|
7255
7258
|
declare class ServiceWizardQaComponent implements OnInit {
|
|
7256
7259
|
transactionService: TransactionService;
|
|
7260
|
+
qaComponent: QuestionAnswerComponent;
|
|
7257
7261
|
wizardFinished: EventEmitter<string>;
|
|
7258
7262
|
skipWizard: EventEmitter<void>;
|
|
7259
7263
|
serviceWizardQuestion: ServiceWizardQuestion;
|
|
@@ -7262,7 +7266,9 @@ declare class ServiceWizardQaComponent implements OnInit {
|
|
|
7262
7266
|
ngOnInit(): Promise<void>;
|
|
7263
7267
|
onQaResultChange(newVResult: QaResult): void;
|
|
7264
7268
|
onWizardFinished(wizardFinished: boolean): void;
|
|
7265
|
-
|
|
7269
|
+
resetWizard(): void;
|
|
7270
|
+
private getServiceWizard;
|
|
7271
|
+
private buildQAString;
|
|
7266
7272
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceWizardQaComponent, never>;
|
|
7267
7273
|
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceWizardQaComponent, "co-service-wizard-qa", never, {}, { "wizardFinished": "wizardFinished"; "skipWizard": "skipWizard"; }, never, never, false, never>;
|
|
7268
7274
|
}
|
|
@@ -13997,6 +14003,7 @@ declare class TransactionHeaderPaymentComponent extends TransactionHeaderBaseCom
|
|
|
13997
14003
|
toPay: number;
|
|
13998
14004
|
remainingToPay: number;
|
|
13999
14005
|
showRemainingPayment: boolean;
|
|
14006
|
+
needRefreshTransaction: boolean;
|
|
14000
14007
|
private _subs;
|
|
14001
14008
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _paymentConnectorService: TransactionPaymentConnectorService);
|
|
14002
14009
|
ngOnInit(): void;
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
row-gap: 10px;
|
|
7
7
|
|
|
8
8
|
.lines-wizard-sub-title {
|
|
9
|
+
margin-top: 30px;
|
|
9
10
|
font-weight: bold;
|
|
10
11
|
}
|
|
11
12
|
|
|
@@ -17,7 +18,10 @@
|
|
|
17
18
|
min-height: 150px;
|
|
18
19
|
overflow-x: auto;
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
co-drag-drop-container {
|
|
22
|
+
display: flex;
|
|
23
|
+
flex-direction: row;
|
|
24
|
+
column-gap: 20px;
|
|
21
25
|
padding-top: 30px;
|
|
22
26
|
position: relative;
|
|
23
27
|
margin-top: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.33",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"@colijnit/relation": ">=261.20.0",
|
|
19
19
|
"@colijnit/relationapi": ">=261.1.1",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
|
-
"@colijnit/sharedcomponents": ">=261.20.
|
|
22
|
-
"@colijnit/transactionapi": ">=261.1.
|
|
21
|
+
"@colijnit/sharedcomponents": ">=261.20.4",
|
|
22
|
+
"@colijnit/transactionapi": ">=261.1.20"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|
|
Binary file
|
|
Binary file
|