@colijnit/transaction 261.20.31 → 261.20.32
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 +180 -146
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +9 -1
- package/lib/component/returns/return-wizard/return-lines-wizard/style/_layout.scss +5 -1
- package/package.json +2 -2
- 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;
|
|
@@ -7241,6 +7244,7 @@ declare class QuestionAnswerComponent {
|
|
|
7241
7244
|
onChangeAnswer(changedAnswer: ServiceWizardAnswer): void;
|
|
7242
7245
|
onQaResultChange(newVResult: QaResult): void;
|
|
7243
7246
|
onWizardFinished(wizardFinished: boolean): void;
|
|
7247
|
+
resetResult(): void;
|
|
7244
7248
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionAnswerComponent, never>;
|
|
7245
7249
|
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
7250
|
}
|
|
@@ -7254,6 +7258,7 @@ interface QaResult {
|
|
|
7254
7258
|
|
|
7255
7259
|
declare class ServiceWizardQaComponent implements OnInit {
|
|
7256
7260
|
transactionService: TransactionService;
|
|
7261
|
+
qaComponent: QuestionAnswerComponent;
|
|
7257
7262
|
wizardFinished: EventEmitter<string>;
|
|
7258
7263
|
skipWizard: EventEmitter<void>;
|
|
7259
7264
|
serviceWizardQuestion: ServiceWizardQuestion;
|
|
@@ -7262,7 +7267,9 @@ declare class ServiceWizardQaComponent implements OnInit {
|
|
|
7262
7267
|
ngOnInit(): Promise<void>;
|
|
7263
7268
|
onQaResultChange(newVResult: QaResult): void;
|
|
7264
7269
|
onWizardFinished(wizardFinished: boolean): void;
|
|
7265
|
-
|
|
7270
|
+
resetWizard(): void;
|
|
7271
|
+
private getServiceWizard;
|
|
7272
|
+
private buildQAString;
|
|
7266
7273
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceWizardQaComponent, never>;
|
|
7267
7274
|
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceWizardQaComponent, "co-service-wizard-qa", never, {}, { "wizardFinished": "wizardFinished"; "skipWizard": "skipWizard"; }, never, never, false, never>;
|
|
7268
7275
|
}
|
|
@@ -13997,6 +14004,7 @@ declare class TransactionHeaderPaymentComponent extends TransactionHeaderBaseCom
|
|
|
13997
14004
|
toPay: number;
|
|
13998
14005
|
remainingToPay: number;
|
|
13999
14006
|
showRemainingPayment: boolean;
|
|
14007
|
+
needRefreshTransaction: boolean;
|
|
14000
14008
|
private _subs;
|
|
14001
14009
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _paymentConnectorService: TransactionPaymentConnectorService);
|
|
14002
14010
|
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.32",
|
|
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.1",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
21
|
"@colijnit/sharedcomponents": ">=261.20.0",
|
|
22
|
-
"@colijnit/transactionapi": ">=261.1.
|
|
22
|
+
"@colijnit/transactionapi": ">=261.1.19"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|
|
Binary file
|
|
Binary file
|