-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUPenitAktaArch.pas
159 lines (131 loc) · 4.52 KB
/
UPenitAktaArch.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
unit UPenitAktaArch;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
StdCtrls, Buttons, datamodule, LR_Class;
type
{ TPenitAktaArch }
TPenitAktaArch = class(TForm)
BitBtn1: TBitBtn;
BitBtn8: TBitBtn;
edROKP: TEdit;
edROKT: TEdit;
edSygnatura: TEdit;
edNazwiskoImie: TEdit;
frReport1: TfrReport;
Image1: TImage;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
moTresc: TMemo;
moAdresat: TMemo;
moNaglowek: TMemo;
Panel1: TPanel;
procedure BitBtn1Click(Sender: TObject);
procedure BitBtn8Click(Sender: TObject);
private
public
Procedure SetIDO(ido: integer);
end;
var
PenitAktaArch: TPenitAktaArch;
implementation
uses UAdresyJednostek;
{$R *.frm}
{ TPenitAktaArch }
procedure TPenitAktaArch.SetIDO(ido: integer);
var ZQPom: TZQueryPom;
begin
ZQPom:= TZQueryPom.Create(Self);
ZQPom.SQL.Text:='SELECT Nazwisko, Imie, Ojciec, Urodz, Przyj FROM osadzeni WHERE IDO = :ido';
ZQPom.ParamByName('ido').AsInteger:= ido;
ZQPom.Open;
edNazwiskoImie.Text:= ZQPom.FieldByName('Nazwisko').AsString + ' ' + ZQPom.FieldByName('Imie').AsString + ' o.'+ZQPom.FieldByName('Ojciec').AsString
+ ' ur. '+ ZQPom.FieldByName('Urodz').AsString+' roku,';
edROKT.Text:= ZQPom.FieldByName('Przyj').AsString;
ZQPom.Close;
ZQPom.SQL.Text:='SELECT ZnakPisma FROM uprawnienia WHERE user = :user';
ZQPom.ParamByName('user').AsString:= DM.login;
ZQPom.Open;
edSygnatura.Text:= ZQPom.FieldByName('ZnakPisma').AsString;
ZQPom.Close;
FreeAndNil(ZQPom);
end;
procedure TPenitAktaArch.BitBtn8Click(Sender: TObject);
var ZQPom: TZQueryPom;
str, str_i: string;
adresat: TStringList;
Function GetTresc: string;
var s: string;
i: integer;
begin
s:= moTresc.Text;
i:= Pos('[ROKP]',s);
if i>0 then begin
Delete(s, i, 6);
Insert(edROKP.Text, s, i);
end;
i:= Pos('[ROKT]',s);
if i>0 then begin
Delete(s, i, 6);
Insert(edROKT.Text, s, i);
end;
Result:= s;
end;
begin
if edROKP.Text='' then
begin
MessageDlg('Istotnym jest podanie daty zakończenia pobytu w jednostce do której wnioskujemy o akta archiwalne.', mtWarning, [mbOK],0);
exit;
end;
try
ZQPom:= TZQueryPom.Create(Self);
ZQPom.SQL.Text:='UPDATE uprawnienia SET ZnakPisma = :znak WHERE user = :user';
ZQPom.ParamByName('user').AsString:= DM.login;
ZQPom.ParamByName('znak').AsString:= edSygnatura.Text;
ZQPom.ExecSQL;
finally
FreeAndNil(ZQPom);
end;
str:= GetTresc;
adresat:= TStringList.Create;
adresat.Text:= moAdresat.Text;
adresat.Delete(0); // usuwamy pierwszy wiersz który jest nagłówkiem i będzie pogrubiony
str_i:= DM.GetInicjaly(DM.PelnaNazwa);
str_i:= str_i+'/'+str_i;
frReport1.LoadFromFile(DM.Path_Raporty + 'pen_AktaArch.lrf');
DM.SetMemoReport(frReport1, 'Memo_DataPisma1', 'Kłodzko, dn. ... '+DM.GetDateFormatPismo(Date, 'MMMM yyyy')+' r.' );
DM.SetMemoReport(frReport1, 'Memo_DataPisma2', 'Kłodzko, dn. ... '+DM.GetDateFormatPismo(Date, 'MMMM yyyy')+' r.' );
DM.SetMemoReport(frReport1, 'Memo_ZnakPisma1', edSygnatura.Text );
DM.SetMemoReport(frReport1, 'Memo_ZnakPisma2', edSygnatura.Text );
DM.SetMemoReport(frReport1, 'Memo_Adresat1Nag', moAdresat.Lines[0] );
DM.SetMemoReport(frReport1, 'Memo_Adresat1', adresat.Text );
DM.SetMemoReport(frReport1, 'Memo_Adresat2Nag', moAdresat.Lines[0] );
DM.SetMemoReport(frReport1, 'Memo_Adresat2', adresat.Text );
DM.SetMemoReport(frReport1, 'Memo_Naglowek1', moNaglowek.Text );
DM.SetMemoReport(frReport1, 'Memo_Naglowek2', moNaglowek.Text );
DM.SetMemoReport(frReport1, 'Memo_Nazwisko1', edNazwiskoImie.Text );
DM.SetMemoReport(frReport1, 'Memo_Nazwisko2', edNazwiskoImie.Text );
DM.SetMemoReport(frReport1, 'Memo_Tresc1', str );
DM.SetMemoReport(frReport1, 'Memo_Tresc2', str );
DM.SetMemoReport(frReport1, 'Memo_Inicjaly1', str_i );
DM.SetMemoReport(frReport1, 'Memo_Inicjaly2', str_i );
FreeAndNil(adresat);
frReport1.ShowReport;
end;
procedure TPenitAktaArch.BitBtn1Click(Sender: TObject);
begin
with TAdresyJednostek.Create(Self) do
begin
SetActiveTabIndex(tnJednostki);
if ShowModal = mrOK then
begin
if GetAdres<>'' then moAdresat.Text:= 'Pani/Pan Dyrektor' + LineEnding + GetAdres; // GetAdres jest z TAdresaci
end;
Free;
end;
end;
end.