@hitsoft/abp.kadooglu 1.0.2 → 1.0.3

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.
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
2
2
  import { ActivatedRoute, Router } from '@angular/router';
3
3
  import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
4
4
  import { LocalizationService } from '@abp/ng.core';
5
+ import { Observable } from 'rxjs';
5
6
  import { HitEntryWeighingService } from '../../../hit-proxy/hit-entry-weighing/hit-entry-weighing.service';
6
7
  import { HitStockTransferService } from '../../../hit-proxy/hit-stock-transfer/hit-stock-transfer.service';
7
8
  import { StockTransfer } from '../../../hit-proxy/hit-stock-transfer/models';
@@ -19,16 +20,16 @@ export declare class HitEntryWeighingFormComponent implements OnInit {
19
20
  isUpdateMode: boolean;
20
21
  formPhase: 1 | 2;
21
22
  weighingMode: 'first' | 'last' | null;
22
- loadDocuments: () => import("rxjs").Observable<EntryWeighingDocument[]>;
23
- loadScales: () => import("rxjs").Observable<EntryWeighingScale[]>;
24
- loadTruckPlates: () => import("rxjs").Observable<EntryWeighingTruckPlate[]>;
25
- loadTrailerPlates: () => import("rxjs").Observable<EntryWeighingTrailerPlate[]>;
26
- loadDrivers: () => import("rxjs").Observable<EntryWeighingDriver[]>;
27
- loadAccounts: () => import("rxjs").Observable<EntryWeighingAccount[]>;
28
- loadStockItems: () => import("rxjs").Observable<EntryWeighingStockItem[]>;
29
- loadWaybills: () => import("rxjs").Observable<StockTransfer[]>;
30
- loadGates: () => import("rxjs").Observable<EntryWeighingGate[]>;
31
- loadVehicleTypes: () => import("rxjs").Observable<EntryWeighingVehicleType[]>;
23
+ loadDocuments: () => Observable<EntryWeighingDocument[]>;
24
+ loadScales: () => Observable<EntryWeighingScale[]>;
25
+ loadTruckPlates: () => Observable<EntryWeighingTruckPlate[]>;
26
+ loadTrailerPlates: () => Observable<EntryWeighingTrailerPlate[]>;
27
+ loadDrivers: () => Observable<EntryWeighingDriver[]>;
28
+ loadAccounts: () => Observable<EntryWeighingAccount[]>;
29
+ loadStockItems: () => Observable<EntryWeighingStockItem[]>;
30
+ loadWaybills: () => Observable<StockTransfer[]>;
31
+ loadGates: () => Observable<EntryWeighingGate[]>;
32
+ loadVehicleTypes: () => Observable<EntryWeighingVehicleType[]>;
32
33
  documentColumns: ({
33
34
  dataField: string;
34
35
  caption: string;
@@ -154,6 +155,7 @@ export declare class HitEntryWeighingFormComponent implements OnInit {
154
155
  lastOperatorCode: string;
155
156
  lastWeighingValue: number | null;
156
157
  currentScaleValue: number | null;
158
+ fixedScaleValue: number | null;
157
159
  isSaving: boolean;
158
160
  isWeighing: boolean;
159
161
  entryTypeTrtmYpilck: boolean;
@@ -194,6 +196,7 @@ export declare class HitEntryWeighingFormComponent implements OnInit {
194
196
  save(): void;
195
197
  doGoodsMovement(): void;
196
198
  doWeighing(): void;
199
+ sabitle(): void;
197
200
  goBack(): void;
198
201
  private validateTCKN;
199
202
  static ɵfac: i0.ɵɵFactoryDeclaration<HitEntryWeighingFormComponent, never>;
@@ -24,6 +24,10 @@ export declare class HitEntryWeighingListComponent implements OnInit {
24
24
  weighingTypes: Set<string>;
25
25
  disabledIdColumn: boolean;
26
26
  filterMode: 'all' | 'pending';
27
+ statusFilterDataSource: {
28
+ text: string;
29
+ value: string;
30
+ }[];
27
31
  constructor(service: HitEntryWeighingService, confirmation: ConfirmationService, router: Router, localizationService: LocalizationService, gateService: HitGateService);
28
32
  ngOnInit(): void;
29
33
  loadList(): void;
@@ -34,6 +38,7 @@ export declare class HitEntryWeighingListComponent implements OnInit {
34
38
  yeniKayit(): void;
35
39
  duzenle(row: EntryWeighing): void;
36
40
  tartimYap(row: EntryWeighing, mode: 'first' | 'last'): void;
41
+ ozetiGoruntule(row: EntryWeighing): void;
37
42
  sil(row: any): void;
38
43
  formatPlate(plate: string | null): string;
39
44
  formatEntryDateTime(dateStr: string | null, timeStr: string | null): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitsoft/abp.kadooglu",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=9",
6
6
  "@angular/core": ">=9",