-
Notifications
You must be signed in to change notification settings - Fork 0
/
Zlecenia.pas
90 lines (77 loc) · 2.15 KB
/
Zlecenia.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
unit Zlecenia;
interface
uses
System.Generics.Collections, VCLTee.GanttCh, Zlecenie, ZlecenieEtap, Etapy;
type
TZlecenia = class(TObjectList<TZlecenie>)
public
function Add(const zlecenie : TZlecenie) : Integer;
procedure PolaczKolejneEtapyZlecenWSerii(seria : TGanttSeries);
procedure Czysc;
function ZnajdzEtapZleceniaZGanttId(ganttId : Integer) : TZlecenieEtap;
function EtapyDoHarmonogramowania() : TEtapy;
function WszystkieNierozpoczeteEtapy() : TEtapy;
end;
implementation
function TZlecenia.Add(const zlecenie : TZlecenie) : Integer;
begin
Result := inherited Add(zlecenie);
end;
procedure TZlecenia.PolaczKolejneEtapyZlecenWSerii(seria: TGanttSeries);
var
zlecenie : TZlecenie;
begin
for zlecenie in self do
begin
zlecenie.PolaczKolejneEtapyZleceniaWSerii(seria);
end;
end;
procedure TZlecenia.Czysc;
var
zlecenie : TZlecenie;
begin
for zlecenie in self do
zlecenie.Czysc;
end;
function TZlecenia.ZnajdzEtapZleceniaZGanttId(ganttId: Integer) : TZlecenieEtap;
var
zlecenie : TZlecenie;
begin
Result := nil;
for zlecenie in self do
begin
Result := zlecenie.ZnajdzEtapZleceniaZGanttId(ganttId);
if not (Result = nil) then break;
end;
end;
function TZlecenia.EtapyDoHarmonogramowania() : TEtapy;
var
etapyDoHarmonogramowania : TEtapy;
zlecenie : TZlecenie;
zlecenieEtap : TZlecenieEtap;
begin
etapyDoHarmonogramowania := TEtapy.Create(False);
for zlecenie in self do
begin
zlecenieEtap := zlecenie.PierwszyNierozpoczetyEtap();
if not (zlecenieEtap = nil) then
etapyDoHarmonogramowania.Add(zlecenieEtap);
end;
Result := etapyDoHarmonogramowania;
end;
function TZlecenia.WszystkieNierozpoczeteEtapy() : TEtapy;
var
nierozpoczeteEtapy : TEtapy;
zlecenie : TZlecenie;
etapZlecenia : TZlecenieEtap;
begin
nierozpoczeteEtapy := TEtapy.Create(False);
for zlecenie in self do
begin
for etapZlecenia in zlecenie do
if not etapZlecenia.rozpoczety then
nierozpoczeteEtapy.Add(etapZlecenia);
end;
Result := nierozpoczeteEtapy;
end;
end.