@colijnit/transaction 261.20.31 → 262.1.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/fesm2022/colijnit-transaction.mjs +702 -615
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +17 -2
- package/lib/component/returns/return-wizard/return-lines-wizard/style/_layout.scss +5 -1
- package/lib/component/transaction-line-interbranch-receive-goods/style/_layout.scss +78 -78
- package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
- package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
- package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +27 -27
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +73 -73
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +6 -6
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +4 -4
- package/package.json +11 -11
- package/colijnit-transaction-261.20.28.tgz +0 -0
- package/colijnit-transaction-261.20.29.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -295,6 +295,7 @@ import { AddSalesReturnLineRequest } from '@colijnit/transactionapi/build/model/
|
|
|
295
295
|
import { DiscountCode } from '@colijnit/transactionapi/build/model/discount-code.bo';
|
|
296
296
|
import { SetTransactionDiscountsRequest } from '@colijnit/transactionapi/build/model/set-transaction-discounts-request';
|
|
297
297
|
import { ChangeLineDiscountRequest } from '@colijnit/transactionapi/build/model/change-line-discount-request';
|
|
298
|
+
import { SuggestedReceiptLocation } from '@colijnit/transactionapi/build/model/suggested-receipt-location';
|
|
298
299
|
import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
|
|
299
300
|
import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
|
|
300
301
|
import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
@@ -1208,6 +1209,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1208
1209
|
getGoodsReceiptHistory(transId: number, lineNr: number): Promise<GoodsReceiptHistory>;
|
|
1209
1210
|
receiveGoodsForPurchaseOrder(request: ReceiveGoodsForOrderRequest): Promise<TransactionInfoResponse>;
|
|
1210
1211
|
receiveGoodsForInterbranchOrder(request: ReceiveGoodsForOrderRequest): Promise<TransactionInfoResponse>;
|
|
1212
|
+
getSuggestedReceiptLocationsByTransId(transId: number): Promise<SuggestedReceiptLocation[]>;
|
|
1211
1213
|
printPackageSticker(printRequest: PrintPackageStickerRequest): Promise<void>;
|
|
1212
1214
|
pdfPackageSticker(pdfRequest: PdfPackageStickerRequest, localPrint: boolean): Promise<void>;
|
|
1213
1215
|
printReservationSticker(printRequest: PrintReservationStickerRequest): Promise<void>;
|
|
@@ -1699,6 +1701,7 @@ declare class TransactionConnectorService {
|
|
|
1699
1701
|
receiveGoodsForPurchaseOrder(request: ReceiveGoodsForOrderRequest): Promise<TransactionInfoResponse>;
|
|
1700
1702
|
receiveGoodsForPurchaseOrderCorrection(request: ReceiveGoodsForPurchaseOrderCorrectionRequest): Promise<TransactionInfoResponse>;
|
|
1701
1703
|
receiveGoodsForInterBranchOrder(request: ReceiveGoodsForOrderRequest): Promise<TransactionInfoResponse>;
|
|
1704
|
+
getSuggestedReceiptLocationsByTransId(transId: number): Promise<SuggestedReceiptLocation[]>;
|
|
1702
1705
|
printPackageSticker(printRequest: PrintPackageStickerRequest): Promise<void>;
|
|
1703
1706
|
pdfPackageSticker(pdfRequest: PdfPackageStickerRequest, localPrint: boolean): Promise<void>;
|
|
1704
1707
|
printReservationSticker(printRequest: PrintReservationStickerRequest): Promise<void>;
|
|
@@ -2332,6 +2335,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2332
2335
|
prepareReceiveGoodsWithDataTerminalInternalParam(): void;
|
|
2333
2336
|
preparePrintColliStickerDefault(): void;
|
|
2334
2337
|
getInternalParameter(param: InternalParam): Promise<boolean>;
|
|
2338
|
+
getCashLimitValue(param: InternalParam): Promise<number>;
|
|
2335
2339
|
getInternalDefault(param: InternalDefault): Promise<string>;
|
|
2336
2340
|
checkTransactionValidity(): Promise<boolean>;
|
|
2337
2341
|
createNewRelation(): void;
|
|
@@ -2551,6 +2555,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2551
2555
|
receiveGoodsForPurchaseOrder(transactionId: number, version: number, request: ReceiveGoodsForOrderRequest): Promise<boolean>;
|
|
2552
2556
|
receiveGoodsForPurchaseOrderCorrection(transactionId: number, version: number, request: ReceiveGoodsForPurchaseOrderCorrectionRequest): Promise<boolean>;
|
|
2553
2557
|
receiveGoodsForInterBranchOrder(transactionId: number, version: number, request: ReceiveGoodsForOrderRequest): Promise<boolean>;
|
|
2558
|
+
getSuggestedReceiptLocationsByTransId(transId: number): Promise<SuggestedReceiptLocation[]>;
|
|
2554
2559
|
printPackageSticker(printRequest: PrintPackageStickerRequest): Promise<void>;
|
|
2555
2560
|
pdfPackageSticker(pdfRequest: PdfPackageStickerRequest, localPrint?: boolean): Promise<void>;
|
|
2556
2561
|
printReservationSticker(printRequest: PrintReservationStickerRequest): Promise<void>;
|
|
@@ -4642,6 +4647,8 @@ declare class TransactionLineService {
|
|
|
4642
4647
|
lineQuantityPurchaseConfirmed: number;
|
|
4643
4648
|
lineQuantityTransportNotification: number;
|
|
4644
4649
|
lineQuantityInvoiceControl: number;
|
|
4650
|
+
lineQuantitySignedOff: number;
|
|
4651
|
+
lineQuantityReturnRequested: number;
|
|
4645
4652
|
decimals: number;
|
|
4646
4653
|
isText: boolean;
|
|
4647
4654
|
isArticle: boolean;
|
|
@@ -7241,6 +7248,7 @@ declare class QuestionAnswerComponent {
|
|
|
7241
7248
|
onChangeAnswer(changedAnswer: ServiceWizardAnswer): void;
|
|
7242
7249
|
onQaResultChange(newVResult: QaResult): void;
|
|
7243
7250
|
onWizardFinished(wizardFinished: boolean): void;
|
|
7251
|
+
resetResult(): void;
|
|
7244
7252
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionAnswerComponent, never>;
|
|
7245
7253
|
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
7254
|
}
|
|
@@ -7254,6 +7262,7 @@ interface QaResult {
|
|
|
7254
7262
|
|
|
7255
7263
|
declare class ServiceWizardQaComponent implements OnInit {
|
|
7256
7264
|
transactionService: TransactionService;
|
|
7265
|
+
qaComponent: QuestionAnswerComponent;
|
|
7257
7266
|
wizardFinished: EventEmitter<string>;
|
|
7258
7267
|
skipWizard: EventEmitter<void>;
|
|
7259
7268
|
serviceWizardQuestion: ServiceWizardQuestion;
|
|
@@ -7262,7 +7271,9 @@ declare class ServiceWizardQaComponent implements OnInit {
|
|
|
7262
7271
|
ngOnInit(): Promise<void>;
|
|
7263
7272
|
onQaResultChange(newVResult: QaResult): void;
|
|
7264
7273
|
onWizardFinished(wizardFinished: boolean): void;
|
|
7265
|
-
|
|
7274
|
+
resetWizard(): void;
|
|
7275
|
+
private getServiceWizard;
|
|
7276
|
+
private buildQAString;
|
|
7266
7277
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceWizardQaComponent, never>;
|
|
7267
7278
|
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceWizardQaComponent, "co-service-wizard-qa", never, {}, { "wizardFinished": "wizardFinished"; "skipWizard": "skipWizard"; }, never, never, false, never>;
|
|
7268
7279
|
}
|
|
@@ -13997,6 +14008,7 @@ declare class TransactionHeaderPaymentComponent extends TransactionHeaderBaseCom
|
|
|
13997
14008
|
toPay: number;
|
|
13998
14009
|
remainingToPay: number;
|
|
13999
14010
|
showRemainingPayment: boolean;
|
|
14011
|
+
needRefreshTransaction: boolean;
|
|
14000
14012
|
private _subs;
|
|
14001
14013
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _paymentConnectorService: TransactionPaymentConnectorService);
|
|
14002
14014
|
ngOnInit(): void;
|
|
@@ -16362,18 +16374,21 @@ declare class TransactionLineActivitiesComponent implements OnInit {
|
|
|
16362
16374
|
declare class TransactionLineActivitiesContactMomentsComponent implements OnInit, OnDestroy {
|
|
16363
16375
|
transactionService: TransactionService;
|
|
16364
16376
|
transactionEventService: TransactionEventService;
|
|
16377
|
+
private _changeDetector;
|
|
16365
16378
|
contactMoments: ContactMoment[];
|
|
16366
16379
|
addingContactMoment: boolean;
|
|
16367
16380
|
subs: Subscription[];
|
|
16381
|
+
contactMoment: ContactMoment;
|
|
16368
16382
|
table: TableName;
|
|
16369
16383
|
key: string;
|
|
16370
16384
|
showClass(): boolean;
|
|
16371
|
-
constructor(transactionService: TransactionService, transactionEventService: TransactionEventService);
|
|
16385
|
+
constructor(transactionService: TransactionService, transactionEventService: TransactionEventService, _changeDetector: ChangeDetectorRef);
|
|
16372
16386
|
ngOnInit(): void;
|
|
16373
16387
|
ngOnDestroy(): void;
|
|
16374
16388
|
handleDialogClose(event: void): void;
|
|
16375
16389
|
handleSaveContactMoment(contactMoment: ContactMoment): void;
|
|
16376
16390
|
makeRequest(): MergeContactMomentsRequest;
|
|
16391
|
+
handleEditContactMoment(contactMoment: ContactMoment): void;
|
|
16377
16392
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineActivitiesContactMomentsComponent, never>;
|
|
16378
16393
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineActivitiesContactMomentsComponent, "co-transaction-line-activities-contact-moments", never, { "table": { "alias": "table"; "required": false; }; "key": { "alias": "key"; "required": false; }; }, {}, never, never, true, never>;
|
|
16379
16394
|
}
|
|
@@ -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;
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
@include export-module('co-transaction-line-interbranch-receive-goods-layout') {
|
|
2
|
-
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
-
.columns-wrapper {
|
|
4
|
-
display: flex;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.co-input-number-picker {
|
|
8
|
-
width: 140px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.details-column {
|
|
12
|
-
width: 45%;
|
|
13
|
-
display: flex;
|
|
14
|
-
flex-direction: column;
|
|
15
|
-
|
|
16
|
-
.transaction-line-totals-amount {
|
|
17
|
-
margin: 5px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//.amount-number-picker {
|
|
21
|
-
// height: 40px;
|
|
22
|
-
// margin: 5px;
|
|
23
|
-
//}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.header-wrapper {
|
|
27
|
-
display: flex;
|
|
28
|
-
align-items: center;
|
|
29
|
-
justify-content: space-between;
|
|
30
|
-
margin: $tp-co-transaction-line-receive-goods-title-margin;
|
|
31
|
-
|
|
32
|
-
.details-header {
|
|
33
|
-
font-size: $tp-co-transaction-line-receive-goods-title-font-size;
|
|
34
|
-
font-weight: bold;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.divider-wrapper {
|
|
39
|
-
display: flex;
|
|
40
|
-
width: 10%;
|
|
41
|
-
justify-content: center;
|
|
42
|
-
visibility: hidden;
|
|
43
|
-
|
|
44
|
-
.divider {
|
|
45
|
-
border-left: 1px solid;
|
|
46
|
-
border-color: $tp-color-border;
|
|
47
|
-
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.details-input {
|
|
52
|
-
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.location-wrapper {
|
|
56
|
-
position: relative;
|
|
57
|
-
|
|
58
|
-
.co-transaction-button {
|
|
59
|
-
width: auto;
|
|
60
|
-
margin: 5px;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
.disabled {
|
|
64
|
-
cursor: default;
|
|
65
|
-
opacity: 0.6;
|
|
66
|
-
}
|
|
67
|
-
.clickable {
|
|
68
|
-
cursor: pointer;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.warehouse-buttons {
|
|
72
|
-
width: 100%;
|
|
73
|
-
.co-transaction-button {
|
|
74
|
-
width: 100%;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
@include export-module('co-transaction-line-interbranch-receive-goods-layout') {
|
|
2
|
+
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
+
.columns-wrapper {
|
|
4
|
+
display: flex;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.co-input-number-picker {
|
|
8
|
+
width: 140px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.details-column {
|
|
12
|
+
width: 45%;
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
|
|
16
|
+
.transaction-line-totals-amount {
|
|
17
|
+
margin: 5px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
//.amount-number-picker {
|
|
21
|
+
// height: 40px;
|
|
22
|
+
// margin: 5px;
|
|
23
|
+
//}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.header-wrapper {
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: space-between;
|
|
30
|
+
margin: $tp-co-transaction-line-receive-goods-title-margin;
|
|
31
|
+
|
|
32
|
+
.details-header {
|
|
33
|
+
font-size: $tp-co-transaction-line-receive-goods-title-font-size;
|
|
34
|
+
font-weight: bold;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.divider-wrapper {
|
|
39
|
+
display: flex;
|
|
40
|
+
width: 10%;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
visibility: hidden;
|
|
43
|
+
|
|
44
|
+
.divider {
|
|
45
|
+
border-left: 1px solid;
|
|
46
|
+
border-color: $tp-color-border;
|
|
47
|
+
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.details-input {
|
|
52
|
+
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.location-wrapper {
|
|
56
|
+
position: relative;
|
|
57
|
+
|
|
58
|
+
.co-transaction-button {
|
|
59
|
+
width: auto;
|
|
60
|
+
margin: 5px;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
.disabled {
|
|
64
|
+
cursor: default;
|
|
65
|
+
opacity: 0.6;
|
|
66
|
+
}
|
|
67
|
+
.clickable {
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.warehouse-buttons {
|
|
72
|
+
width: 100%;
|
|
73
|
+
.co-transaction-button {
|
|
74
|
+
width: 100%;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
$tp-co-transaction-line-receive-goods-title-font-size: 12px !default;
|
|
2
|
-
$tp-co-transaction-line-receive-goods-title-margin: 0 0 10px 5px !default;
|
|
1
|
+
$tp-co-transaction-line-receive-goods-title-font-size: 12px !default;
|
|
2
|
+
$tp-co-transaction-line-receive-goods-title-margin: 0 0 10px 5px !default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@include export-module('co-transaction-line-interbranch-receive-goods-theme') {
|
|
2
|
-
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
-
}
|
|
4
|
-
}
|
|
1
|
+
@include export-module('co-transaction-line-interbranch-receive-goods-theme') {
|
|
2
|
+
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
+
}
|
|
4
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
@import "./_material-definition";
|
|
3
|
-
@import "./_layout";
|
|
4
|
-
@import "./_theme";
|
|
1
|
+
@import "../../../style/mixin";
|
|
2
|
+
@import "./_material-definition";
|
|
3
|
+
@import "./_layout";
|
|
4
|
+
@import "./_theme";
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
@use "sass:math";
|
|
2
|
-
@import "../../../../style/mixin";
|
|
3
|
-
|
|
4
|
-
@include export-module('co-transaction-quick-access-interbranch-order-purchase-layout') {
|
|
5
|
-
.co-transaction-quick-access-interbranch-order-purchase {
|
|
6
|
-
.select-all-wrapper {
|
|
7
|
-
display: flex;
|
|
8
|
-
align-items: center;
|
|
9
|
-
}
|
|
10
|
-
.button {
|
|
11
|
-
padding: 0.25em;
|
|
12
|
-
background-color: white;
|
|
13
|
-
border: 1px solid $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
14
|
-
cursor: pointer;
|
|
15
|
-
co-icon {
|
|
16
|
-
fill: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
17
|
-
}
|
|
18
|
-
&.selected {
|
|
19
|
-
background-color: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
20
|
-
co-icon {
|
|
21
|
-
fill: white;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
}
|
|
1
|
+
@use "sass:math";
|
|
2
|
+
@import "../../../../style/mixin";
|
|
3
|
+
|
|
4
|
+
@include export-module('co-transaction-quick-access-interbranch-order-purchase-layout') {
|
|
5
|
+
.co-transaction-quick-access-interbranch-order-purchase {
|
|
6
|
+
.select-all-wrapper {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
}
|
|
10
|
+
.button {
|
|
11
|
+
padding: 0.25em;
|
|
12
|
+
background-color: white;
|
|
13
|
+
border: 1px solid $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
co-icon {
|
|
16
|
+
fill: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
17
|
+
}
|
|
18
|
+
&.selected {
|
|
19
|
+
background-color: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
20
|
+
co-icon {
|
|
21
|
+
fill: white;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
$tp-transaction-quick-access-planning-lsp-mode-button: #1A73E8;
|
|
1
|
+
$tp-transaction-quick-access-planning-lsp-mode-button: #1A73E8;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@include export-module('co-transaction-quick-access-interbranch-order-purchase-theme') {
|
|
2
|
-
.co-transaction-quick-access-interbranch-order-purchase {
|
|
3
|
-
}
|
|
4
|
-
}
|
|
1
|
+
@include export-module('co-transaction-quick-access-interbranch-order-purchase-theme') {
|
|
2
|
+
.co-transaction-quick-access-interbranch-order-purchase {
|
|
3
|
+
}
|
|
4
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import "../../../../style/mixin";
|
|
2
|
-
@import "./_material-definition";
|
|
3
|
-
@import "./_layout";
|
|
4
|
-
@import "./_theme";
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
@import "./_material-definition";
|
|
3
|
+
@import "./_layout";
|
|
4
|
+
@import "./_theme";
|
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
@import "../../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('cc-transaction-quick-access-received-goods-layout') {
|
|
4
|
-
.co-transaction-quick-access-received-goods {
|
|
5
|
-
|
|
6
|
-
.quick-access-wrapper {
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-direction: row;
|
|
9
|
-
column-gap: 10px;
|
|
10
|
-
align-items: start;
|
|
11
|
-
|
|
12
|
-
.sub-section-input {
|
|
13
|
-
display: flex;
|
|
14
|
-
flex-direction: column;
|
|
15
|
-
gap: 10px;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.sub-section {
|
|
19
|
-
display: flex;
|
|
20
|
-
flex-direction: row;
|
|
21
|
-
column-gap: 10px;
|
|
22
|
-
.checkbox-wrapper {
|
|
23
|
-
display: flex;
|
|
24
|
-
flex-direction: row;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.dots-wrapper {
|
|
28
|
-
display: flex;
|
|
29
|
-
transform: scale(0.7);
|
|
30
|
-
|
|
31
|
-
.dot {
|
|
32
|
-
width: 8px;
|
|
33
|
-
height: 8px;
|
|
34
|
-
background-color: black;
|
|
35
|
-
border-radius: 16px;
|
|
36
|
-
transform: scale(0.3);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.co-input-date {
|
|
41
|
-
min-width: 170px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.co-input-text {
|
|
45
|
-
min-width: 100px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.button-wrapper {
|
|
49
|
-
background: $tp-default-background-accent;
|
|
50
|
-
border-radius: $tp-default-border-radius;
|
|
51
|
-
padding: 5px;
|
|
52
|
-
display: flex;
|
|
53
|
-
flex-direction: column;
|
|
54
|
-
align-items: center;
|
|
55
|
-
justify-content: center;
|
|
56
|
-
cursor: pointer;
|
|
57
|
-
width: 68px;
|
|
58
|
-
height: 46px;
|
|
59
|
-
|
|
60
|
-
.button-icon {
|
|
61
|
-
height: 20px;
|
|
62
|
-
width: 20px;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
span {
|
|
66
|
-
font-size: 10px;
|
|
67
|
-
margin-top: 3px;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('cc-transaction-quick-access-received-goods-layout') {
|
|
4
|
+
.co-transaction-quick-access-received-goods {
|
|
5
|
+
|
|
6
|
+
.quick-access-wrapper {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: row;
|
|
9
|
+
column-gap: 10px;
|
|
10
|
+
align-items: start;
|
|
11
|
+
|
|
12
|
+
.sub-section-input {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
gap: 10px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.sub-section {
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-direction: row;
|
|
21
|
+
column-gap: 10px;
|
|
22
|
+
.checkbox-wrapper {
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: row;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.dots-wrapper {
|
|
28
|
+
display: flex;
|
|
29
|
+
transform: scale(0.7);
|
|
30
|
+
|
|
31
|
+
.dot {
|
|
32
|
+
width: 8px;
|
|
33
|
+
height: 8px;
|
|
34
|
+
background-color: black;
|
|
35
|
+
border-radius: 16px;
|
|
36
|
+
transform: scale(0.3);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.co-input-date {
|
|
41
|
+
min-width: 170px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.co-input-text {
|
|
45
|
+
min-width: 100px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.button-wrapper {
|
|
49
|
+
background: $tp-default-background-accent;
|
|
50
|
+
border-radius: $tp-default-border-radius;
|
|
51
|
+
padding: 5px;
|
|
52
|
+
display: flex;
|
|
53
|
+
flex-direction: column;
|
|
54
|
+
align-items: center;
|
|
55
|
+
justify-content: center;
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
width: 68px;
|
|
58
|
+
height: 46px;
|
|
59
|
+
|
|
60
|
+
.button-icon {
|
|
61
|
+
height: 20px;
|
|
62
|
+
width: 20px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
span {
|
|
66
|
+
font-size: 10px;
|
|
67
|
+
margin-top: 3px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@import "../../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('cc-transaction-quick-access-received-goods-theme') {
|
|
4
|
-
.co-transaction-quick-access-received-goods {
|
|
5
|
-
}
|
|
6
|
-
}
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('cc-transaction-quick-access-received-goods-theme') {
|
|
4
|
+
.co-transaction-quick-access-received-goods {
|
|
5
|
+
}
|
|
6
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import "../../../../style/mixin";
|
|
2
|
-
@import "./_material-definition";
|
|
3
|
-
@import "./_layout";
|
|
4
|
-
@import "./_theme";
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
@import "./_material-definition";
|
|
3
|
+
@import "./_layout";
|
|
4
|
+
@import "./_theme";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "262.1.1",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"@angular/common": ">=20.3.16",
|
|
11
11
|
"@angular/core": ">=20.3.16",
|
|
12
|
-
"@colijnit/articleapi": ">=
|
|
13
|
-
"@colijnit/catalog": ">=
|
|
14
|
-
"@colijnit/corecomponents_v12": ">=
|
|
15
|
-
"@colijnit/ioneconnector": ">=
|
|
16
|
-
"@colijnit/mainapi": ">=
|
|
17
|
-
"@colijnit/product": ">=
|
|
18
|
-
"@colijnit/relation": ">=
|
|
19
|
-
"@colijnit/relationapi": ">=
|
|
12
|
+
"@colijnit/articleapi": ">=262.1.0",
|
|
13
|
+
"@colijnit/catalog": ">=262.1.0",
|
|
14
|
+
"@colijnit/corecomponents_v12": ">=262.1.0",
|
|
15
|
+
"@colijnit/ioneconnector": ">=262.1.0",
|
|
16
|
+
"@colijnit/mainapi": ">=262.1.1",
|
|
17
|
+
"@colijnit/product": ">=262.1.0",
|
|
18
|
+
"@colijnit/relation": ">=262.1.0",
|
|
19
|
+
"@colijnit/relationapi": ">=262.1.0",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
|
-
"@colijnit/sharedcomponents": ">=
|
|
22
|
-
"@colijnit/transactionapi": ">=
|
|
21
|
+
"@colijnit/sharedcomponents": ">=262.1.0",
|
|
22
|
+
"@colijnit/transactionapi": ">=262.1.1"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|
|
Binary file
|
|
Binary file
|