forked from layerfsd/Roomer-PMS-1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathobjRoomTypeRoomCount.pas
316 lines (243 loc) · 6.73 KB
/
objRoomTypeRoomCount.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
unit objRoomTypeRoomCount;
interface
uses
Windows,
Messages,
SysUtils,
Variants,
Classes,
Contnrs,
Dialogs,
NativeXML,
ADODB
, System.Generics.Collections
, uUtils
, cmpRoomerDataSet
, cmpRoomerConnection
;
TYPE
TRoomTypeItem = class
FRoomTypeCount : integer ;
FRoomType : string ;
FDescription : string ;
FGuestCount : integer ;
FRoomTypeGroup : string ;
function getRoomTypeCount : integer ;
function getRoomType : string ;
function getDescription : string ;
function getGuestCount : integer ;
function getRoomTypeGroup : string ;
procedure SetRoomTypeCount(Value : integer);
procedure SetRoomType(Value : string);
procedure SetDescription(Value : string);
procedure SetGuestCount(Value : integer);
procedure SetRoomTypeGroup(Value: string);
private
// **
public
constructor Create;
destructor Destroy; override;
property RoomTypeCount : integer read getRoomTypeCount write setRoomTypeCount ;
property RoomType : string read getRoomType write setRoomType ;
property Description : string read getDescription write setDescription ;
property GuestCount : integer read getGuestCount write setGuestCount ;
property RoomTypeGroup : string read getRoomTypeGroup write setRoomTypeGroup ;
end;
//////////////////////////////////////////////////////////////////////////////
// TRoomItem
//
//
//////////////////////////////////////////////////////////////////////////////
TRoomTypeList = TObjectList<TRoomTypeItem>;
//////////////////////////////////////////////////////////////////////////////////////
///
///
///
/////////////////////////////////////////////////////////////////////////////////////
TRoomTypeRoomCount = class
private
FXmlFileName : string;
FRoomCount : integer;
FRoomTypeList : TRoomTypeList;
FHotelcode : string ;
function getRoomTypeCount : integer;
procedure FillList;
procedure ClearList;
function GetNumberOfRoomsPerType(RoomType: String): Integer;
public
constructor Create(HotelCode : string);
destructor Destroy; override;
property XmlFileName : string read FXmlFileName write FXmlFileName;
property Hotelcode : string read FHotelcode write FHotelcode;
function FindRoomTypeCount(RoomType : string; StartAt : integer; caseSensitive : Boolean = false) : integer;
property RoomTypeList : TRoomTypeList read FRoomTypeList write FRoomTypeList;
property RoomTypeCount : integer read getRoomTypeCount;
end;
implementation
uses //uDSp
ug
,_glob
,hdata
,uD
,uSqlDefinitions
, uMain
, uAppGlobal
;
//////////////////////////////////////////////////////////////////////////////
// TRoomTypeItem
//
//
//////////////////////////////////////////////////////////////////////////////
constructor TRoomTypeItem.Create;
begin
//**
end;
destructor TRoomTypeItem.Destroy;
begin
inherited;
end;
function TRoomTypeItem.getRoomTypeCount : integer ;
begin
result := FRoomTypeCount
end;
function TRoomTypeItem.getRoomType : string ;
begin
result := FRoomType
end;
function TRoomTypeItem.getDescription : string ;
begin
result := FDescription
end;
function TRoomTypeItem.getGuestCount : integer ;
begin
result := FGuestCount
end;
function TRoomTypeItem.getRoomTypeGroup : string ;
begin
result := FRoomTypeGroup
end;
procedure TRoomTypeItem.SetRoomTypeCount(Value : integer);
begin
FRoomTypeCount := value
end;
procedure TRoomTypeItem.SetRoomType(Value: string);
begin
FRoomType := value
end;
procedure TRoomTypeItem.SetDescription(Value : string);
begin
FDescription := value
end;
procedure TRoomTypeItem.SetGuestCount(Value : integer);
begin
FGuestCount := value
end;
procedure TRoomTypeItem.SetRoomTypeGroup(Value: string);
begin
FRoomTypeGroup := value
end;
//////////////////////////////////////////////////////////////////////
//
//
//////////////////////////////////////////////////////////////////////
constructor TRoomTypeRoomCount.Create(HotelCode : string);
begin
inherited Create;
try
FRoomTypeList := TRoomTypeList.Create(True);
Except
//TODO Loga
end;
FHotelCode := HotelCode;
FRoomCount := 0;
try
FillList;
Except
// logga
end;
end;
destructor TRoomTypeRoomCount.Destroy;
begin
ClearList;
freeandnil(FRoomTypeList);
inherited;
end;
procedure TRoomTypeRoomCount.ClearList;
begin
FRoomTypeList.Clear;
end;
function TRoomTypeRoomCount.GetNumberOfRoomsPerType(RoomType : String) : Integer;
var Rset : TRoomerDataSet;
begin
result := 0;
Rset := glb.RoomsSet;
Rset.First;
while NOT Rset.Eof do
begin
if Rset['Active'] AND (Rset['RoomType'] = RoomType) then
inc(result);
Rset.Next;
end;
end;
procedure TRoomTypeRoomCount.FillList;
var
RoomTypeItem : TRoomTypeItem;
rSet : TRoomerDataSet;
TypeCount : Integer;
RoomType : string;
Description : string;
NumberGuests : integer;
RoomTypeGroup : string;
begin
ClearList;
if frmMain.OfflineMode then
exit;
Rset := glb.RoomTypesSet;
Rset.First;
While not rSet.Eof do
begin
if Rset['Active'] then
begin
TypeCount := GetNumberOfRoomsPerType(Rset.fieldbyname('RoomType').asString); // Rset.fieldbyname('TypeCount').asInteger;
RoomType := Rset.fieldbyname('RoomType').asString;
Description := Rset.fieldbyname('Description').asString;
NumberGuests := Rset.fieldbyname('NumberGuests').asInteger;
RoomTypeGroup := Rset.fieldbyname('RoomTypeGroup').asString;
RoomTypeItem := TRoomTypeItem.Create;
try
RoomTypeItem.SetRoomTypeCount(TypeCount);
RoomTypeItem.SetRoomType(RoomType);
RoomTypeItem.SetDescription(Description);
RoomTypeItem.SetGuestCount(NumberGuests);
RoomTypeItem.SetRoomTypeGroup(RoomTypeGroup);
FRoomTypeList.Add(RoomTypeItem);
except
// logga
end;
end;
rSet.Next;
end;
end;
function TRoomTypeRoomCount.FindRoomTypeCount(RoomType : string; StartAt : integer; caseSensitive : Boolean = false) : integer;
var
i : integer;
aType : string;
begin
result := 0;
RoomType := ansiUppercase(RoomType);
for i := 0 to FRoomTypeList.Count -1 do
begin
aType := FRoomTypeList[i].FRoomType;
aType := ansiUpperCase(aType);
if RoomType = aType then
begin
result := FRoomTypeList[i].RoomTypeCount;
Break;
end;
end;
end;
function TRoomTypeRoomCount.getRoomTypeCount: integer;
begin
result := FRoomTypeList.Count;
end;
end.