-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDmoduleReports.dfm
3377 lines (3358 loc) · 122 KB
/
DmoduleReports.dfm
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object DataModule2: TDataModule2
OldCreateOrder = False
Height = 635
Width = 1048
object frxFacturasImpagadas: TfrxReport
Version = '5.6.18'
DotMatrixReport = False
IniFile = '\Software\Fast Reports'
PreviewOptions.Buttons = [pbPrint, pbLoad, pbSave, pbExport, pbZoom, pbFind, pbOutline, pbPageSetup, pbTools, pbEdit, pbNavigator, pbExportQuick]
PreviewOptions.Modal = False
PreviewOptions.Zoom = 1.000000000000000000
PrintOptions.Printer = 'Default'
PrintOptions.PrintOnSheet = 0
ReportOptions.CreateDate = 44018.933439004600000000
ReportOptions.LastChange = 44068.733261226800000000
ScriptLanguage = 'PascalScript'
ScriptText.Strings = (
'begin'
''
'end.')
Left = 144
Top = 24
Datasets = <
item
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
end>
Variables = <>
Style = <>
object Data: TfrxDataPage
Height = 1000.000000000000000000
Width = 1000.000000000000000000
end
object Page1: TfrxReportPage
PaperWidth = 210.000000000000000000
PaperHeight = 297.000000000000000000
PaperSize = 9
LeftMargin = 10.000000000000000000
RightMargin = 10.000000000000000000
TopMargin = 10.000000000000000000
BottomMargin = 10.000000000000000000
object ReportTitle1: TfrxReportTitle
FillType = ftBrush
Height = 45.354360000000000000
Top = 18.897650000000000000
Width = 718.110700000000000000
object Memo1: TfrxMemoView
Left = 196.535560000000000000
Top = 7.559059999999999000
Width = 313.700990000000000000
Height = 26.456710000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -19
Font.Name = 'Arial'
Font.Style = [fsBold, fsUnderline]
HAlign = haCenter
Memo.UTF8W = (
'FACTURA IMPAGADAS')
ParentFont = False
end
end
object GroupHeader1: TfrxGroupHeader
FillType = ftBrush
Height = 56.692950000000000000
Top = 124.724490000000000000
Width = 718.110700000000000000
Condition = 'frxDBDataset1."idAdministrador"'
object frxDBDataset1nombre_1: TfrxMemoView
Top = 3.779529999999994000
Width = 400.630180000000000000
Height = 18.897650000000000000
DataField = 'nombre_1'
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Arial'
Font.Style = [fsBold, fsUnderline]
Memo.UTF8W = (
'[frxDBDataset1."nombre_1"]')
ParentFont = False
end
object Memo5: TfrxMemoView
Left = 449.764070000000000000
Top = 34.015770000000010000
Width = 90.708720000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'Total Factura')
ParentFont = False
end
object Memo6: TfrxMemoView
Left = 566.929500000000000000
Top = 34.015770000000010000
Width = 68.031540000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'A Cuenta')
ParentFont = False
end
object Memo7: TfrxMemoView
Left = 650.079160000000000000
Top = 34.015770000000010000
Width = 71.811070000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'Pendiente')
ParentFont = False
end
end
object MasterData1: TfrxMasterData
FillType = ftBrush
Height = 26.456710000000000000
Top = 204.094620000000000000
Width = 718.110700000000000000
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
RowCount = 0
object frxDBDataset1nombre: TfrxMemoView
Left = 177.637910000000000000
Top = 3.779529999999994000
Width = 291.023810000000000000
Height = 18.897650000000000000
DataField = 'nombre'
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
Memo.UTF8W = (
'[frxDBDataset1."nombre"]')
end
object frxDBDataset1idFactura: TfrxMemoView
Top = 3.779529999999994000
Width = 30.236240000000000000
Height = 18.897650000000000000
DataField = 'idFactura'
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
Memo.UTF8W = (
'[frxDBDataset1."idFactura"]')
end
object frxDBDataset1ano: TfrxMemoView
Left = 30.236240000000000000
Top = 3.779529999999994000
Width = 41.574830000000000000
Height = 18.897650000000000000
DataField = 'ano'
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
Memo.UTF8W = (
'[frxDBDataset1."ano"]')
end
object frxDBDataset1Debe: TfrxMemoView
Left = 650.079160000000000000
Top = 3.779529999999994000
Width = 64.252010000000000000
Height = 18.897650000000000000
DataField = 'Debe'
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
DisplayFormat.DecimalSeparator = ','
DisplayFormat.FormatStr = '%2.2m'
DisplayFormat.Kind = fkNumeric
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = []
HAlign = haRight
Memo.UTF8W = (
'[frxDBDataset1."Debe"]')
ParentFont = False
end
object frxDBDataset1Total: TfrxMemoView
Left = 472.441250000000000000
Top = 3.779529999999994000
Width = 68.031540000000000000
Height = 18.897650000000000000
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
DisplayFormat.FormatStr = '%2.2m'
DisplayFormat.Kind = fkNumeric
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = []
HAlign = haRight
Memo.UTF8W = (
'[frxDBDataset1."Total"]')
ParentFont = False
end
object frxDBDataset1acuenta: TfrxMemoView
Left = 555.590910000000000000
Top = 3.779529999999994000
Width = 79.370130000000000000
Height = 18.897650000000000000
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
DisplayFormat.FormatStr = '%2.2m'
DisplayFormat.Kind = fkNumeric
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = []
HAlign = haRight
Memo.UTF8W = (
'[frxDBDataset1."acuenta"]')
ParentFont = False
end
object frxDBDataset1FechaFactura: TfrxMemoView
Left = 83.149660000000000000
Top = 3.779529999999994000
Width = 90.708720000000000000
Height = 18.897650000000000000
DataField = 'FechaFactura'
DataSet = frxDBDataset1
DataSetName = 'frxDBDataset1'
Memo.UTF8W = (
'[frxDBDataset1."FechaFactura"]')
end
end
object GroupFooter1: TfrxGroupFooter
FillType = ftBrush
Height = 34.015770000000000000
Top = 253.228510000000000000
Width = 718.110700000000000000
object Memo2: TfrxMemoView
Left = 400.630180000000000000
Top = 11.338589999999980000
Width = 291.023810000000000000
Height = 18.897650000000000000
DisplayFormat.FormatStr = '%2.2m'
DisplayFormat.Kind = fkNumeric
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
HAlign = haRight
Memo.UTF8W = (
'[(SUM((<frxDBDataset1."Debe">),MasterData1,0))] ')
ParentFont = False
VAlign = vaCenter
end
end
object ReportSummary1: TfrxReportSummary
FillType = ftBrush
Height = 45.354360000000000000
Top = 347.716760000000000000
Width = 718.110700000000000000
object Memo3: TfrxMemoView
Left = 283.464750000000000000
Top = 15.118119999999980000
Width = 374.173470000000000000
Height = 18.897650000000000000
DisplayFormat.FormatStr = '%2.2m'
DisplayFormat.Kind = fkNumeric
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Arial'
Font.Style = [fsBold]
HAlign = haRight
Memo.UTF8W = (
'[(SUM((<frxDBDataset1."Debe">),MasterData1,0))] ')
ParentFont = False
VAlign = vaCenter
end
object Memo4: TfrxMemoView
Left = 476.220780000000000000
Top = 15.118119999999980000
Width = 94.488250000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Arial'
Font.Style = [fsBold]
Memo.UTF8W = (
'Total:')
ParentFont = False
end
object Line1: TfrxLineView
Left = 37.795300000000000000
Top = 11.338590000000010000
Width = 657.638220000000000000
Color = clBlack
Diagonal = True
end
end
end
end
object frxDBDataset1: TfrxDBDataset
UserName = 'frxDBDataset1'
CloseDataSource = False
DataSet = FDFacturasImpagadas
BCDToCurrency = False
Left = 240
Top = 24
end
object FDFacturasImpagadas: TFDQuery
Connection = DataModule1.FDConnection1
SQL.Strings = (
'select F.idFactura, F.FechaFactura, F.ano, C.nombre, A.idAdminis' +
'trador, A.nombre, F.total-F.acuenta as Debe, F.Total, F.acuenta ' +
'from facturas F, clientes C, administradores A where F.idCliente' +
'=C.idcontactos and C.idAdministrador=A.idAdministrador and F.pa' +
'gada=false order by A.IdAdministrador')
Left = 32
Top = 24
end
object FDPresupuestosAprobados: TFDQuery
Filtered = True
Connection = DataModule1.FDConnection1
SQL.Strings = (
'select P.id_presupuesto, P.grupo, P.fechapresupuesto,P.TotalApro' +
'bado,C.nombre, A.idAdministrador, A.nombre from presupuestos P, ' +
'clientes C, administradores A where P.id_ClientePrev=C.idcontact' +
'os and C.idAdministrador=A.idAdministrador and P.Aprovado=true ' +
'and P.Ejecutado=false order by A.IdAdministrador,P.id_presupuest' +
'o')
Left = 32
Top = 88
end
object frxPresupuestosAprobados: TfrxReport
Version = '5.6.18'
DotMatrixReport = False
IniFile = '\Software\Fast Reports'
PreviewOptions.Buttons = [pbPrint, pbLoad, pbSave, pbExport, pbZoom, pbFind, pbOutline, pbPageSetup, pbTools, pbEdit, pbNavigator, pbExportQuick]
PreviewOptions.Modal = False
PreviewOptions.Zoom = 1.000000000000000000
PrintOptions.Printer = 'Default'
PrintOptions.PrintOnSheet = 0
ReportOptions.CreateDate = 44018.933439004600000000
ReportOptions.LastChange = 44068.961275405100000000
ScriptLanguage = 'PascalScript'
ScriptText.Strings = (
'begin'
''
'end.')
Left = 144
Top = 88
Datasets = <
item
DataSet = frxDBDataset3
DataSetName = 'frxDetallePresupuestos'
end
item
DataSet = frxDBDataset2
DataSetName = 'PresupuestosAprobados'
end>
Variables = <>
Style = <>
object Data: TfrxDataPage
Height = 1000.000000000000000000
Width = 1000.000000000000000000
end
object Page1: TfrxReportPage
PaperWidth = 210.000000000000000000
PaperHeight = 297.000000000000000000
PaperSize = 9
LeftMargin = 10.000000000000000000
RightMargin = 10.000000000000000000
TopMargin = 10.000000000000000000
BottomMargin = 10.000000000000000000
object ReportTitle1: TfrxReportTitle
FillType = ftBrush
Height = 45.354360000000000000
Top = 18.897650000000000000
Width = 718.110700000000000000
object Memo1: TfrxMemoView
Left = 196.535560000000000000
Top = 7.559059999999999000
Width = 313.700990000000000000
Height = 26.456710000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -19
Font.Name = 'Arial'
Font.Style = [fsBold, fsUnderline]
HAlign = haCenter
Memo.UTF8W = (
'PRESUPUESTOS APROBADOS')
ParentFont = False
end
end
object ReportSummary1: TfrxReportSummary
FillType = ftBrush
Height = 45.354360000000000000
Top = 393.071120000000000000
Width = 718.110700000000000000
object Line1: TfrxLineView
Left = 37.795300000000000000
Top = 11.338590000000010000
Width = 657.638220000000000000
Color = clBlack
Diagonal = True
end
object COUNT: TfrxMemoView
Left = 207.874150000000000000
Top = 18.897650000000000000
Width = 162.519790000000000000
Height = 18.897650000000000000
Memo.UTF8W = (
'[COUNT(MasterData1,0)]')
end
object Memo10: TfrxMemoView
Left = 604.724800000000000000
Top = 18.897650000000000000
Width = 79.370130000000000000
Height = 18.897650000000000000
DisplayFormat.FormatStr = '%2.2m'
DisplayFormat.Kind = fkNumeric
Memo.UTF8W = (
'[SUM(<PresupuestosAprobados."TotalAprobado">,MasterData1,0)]')
end
object Memo11: TfrxMemoView
Left = 11.338590000000000000
Top = 18.897650000000000000
Width = 173.858380000000000000
Height = 18.897650000000000000
Memo.UTF8W = (
'N'#186' Presupuestos Aprobados:')
end
object Memo12: TfrxMemoView
Left = 517.795610000000000000
Top = 18.897650000000000000
Width = 173.858380000000000000
Height = 18.897650000000000000
Memo.UTF8W = (
'Importe Total:')
end
end
object MasterData1: TfrxMasterData
FillType = ftBrush
Height = 52.913420000000000000
Top = 215.433210000000000000
Width = 718.110700000000000000
DataSet = frxDBDataset2
DataSetName = 'PresupuestosAprobados'
RowCount = 0
object frxDBDataset1id_presupuesto: TfrxMemoView
Left = 11.338590000000000000
Top = 3.779529999999994000
Width = 105.826840000000000000
Height = 18.897650000000000000
DataField = 'id_presupuesto'
DataSet = frxDBDataset2
DataSetName = 'PresupuestosAprobados'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
Fill.BackColor = 14211288
Memo.UTF8W = (
'[PresupuestosAprobados."id_presupuesto"]')
ParentFont = False
end
object frxDBDataset1fechapresupuesto: TfrxMemoView
Left = 117.165430000000000000
Top = 3.779529999999994000
Width = 132.283550000000000000
Height = 18.897650000000000000
DataField = 'fechapresupuesto'
DataSet = frxDBDataset2
DataSetName = 'PresupuestosAprobados'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
Fill.BackColor = 14211288
Memo.UTF8W = (
'[PresupuestosAprobados."fechapresupuesto"]')
ParentFont = False
end
object frxDBDataset1nombre: TfrxMemoView
Left = 249.448980000000000000
Top = 3.779529999999994000
Width = 359.055350000000000000
Height = 18.897650000000000000
DataField = 'nombre'
DataSet = frxDBDataset2
DataSetName = 'PresupuestosAprobados'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
Fill.BackColor = 14211288
Memo.UTF8W = (
'[PresupuestosAprobados."nombre"]')
ParentFont = False
end
object frxDBDataset1TotalAprobado: TfrxMemoView
Left = 597.165740000000000000
Top = 3.779529999999994000
Width = 79.370130000000000000
Height = 18.897650000000000000
DataSet = frxDBDataset2
DataSetName = 'PresupuestosAprobados'
DisplayFormat.FormatStr = '%2.2m'
DisplayFormat.Kind = fkNumeric
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
Fill.BackColor = 14211288
HAlign = haRight
Memo.UTF8W = (
'[PresupuestosAprobados."TotalAprobado"]')
ParentFont = False
end
object Memo6: TfrxMemoView
Left = 52.913420000000000000
Top = 37.795300000000000000
Width = 102.047310000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'Fecha Aprobado')
ParentFont = False
end
object Memo7: TfrxMemoView
Left = 162.519790000000000000
Top = 37.795300000000000000
Width = 102.047310000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'D'#237'as Estimados')
ParentFont = False
end
object Memo8: TfrxMemoView
Left = 264.567100000000000000
Top = 37.795300000000000000
Width = 102.047310000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'Descripci'#243'n')
ParentFont = False
end
object Memo9: TfrxMemoView
Left = 604.724800000000000000
Top = 30.236240000000010000
Width = 102.047310000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'Importe')
ParentFont = False
end
end
object GroupHeader1: TfrxGroupHeader
FillType = ftBrush
Height = 68.031540000000000000
Top = 124.724490000000000000
Width = 718.110700000000000000
Condition = 'PresupuestosAprobados."idAdministrador"'
object Memo2: TfrxMemoView
Left = 11.338590000000000000
Top = 41.574829999999990000
Width = 102.047310000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'N'#186' Presupuesto')
ParentFont = False
end
object Memo3: TfrxMemoView
Left = 120.944960000000000000
Top = 41.574829999999990000
Width = 124.724490000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'Fecha Presupuesto')
ParentFont = False
end
object Memo4: TfrxMemoView
Left = 253.228510000000000000
Top = 41.574829999999990000
Width = 124.724490000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsUnderline]
Memo.UTF8W = (
'Descripci'#243'n')
ParentFont = False
end
object Memo5: TfrxMemoView
Left = 631.181510000000000000
Top = 41.574829999999990000
Width = 49.133890000000000000
Height = 18.897650000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsUnderline]
HAlign = haCenter
Memo.UTF8W = (
'Total')
ParentFont = False
end
object Line2: TfrxLineView
Left = 30.236240000000000000
Width = 657.638220000000000000
Color = clBlack
Diagonal = True
end
object PresupuestosAprobadosnombre_1: TfrxMemoView
Top = 7.559059999999988000
Width = 400.630180000000000000
Height = 22.677180000000000000
DataField = 'nombre_1'
DataSet = frxDBDataset2
DataSetName = 'PresupuestosAprobados'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -19
Font.Name = 'Arial'
Font.Style = [fsBold, fsUnderline]
Memo.UTF8W = (
'[PresupuestosAprobados."nombre_1"]')
ParentFont = False
end
end
object DetailData1: TfrxDetailData
FillType = ftBrush
Height = 41.574830000000000000
Top = 291.023810000000000000
Width = 718.110700000000000000
DataSet = frxDBDataset3
DataSetName = 'frxDetallePresupuestos'
RowCount = 0
object frxDetallePresupuestosfecha_aprobado: TfrxMemoView
Left = 52.913420000000000000
Top = 11.338590000000010000
Width = 79.370130000000000000
Height = 18.897650000000000000
DataField = 'fecha_aprobado'
DataSet = frxDBDataset3
DataSetName = 'frxDetallePresupuestos'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Arial'
Font.Style = []
Memo.UTF8W = (
'[frxDetallePresupuestos."fecha_aprobado"]')
ParentFont = False
end
object frxDetallePresupuestosdiasejecucion: TfrxMemoView
Left = 162.519790000000000000
Top = 11.338590000000010000
Width = 79.370130000000000000
Height = 18.897650000000000000
DataField = 'diasejecucion'
DataSet = frxDBDataset3
DataSetName = 'frxDetallePresupuestos'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Arial'
Font.Style = []
Memo.UTF8W = (
'[frxDetallePresupuestos."diasejecucion"]')
ParentFont = False
end
object frxDetallePresupuestosDescripcion: TfrxMemoView
Left = 260.787570000000000000
Top = 11.338590000000010000
Width = 294.803340000000000000
Height = 18.897650000000000000
StretchMode = smActualHeight
DataField = 'Descripcion'
DataSet = frxDBDataset3
DataSetName = 'frxDetallePresupuestos'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Arial'
Font.Style = []
Memo.UTF8W = (
'[frxDetallePresupuestos."Descripcion"]')
ParentFont = False
end
object frxDetallePresupuestosTotal: TfrxMemoView
Left = 604.724800000000000000
Top = 11.338590000000010000
Width = 79.370130000000000000
Height = 18.897650000000000000
DataSet = frxDBDataset3
DataSetName = 'frxDetallePresupuestos'
DisplayFormat.FormatStr = '%2.2m'
DisplayFormat.Kind = fkNumeric
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Arial'
Font.Style = []
Memo.UTF8W = (
'[frxDetallePresupuestos."Total"]')
ParentFont = False
end
end
end
end
object frxDBDataset2: TfrxDBDataset
UserName = 'PresupuestosAprobados'
CloseDataSource = False
DataSet = FDPresupuestosAprobados
BCDToCurrency = False
Left = 248
Top = 88
end
object dsPresupuestosAprobados: TDataSource
DataSet = FDPresupuestosAprobados
Left = 160
Top = 152
end
object fdDetallePresupuestos: TFDQuery
IndexFieldNames = 'presupuestos_id_presupuesto;presupuestos_grupo'
MasterSource = dsPresupuestosAprobados
MasterFields = 'id_presupuesto;grupo'
Connection = DataModule1.FDConnection1
SQL.Strings = (
'select * from lineaspresupuesto where Aprovado=true and ejecutad' +
'o=false')
Left = 48
Top = 152
end
object frxDBDataset3: TfrxDBDataset
UserName = 'frxDetallePresupuestos'
CloseDataSource = False
DataSet = fdDetallePresupuestos
BCDToCurrency = False
Left = 256
Top = 152
end
object frxDOCXExport1: TfrxDOCXExport
UseFileCache = True
ShowProgress = True
OverwritePrompt = False
DataOnly = False
OpenAfterExport = False
PictureType = gpPNG
Left = 552
Top = 24
end
object frxPDFExport1: TfrxPDFExport
UseFileCache = True
ShowProgress = True
OverwritePrompt = False
DataOnly = False
PrintOptimized = False
Outline = False
Background = False
HTMLTags = True
Quality = 95
Transparency = False
Author = 'FastReport'
Subject = 'FastReport PDF export'
ProtectionFlags = [ePrint, eModify, eCopy, eAnnot]
HideToolbar = False
HideMenubar = False
HideWindowUI = False
FitWindow = False
CenterWindow = False
PrintScaling = False
PdfA = False
Left = 472
Top = 24
end
object frxXLSXExport1: TfrxXLSXExport
UseFileCache = True
ShowProgress = True
OverwritePrompt = False
DataOnly = False
ChunkSize = 0
PictureType = gpPNG
Left = 640
Top = 24
end
object frxFacturas: TfrxReport
Version = '5.6.18'
DotMatrixReport = False
IniFile = '\Software\Fast Reports'
PreviewOptions.Buttons = [pbPrint, pbLoad, pbSave, pbExport, pbZoom, pbFind, pbOutline, pbPageSetup, pbTools, pbEdit, pbNavigator, pbExportQuick]
PreviewOptions.Modal = False
PreviewOptions.Zoom = 1.000000000000000000
PrintOptions.Printer = 'Default'
PrintOptions.PrintOnSheet = 0
ReportOptions.CreateDate = 44068.976249097200000000
ReportOptions.LastChange = 44113.905008865700000000
ScriptLanguage = 'PascalScript'
ScriptText.Strings = (
'procedure Page1OnBeforePrint(Sender: TfrxComponent);'
'begin'
''
' '
'end;'
''
'procedure Button1OnClick(Sender: TfrxComponent);'
'begin'
' memo23.visible:=True;'
' shape7.visible:=True; ' +
' '
' ' +
' '
'end;'
''
'procedure Memo24OnBeforePrint(Sender: TfrxComponent);'
'begin'
' '
'end;'
''
'begin'
''
'end.')
Left = 144
Top = 224
Datasets = <
item
DataSet = frxDBDataset5
DataSetName = 'frxDetalleFacturas'
end
item
DataSet = frxDBDataset4
DataSetName = 'frxFacturas'
end>
Variables = <>
Style = <>
object Data: TfrxDataPage
Height = 1000.000000000000000000
Width = 1000.000000000000000000
end
object Page1: TfrxReportPage
PaperWidth = 210.000000000000000000
PaperHeight = 297.000000000000000000
PaperSize = 9
LeftMargin = 10.000000000000000000
RightMargin = 10.000000000000000000
TopMargin = 10.000000000000000000
BottomMargin = 10.000000000000000000
OnBeforePrint = 'Page1OnBeforePrint'
object PageHeader1: TfrxPageHeader
FillType = ftBrush
Height = 117.165430000000000000
Top = 18.897650000000000000
Width = 718.110700000000000000
object Picture1: TfrxPictureView
Left = 11.338590000000000000
Top = 18.897650000000000000
Width = 317.480520000000000000
Height = 83.149660000000000000
Picture.Data = {
0A544A504547496D6167657E240000FFD8FFE000104A46494600010101006000
600000FFDB00430006040506050406060506070706080A100A0A09090A140E0F
0C1017141818171416161A1D251F1A1B231C1616202C20232627292A29191F2D
302D283025282928FFDB0043010707070A080A130A0A13281A161A2828282828
2828282828282828282828282828282828282828282828282828282828282828
28282828282828282828282828FFC00011080068015E03012200021101031101
FFC4001F0000010501010101010100000000000000000102030405060708090A
0BFFC400B5100002010303020403050504040000017D01020300041105122131
410613516107227114328191A1082342B1C11552D1F02433627282090A161718
191A25262728292A3435363738393A434445464748494A535455565758595A63
6465666768696A737475767778797A838485868788898A92939495969798999A
A2A3A4A5A6A7A8A9AAB2B3B4B5B6B7B8B9BAC2C3C4C5C6C7C8C9CAD2D3D4D5D6
D7D8D9DAE1E2E3E4E5E6E7E8E9EAF1F2F3F4F5F6F7F8F9FAFFC4001F01000301
01010101010101010000000000000102030405060708090A0BFFC400B5110002
0102040403040705040400010277000102031104052131061241510761711322
328108144291A1B1C109233352F0156272D10A162434E125F11718191A262728
292A35363738393A434445464748494A535455565758595A636465666768696A
737475767778797A82838485868788898A92939495969798999AA2A3A4A5A6A7
A8A9AAB2B3B4B5B6B7B8B9BAC2C3C4C5C6C7C8C9CAD2D3D4D5D6D7D8D9DAE2E3
E4E5E6E7E8E9EAF2F3F4F5F6F7F8F9FAFFDA000C03010002110311003F00F6B9
3C657C5DBCB86DC2E78041271F9D37FE131D43FE795B7FDF2DFE34EF01C51CB7
F7025447023C80C33DC5759A84BA5E9E8AD7696F186385FDD824FE42988E47FE
131D43FE795B7FDF2DFE347FC263A87FCF2B6FFBE5BFC6BA1FED9D03FBD07FDF
83FE1525B6A7A1DCCC91446DCC8E70A0C58C9FC4500735FF00098EA1FF003CAD
BFEF96FF001A3FE131D43FE795B7FDF2DFE35DCFD8EDBFE7DE1FFBE0565DD6A5
A25B4ED0CC6DC48A70C0459C1FC0500735FF00098EA1FF003CADBFEF96FF001A
3FE131D43FE795B7FDF2DFE35D0FF6CE81FDE83FEFC1FF000ABBA7CBA66A08CD
66904814E1BF76063F31401C9C7E32BEDEBBE1B72B9E40041C7E75BFE32F1127
867C3D26AB25BBDC22141E5AB6D3F3103AFE3587E3E8638AEAD3CA8D1328D9DA
A0679A8FE340CFC34BC3E8613FF8FAD63889B85294A3BA4CEDCB68C2BE2E952A
9AA94927F36730DF1CEDFF00874498FD671FE15137C745FE1D058FD6EB1FFB2D
788D15F33FDA989FE6FC11FAAAE13CAFFE7DFE2FFCCF6A6F8E8FFC3A02FE377F
FD8544DF1CEE7F8743847D6E49FF00D96BC6A8A4F33C4FF37E08A5C2B95AFF00
975F8BFF0033D81BE396A1FC1A35A8FACAC7FA544DF1C3563D34BB11FF00027F
F1AF24A2A7FB4713FCFF0091A2E19CAD7FCB95F7BFF33D5CFC6ED6BB69D603FE
FBFF001A8DBE366BC7EED969C3FE02FF00FC55796514BFB4313FCE57FAB7967F
CF95F8FF0099EA0DF1A7C447A5B69C3FED9B7FF1551B7C66F129E9169E3FED93
7FF155E67452FAFE23F9D94B87B2D5FF002E51E90DF193C507A7D807FDB13FE3
51B7C60F151E92D98FA41FFD7AF3BA293C6E23F9D96B21CB97FCB98FDC7A037C
5CF161E9756EBF4B75A89BE2BF8B8F4D4631F4B78FFC2B84A297D72BFF003BFB
CAFEC4CB97FCB88FDC8EDDBE2978BDBFE62807D208FF00F89A89BE2678B5BFE6
2EE3E9127F8571B56ED74DBEBC7096965733B1E8228998FE828589C44B693FBD
84B2BCBA9ABCA9417C91D137C46F1637FCC6A7FC1507F4A8DBE20F8ADBAEB775
F8607F4A6DAF80BC53758F2B44BC19FF009E8BE5FF00E858ADDB0F83FE29B950
678ED2D7DA59813FF8EE6B58C7193DB9BF138AA54C9287C5ECD7FE03FA182DE3
CF14B75D72F7F07C546DE36F13375D7750FF00BFC6BBFB3F81D7CF8FB66B16D1
7B45117FE6456ED9FC10D2531F6BD4EF65F508AA80FE86B78E0F1B2DEEBE670D
4CEF21A5B24FD21FF00F1F6F18788CF5D7351FFC086FF1A8DBC57E206EBADEA7
FF00812FFE35F40D97C26F0A5B637D9CD704779666FE4315BB67E0BF0DDA63C9
D12C063A168431FCCD6F1CB312FE29FE2CE0A9C5795C3F8587BFCA2BFCCF9853
C41E219CE23D575590FA2DC487FAD6959DAF8DB50C7D9935E941FE2CCA17F33C
57D4F05ADBDBA048208A351D02200054D8ADE3953FB5519E7D4E3087FCBAC345
7AEBFA23E6BB5F037C40BB2370BC8C1EF2DE631FF8F66B6ADBE12F8AA6C7DAF5
B862F5C4D2391FA0AF7AA2B78E59496EDBF99E7D4E2AC64BE08C23E91FF3B9E3
B65F05D89CEA3E21B9907F7628F6FEA58FF2AD8B4F83BE1C8883732DFDD7FD74
9B03F402BD2A8ADA381A11FB270D4CFF0031A9BD56BD2CBF2B1C9D97C3BF0AD9
91E5E8F039F594993FF4226B6ACF43D2AC98359E9B67030E8638554FE82B4A8A
DE34A11F852479F57175EB7F126DFAB6252D1456873851451401C27C3EFF0090
85CFFD72FEA2A6F889FEB2C7E8FF00D2A1F87DFF00210B9FFAE5FD454FF10FFD
6597D1FF00A53EA2E8496BE0FB79AD6294DD4C0BA062001C64562DD582E9BE24
B7B68DD9D5648CEE6EBC9157EDFC632C36F1C42CD0EC50B9DE79C0FA566C97ED
AA788ADAE4C610B4918DA0E7A11401E9B5E6F0D82EA7E28B9B691D915A590EE5
1CF04D7A4579A7DBDB4BF12DD5CAC6242B2C836938EA4D0819B577E0FB782D66
945D4C4A2160081CE0547F0EFF00D65F7D13FAD4373E31967B796236683CC52B
9DE78C8FA54FF0EC7EF2F8F6C20FE74011FC43FF008FAB3FF71BF9D33E320CFC
32D47D8427FF0022253FE21FFC7D59FF00B8DFCE8F8BCBBBE18EA83FD888FF00
E444AC315FC19FA3FC8F432A76C7517FDE8FE68F9749C0C92001C935CCCDE24B
8B8B878F48B26B854382E41C7E95D62E977BA9C12C3656B71333A95FDD465B19
1ED5C5D835E783EE65D3BC43A75D593BB798A6488A93DB3CF51C7515F3B82C3A
9D39CF9399AD91FA7677994A8E22950557D9C257BC959B4D6CBCAFDC9E3F11DE
DBCA89A9E9AF1AB9DA1901EBF8F5FCEBA81C8AE83C19E149FC69106D12FF004A
9B8DC636B91E628F529F787E22AEFC48F054DE01F0B1D5B58D42D9E6790436F6
D02B319243CE32718000249F6A2A612AD66BD9D2E57FD77270F9CE1302A4ABE2
D545D34D57DDB9C9515D8786FE0678C75BD222D4354D7ADF489A7412476820F3
0A02380E78C1F6E6AD7C32F0FDBE9FF102E3C11F1134F8E7D55A2371637714CC
A9708012460633C0620E07DD20D6BFD8B5ADBA397FD78C0DDAE497DCBFCCE169
CA8CE7E4566FA0CD761F152F6D3C05F19F46B6D2F4A8EE34E6B10E74F11093CF
99BCD541F302796D9D3D2BD13C0FE17F88722EAB79E26D534FB0179632476763
631AA9B3989051B2171F2E08EADD6B58E492B5E7347255E3CA49DA9516FD5DBF
CCF21B4F0BEBB78A1ADB47D42456E8C206C1FC715B763F0C7C5B778234A6857F
BD34A8BFA673FA57A3FECE3E32D53C49A16ADA6F89A779B5DD22EDA298C80072
8738CE3D195C7E02A2F8EBE2AD6ADBC45E14F09784AF9ECB56D5AE434B32004C
70E76F7078FBC7FE015BC725A49DA52679B578E717257A74E2BEF7FE479C6B5F
093C770EABA4C7616F6B25A4F26DB99125522119192DBB0718CFDDCF4AF40B3F
81A831F6DD69CFA88A0C7EA49A4F8CFE26D6FC3DE3AF87BA7695A94F05ADF5C8
8AE9460F9C3CC8C7CD91E84F4F5AEBFE31FC4187E1EF85C5E8845CEA372FE4D9
DB93C3BE39271CE07F80EF5D7FD9B87B24E27912E28CC9CA52556D7F4FC2FB19
B67F05FC390E0DC4D7F707B869028FD056F597C35F09DA7DCD22290FACAECFFC
CD799693E18F8CFE20B21A9EA3E3183459661E64564B003B01E81805E3FF001E
3EB5DEFC296F1F44BA8D97C414B297ECECAB6D7B030DD700F538000C0E39214F