@colijnit/transaction 12.1.103 → 12.1.105
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/bundles/colijnit-transaction.umd.js +2 -2
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.js +3 -3
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.module.js +5 -5
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.component.js +5 -5
- package/esm2015/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.js +4 -4
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.js +3 -3
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.js +1 -1
- package/esm2015/lib/service/transaction-mapping.service.js +41 -41
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +2 -2
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.d.ts +3 -3
- package/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.component.d.ts +2 -2
- package/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.d.ts +3 -3
- package/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.d.ts +2 -2
- package/lib/service/transaction-mapping.service.d.ts +9 -9
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from
|
|
2
|
-
import { ArticleExtended } from
|
|
3
|
-
import { TransactionService } from
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ArticleExtended } from '@colijnit/articleapi/build/model/article-extended.bo';
|
|
3
|
+
import { TransactionService } from '../../../../service/transaction.service';
|
|
4
4
|
import { CatalogService } from '@colijnit/catalog';
|
|
5
5
|
export declare class DialogCatalogComponent implements OnInit {
|
|
6
6
|
private _transactionService;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { InputTextComponent } from
|
|
2
|
-
import { TransactionInputFieldBaseComponent } from
|
|
1
|
+
import { InputTextComponent } from '@colijnit/corecomponents_v12';
|
|
2
|
+
import { TransactionInputFieldBaseComponent } from '../core/base/transaction-input-field-base.component';
|
|
3
3
|
export declare class TransactionHeaderDiscountTransactionTotalComponent extends TransactionInputFieldBaseComponent {
|
|
4
4
|
set child(content: any);
|
|
5
5
|
input: InputTextComponent;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Icon } from
|
|
3
|
-
import { TransactionBaseComponent } from
|
|
4
|
-
import { TransactionTypeCategory } from
|
|
2
|
+
import { Icon } from '../../../enum/icon.enum';
|
|
3
|
+
import { TransactionBaseComponent } from '../../core/base/transaction-base.component';
|
|
4
|
+
import { TransactionTypeCategory } from '../../../enum/transaction-type-category.enum';
|
|
5
5
|
export declare class TransactionGoodsAllocationLineComponent extends TransactionBaseComponent implements OnInit, OnDestroy {
|
|
6
6
|
readonly icons: typeof Icon;
|
|
7
7
|
readonly category: typeof TransactionTypeCategory;
|
package/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Icon } from
|
|
2
|
-
import { TransactionBaseComponent } from
|
|
1
|
+
import { Icon } from '../../enum/icon.enum';
|
|
2
|
+
import { TransactionBaseComponent } from '../core/base/transaction-base.component';
|
|
3
3
|
export declare class TransactionLineWarehouseButtonComponent extends TransactionBaseComponent {
|
|
4
4
|
readonly icons: typeof Icon;
|
|
5
5
|
readonly: boolean;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Type } from
|
|
2
|
-
import { TransactionKind } from
|
|
3
|
-
import { TransactionFilterBaseComponent } from
|
|
4
|
-
import { TransactionSearchGridBaseComponent } from
|
|
5
|
-
import { TransactionSearchTileBaseComponent } from
|
|
6
|
-
import { TransactionBarButton } from
|
|
7
|
-
import { TransactionTypeCategory } from
|
|
8
|
-
import { TransactionBaseComponent } from
|
|
9
|
-
import { TransactionGridBaseComponent } from
|
|
1
|
+
import { Type } from '@angular/core';
|
|
2
|
+
import { TransactionKind } from '@colijnit/transactionapi/build/enum/transaction-kind.enum';
|
|
3
|
+
import { TransactionFilterBaseComponent } from '../component/core/base/transaction-filter-base.component';
|
|
4
|
+
import { TransactionSearchGridBaseComponent } from '../component/core/base/transaction-search-grid-base.component';
|
|
5
|
+
import { TransactionSearchTileBaseComponent } from '../component/core/base/transaction-search-tile-base.component';
|
|
6
|
+
import { TransactionBarButton } from '../model/transaction-bar-button';
|
|
7
|
+
import { TransactionTypeCategory } from '../enum/transaction-type-category.enum';
|
|
8
|
+
import { TransactionBaseComponent } from '../component/core/base/transaction-base.component';
|
|
9
|
+
import { TransactionGridBaseComponent } from '../component/core/base/transaction-grid-base.component';
|
|
10
10
|
export declare class TransactionMappingService {
|
|
11
11
|
private readonly _buttonBarTransaction;
|
|
12
12
|
private readonly _quickAccessComponent;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "12.1.
|
|
3
|
+
"version": "12.1.105",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 12",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"@angular/common": ">=12.2.0",
|
|
11
11
|
"@angular/core": ">=12.2.0",
|
|
12
12
|
"@colijnit/articleapi": ">=1.0.16",
|
|
13
|
-
"@colijnit/catalog": ">=12.1.
|
|
13
|
+
"@colijnit/catalog": ">=12.1.27",
|
|
14
14
|
"@colijnit/corecomponents": ">=1.12.0",
|
|
15
|
-
"@colijnit/corecomponents_v12": ">=12.0.
|
|
15
|
+
"@colijnit/corecomponents_v12": ">=12.0.102",
|
|
16
16
|
"@colijnit/ioneconnector": ">=2.1.10",
|
|
17
17
|
"@colijnit/mainapi": ">=1.0.10",
|
|
18
18
|
"@colijnit/relationapi": ">=1.0.5",
|