@hitsoft/abp.kadooglu 1.0.12 → 1.0.13
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/README.md +24 -24
- package/esm2020/config/enums/index.mjs +1 -1
- package/esm2020/config/providers/index.mjs +1 -1
- package/esm2020/config/public-api.mjs +1 -1
- package/esm2020/lib/components/kadooglu.component.mjs +1 -1
- package/esm2020/lib/hit-components/hit-entry-weighing/hit-entry-weighing-list/hit-entry-weighing-list.component.mjs +3 -3
- package/esm2020/lib/hit-components/hit-factory-entry/hit-factory-entry-form/hit-factory-entry-form.component.mjs +23 -219
- package/esm2020/lib/hit-components/hit-factory-entry/hit-factory-entry-list/hit-factory-entry-list.component.mjs +3 -3
- package/esm2020/lib/hit-proxy/hit-entry-weighing/models.mjs +1 -1
- package/esm2020/lib/hit-proxy/hit-factory-entry/models.mjs +1 -1
- package/esm2020/lib/services/kadooglu.service.mjs +1 -1
- package/esm2020/lib/shared/hit-modal/hit-modal.component.mjs +3 -3
- package/fesm2015/hitsoft-abp.kadooglu.mjs +69 -266
- package/fesm2015/hitsoft-abp.kadooglu.mjs.map +1 -1
- package/fesm2020/hitsoft-abp.kadooglu.mjs +67 -261
- package/fesm2020/hitsoft-abp.kadooglu.mjs.map +1 -1
- package/lib/hit-components/hit-factory-entry/hit-factory-entry-form/hit-factory-entry-form.component.d.ts +1 -22
- package/lib/hit-proxy/hit-entry-weighing/models.d.ts +4 -0
- package/lib/hit-proxy/hit-factory-entry/models.d.ts +4 -0
- package/package.json +1 -1
|
@@ -13,9 +13,6 @@ import { HitBusinessPartnerService } from '../../../hit-proxy/hit-business-partn
|
|
|
13
13
|
import { BusinessPartner } from '../../../hit-proxy/hit-business-partner/models';
|
|
14
14
|
import { HitUserGateService } from '../../../hit-proxy/hit-user-gate/hit-user-gate.service';
|
|
15
15
|
import { Gate } from '../../../hit-proxy/hit-gate/models';
|
|
16
|
-
import { HitStockTransferService } from '../../../hit-proxy/hit-stock-transfer/hit-stock-transfer.service';
|
|
17
|
-
import { HitPurchaseDeliveryNoteService } from '../../../hit-proxy/hit-purchase-delivery-note/hit-purchase-delivery-note.service';
|
|
18
|
-
import { LookupTab } from '../../../shared/hit-modal/hit-modal.component';
|
|
19
16
|
import * as i0 from "@angular/core";
|
|
20
17
|
export declare class HitFactoryEntryFormComponent implements OnInit, OnChanges {
|
|
21
18
|
private confirmation;
|
|
@@ -26,8 +23,6 @@ export declare class HitFactoryEntryFormComponent implements OnInit, OnChanges {
|
|
|
26
23
|
private businessPartnerService;
|
|
27
24
|
private userGateService;
|
|
28
25
|
private localizationService;
|
|
29
|
-
private stockTransferService;
|
|
30
|
-
private purchaseDeliveryNoteService;
|
|
31
26
|
visible: boolean;
|
|
32
27
|
visibleChange: EventEmitter<boolean>;
|
|
33
28
|
record: FactoryEntry | null;
|
|
@@ -101,26 +96,12 @@ export declare class HitFactoryEntryFormComponent implements OnInit, OnChanges {
|
|
|
101
96
|
newCarrierTel: string;
|
|
102
97
|
isTcCitizen: boolean;
|
|
103
98
|
isLoading: boolean;
|
|
104
|
-
|
|
105
|
-
waybillNo: string;
|
|
106
|
-
waybillDocEntry: number | null;
|
|
107
|
-
waybillIrsaliyeNo: string;
|
|
108
|
-
waybillAutoPlate: string;
|
|
109
|
-
waybillAutoDorsePlate: string;
|
|
110
|
-
waybillAutoTcNo: string;
|
|
111
|
-
waybillAutoDriverFirstname: string;
|
|
112
|
-
waybillAutoDriverLastname: string;
|
|
113
|
-
waybillAutoDriverName: string;
|
|
114
|
-
waybillAutoCardCode: string;
|
|
115
|
-
waybillSourceType: 'stockTransfer' | 'purchaseDelivery' | null;
|
|
116
|
-
isWaybillLoading: boolean;
|
|
117
|
-
constructor(confirmation: ConfirmationService, service: HitFactoryEntryService, carrierPersonService: HitCarrierPersonService, plateService: HitPlateService, vehicleTypeService: HitVehicleTypeService, businessPartnerService: HitBusinessPartnerService, userGateService: HitUserGateService, localizationService: LocalizationService, stockTransferService: HitStockTransferService, purchaseDeliveryNoteService: HitPurchaseDeliveryNoteService);
|
|
99
|
+
constructor(confirmation: ConfirmationService, service: HitFactoryEntryService, carrierPersonService: HitCarrierPersonService, plateService: HitPlateService, vehicleTypeService: HitVehicleTypeService, businessPartnerService: HitBusinessPartnerService, userGateService: HitUserGateService, localizationService: LocalizationService);
|
|
118
100
|
ngOnInit(): void;
|
|
119
101
|
ngOnChanges(changes: SimpleChanges): void;
|
|
120
102
|
private initForm;
|
|
121
103
|
private buildDateTime;
|
|
122
104
|
onTypeSelected(e: VehicleType): void;
|
|
123
|
-
get isGoodsType(): boolean;
|
|
124
105
|
get showExtraFields(): boolean;
|
|
125
106
|
onPlateSelected(e: Plate): void;
|
|
126
107
|
onTrailerPlateSelected(e: Plate): void;
|
|
@@ -130,8 +111,6 @@ export declare class HitFactoryEntryFormComponent implements OnInit, OnChanges {
|
|
|
130
111
|
formatPlate(value: string): string;
|
|
131
112
|
onCarrierLookupSelected(e: CarrierPerson): void;
|
|
132
113
|
onBusinessPartnerSelected(e: BusinessPartner): void;
|
|
133
|
-
onWaybillSelected(e: any): void;
|
|
134
|
-
private applyWaybillAutoFill;
|
|
135
114
|
queryCarrierByTcNo(): void;
|
|
136
115
|
save(): void;
|
|
137
116
|
onModalVisibleChange(val: boolean): void;
|
|
@@ -72,7 +72,11 @@ export interface EntryWeighing {
|
|
|
72
72
|
u_CardCode: string;
|
|
73
73
|
u_ScaleCode: string;
|
|
74
74
|
u_FirstWeighing: number | null;
|
|
75
|
+
u_FWDate: string | null;
|
|
76
|
+
u_FWTime: string | null;
|
|
75
77
|
u_LastWeighing: number | null;
|
|
78
|
+
u_LWDate: string | null;
|
|
79
|
+
u_LWTime: string | null;
|
|
76
80
|
u_Net: number | null;
|
|
77
81
|
u_ItemCode: string;
|
|
78
82
|
u_DespatchAdviceNo: string;
|
|
@@ -9,6 +9,10 @@ export interface FactoryEntry {
|
|
|
9
9
|
u_EntryTime?: number;
|
|
10
10
|
u_ExitDate?: string;
|
|
11
11
|
u_ExitTime?: number;
|
|
12
|
+
u_FWDate?: string;
|
|
13
|
+
u_FWTime?: number;
|
|
14
|
+
u_LWDate?: string;
|
|
15
|
+
u_LWTime?: number;
|
|
12
16
|
u_Plate?: string;
|
|
13
17
|
u_DorsePlate?: string;
|
|
14
18
|
u_EntryType?: string;
|