-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCardReturnFrm.dfm
1188 lines (1188 loc) · 36.9 KB
/
CardReturnFrm.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 CardReturnForm: TCardReturnForm
Left = 319
Top = 12
BorderStyle = bsDialog
Caption = #36864#39044#20132#37329
ClientHeight = 650
ClientWidth = 744
Color = clBtnFace
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
PixelsPerInch = 96
TextHeight = 15
object RzMarqueeStatus1: TRzMarqueeStatus
Left = 0
Top = 0
Width = 744
Height = 25
FrameStyle = fsNone
Align = alTop
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = []
ParentFont = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
Caption = #35831#20808#36827#34892#36523#20221#20449#24687#30340#39564#35777
end
object GroupBox1: TGroupBox
Left = 16
Top = 32
Width = 713
Height = 361
Caption = #36523#20221#20449#24687#23545#27604
Font.Charset = GB2312_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
object RzLabel1: TRzLabel
Left = 24
Top = 48
Width = 80
Height = 15
Caption = #35786#30103#21345#20449#24687
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel2: TRzLabel
Left = 24
Top = 176
Width = 64
Height = 15
Caption = #36523#20221#20449#24687
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object GroupBox3: TGroupBox
Left = 112
Top = 39
Width = 585
Height = 106
TabOrder = 0
object RzLabel3: TRzLabel
Left = 8
Top = 16
Width = 75
Height = 15
Caption = #35786#30103#21345'ID:'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel4: TRzLabel
Left = 256
Top = 17
Width = 73
Height = 15
Caption = #36523#20221#35777#21495':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object PatientRzLabel: TRzLabel
Left = 96
Top = 16
Width = 81
Height = 15
Caption = 'PatientID'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object IDCardLabel: TRzLabel
Left = 344
Top = 17
Width = 54
Height = 15
Caption = 'IDCard'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel11: TRzLabel
Left = 10
Top = 46
Width = 73
Height = 15
Caption = #24739#32773#22995#21517':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel12: TRzLabel
Left = 256
Top = 47
Width = 73
Height = 15
Caption = #30005#35805#21495#30721':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel13: TRzLabel
Left = 8
Top = 76
Width = 41
Height = 15
Caption = #24615#21035':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object PatientName: TRzLabel
Left = 96
Top = 46
Width = 99
Height = 15
Caption = 'PatientName'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object Phone: TRzLabel
Left = 344
Top = 47
Width = 45
Height = 15
Caption = 'Phone'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object Sex: TRzLabel
Left = 96
Top = 76
Width = 27
Height = 15
Caption = 'Sex'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
end
object GroupBox4: TGroupBox
Left = 112
Top = 167
Width = 585
Height = 106
TabOrder = 1
object RzLabel5: TRzLabel
Left = 8
Top = 16
Width = 75
Height = 15
Caption = #35786#30103#21345'ID:'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel6: TRzLabel
Left = 256
Top = 16
Width = 73
Height = 15
Caption = #36523#20221#35777#21495':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object PaitentRzLabel: TRzLabel
Left = 96
Top = 16
Width = 81
Height = 15
Caption = 'PatientID'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
Visible = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object CardLabel: TRzLabel
Left = 344
Top = 16
Width = 54
Height = 15
Caption = 'IDCard'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
Visible = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel14: TRzLabel
Left = 8
Top = 76
Width = 41
Height = 15
Caption = #24615#21035':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel15: TRzLabel
Left = 8
Top = 46
Width = 73
Height = 15
Caption = #24739#32773#22995#21517':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel16: TRzLabel
Left = 256
Top = 46
Width = 73
Height = 15
Caption = #30005#35805#21495#30721':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object PatientNameID: TRzLabel
Left = 96
Top = 46
Width = 99
Height = 15
Caption = 'PatientName'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
Visible = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object PhoneID: TRzLabel
Left = 344
Top = 46
Width = 45
Height = 15
Caption = 'Phone'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
Visible = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object SexID: TRzLabel
Left = 96
Top = 76
Width = 27
Height = 15
Caption = 'Sex'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
Visible = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
end
object ReadIDCardBtn: TRzBitBtn
Left = 276
Top = 296
Width = 161
Height = 33
Caption = #35835#21462#36523#20221#35777
HotTrack = True
TabOrder = 2
OnClick = ReadIDCardBtnClick
Glyph.Data = {
36060000424D3606000000000000360400002800000020000000100000000100
08000000000000020000830E0000830E00000001000000000000000000003300
00006600000099000000CC000000FF0000000033000033330000663300009933
0000CC330000FF33000000660000336600006666000099660000CC660000FF66
000000990000339900006699000099990000CC990000FF99000000CC000033CC
000066CC000099CC0000CCCC0000FFCC000000FF000033FF000066FF000099FF
0000CCFF0000FFFF000000003300330033006600330099003300CC003300FF00
330000333300333333006633330099333300CC333300FF333300006633003366
33006666330099663300CC663300FF6633000099330033993300669933009999
3300CC993300FF99330000CC330033CC330066CC330099CC3300CCCC3300FFCC
330000FF330033FF330066FF330099FF3300CCFF3300FFFF3300000066003300
66006600660099006600CC006600FF0066000033660033336600663366009933
6600CC336600FF33660000666600336666006666660099666600CC666600FF66
660000996600339966006699660099996600CC996600FF99660000CC660033CC
660066CC660099CC6600CCCC6600FFCC660000FF660033FF660066FF660099FF
6600CCFF6600FFFF660000009900330099006600990099009900CC009900FF00
990000339900333399006633990099339900CC339900FF339900006699003366
99006666990099669900CC669900FF6699000099990033999900669999009999
9900CC999900FF99990000CC990033CC990066CC990099CC9900CCCC9900FFCC
990000FF990033FF990066FF990099FF9900CCFF9900FFFF99000000CC003300
CC006600CC009900CC00CC00CC00FF00CC000033CC003333CC006633CC009933
CC00CC33CC00FF33CC000066CC003366CC006666CC009966CC00CC66CC00FF66
CC000099CC003399CC006699CC009999CC00CC99CC00FF99CC0000CCCC0033CC
CC0066CCCC0099CCCC00CCCCCC00FFCCCC0000FFCC0033FFCC0066FFCC0099FF
CC00CCFFCC00FFFFCC000000FF003300FF006600FF009900FF00CC00FF00FF00
FF000033FF003333FF006633FF009933FF00CC33FF00FF33FF000066FF003366
FF006666FF009966FF00CC66FF00FF66FF000099FF003399FF006699FF009999
FF00CC99FF00FF99FF0000CCFF0033CCFF0066CCFF0099CCFF00CCCCFF00FFCC
FF0000FFFF0033FFFF0066FFFF0099FFFF00CCFFFF00FFFFFF00000080000080
000000808000800000008000800080800000C0C0C00080808000191919004C4C
4C00B2B2B200E5E5E500C8AC2800E0CC6600F2EABF00B59B2400D8E9EC009933
6600D075A300ECC6D900646F710099A8AC00E2EFF10000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000E8E8E8E8E8E8
A37878787878787878E8E8E8E8E8E8E8818181818181818181E8E8E8E8E8E8E8
A3D5D5D5D5D5D5D578E8E8E8E8E8E8E881ACACACACACACAC81E8E8E8E8E8E8E8
A3D5D5D5D5D5D5D578E8E8E8E8E8E8E881ACACACACACACAC81E8E8E8E8E8E8E8
A3D5D5D5D5D5D5D578E8E8E8E8E8E8E881ACACACACACACAC81E8E8E8E8E8E8E8
A3D5D5D5D5D5D5D578E8E8E8E8E8E8E881ACACACACACACAC81E8E85E5E5E5E5E
A3D5D5D5D5D5D5D578E8E8818181818181ACACACACACACAC81E8E85ED7D7D7D7
A3D5D5D5D5D5D5D578E8E881E8E8E8E881ACACACACACACAC81E8E85ED7D7D7D7
A3D5D5D5D5A3A3A3A3E8E881E8E8E8E881ACACACAC81818181E8E85ED7D7D7D7
A3D5D5D5D5A3D678E8E8E881E8E8E8E881ACACACAC81AC81E8E8E85ED7D7D7D7
A3D5D5D5D5A378E8E8E8E881E8E8E8E881ACACACAC8181E8E8E8E85ED7D7D7D7
A3A3A3A3A3A3E8E8E8E8E881E8E8E8E8818181818181E8E8E8E8E85ED7D7D7D7
D7D7D75EE8E8E8E8E8E8E881E8E8E8E8E8E8E881E8E8E8E8E8E8E85ED7D7D7D7
5E5E5E5EE8E8E8E8E8E8E881E8E8E8E881818181E8E8E8E8E8E8E85ED7D7D7D7
5EE35EE8E8E8E8E8E8E8E881E8E8E8E881E881E8E8E8E8E8E8E8E85ED7D7D7D7
5E5EE8E8E8E8E8E8E8E8E881E8E8E8E88181E8E8E8E8E8E8E8E8E85E5E5E5E5E
5EE8E8E8E8E8E8E8E8E8E8818181818181E8E8E8E8E8E8E8E8E8}
NumGlyphs = 2
end
end
object GroupBox2: TGroupBox
Left = 16
Top = 400
Width = 713
Height = 241
Caption = #36864#39044#20132#37329
Font.Charset = GB2312_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
object RzLabel7: TRzLabel
Left = 24
Top = 32
Width = 73
Height = 15
Caption = #36864#36153#36134#21495':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel8: TRzLabel
Left = 24
Top = 72
Width = 73
Height = 15
Caption = #36864#36153#26041#24335':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel9: TRzLabel
Left = 24
Top = 112
Width = 73
Height = 15
Caption = #36864#36153#37329#39069':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object PatientIDLabel: TRzLabel
Left = 112
Top = 32
Width = 126
Height = 15
Caption = 'PatientIDLabel'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel10: TRzLabel
Left = 256
Top = 32
Width = 80
Height = 15
Caption = #21345#20869#37329#39069#65306
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object MoneyLabel: TRzLabel
Left = 336
Top = 32
Width = 90
Height = 15
Caption = 'MoneyLabel'
Font.Charset = GB2312_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
Visible = False
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object RzLabel17: TRzLabel
Left = 24
Top = 144
Width = 41
Height = 15
Caption = #22791#27880':'
BlinkIntervalOff = 1000
BlinkIntervalOn = 1000
end
object StyleComboBox: TRzComboBox
Left = 112
Top = 68
Width = 345
Height = 23
Style = csDropDownList
Ctl3D = False
Enabled = False
FlatButtons = True
FrameHotTrack = True
FrameVisible = True
ImeName = #20013#25991'('#31616#20307') - '#25628#29399#25340#38899#36755#20837#27861
ItemHeight = 15
ParentCtl3D = False
TabOrder = 0
Items.Strings = (
#29616#37329
#38134#34892#21345)
end
object ConfirmBitBtn: TRzBitBtn
Left = 528
Top = 110
Width = 137
Height = 29
Default = True
Caption = #30830#35748#36864#36153
Enabled = False
HotTrack = True
TabOrder = 3
OnClick = ConfirmBitBtnClick
Glyph.Data = {
36060000424D3606000000000000360400002800000020000000100000000100
08000000000000020000630B0000630B00000001000000000000000000003300
00006600000099000000CC000000FF0000000033000033330000663300009933
0000CC330000FF33000000660000336600006666000099660000CC660000FF66
000000990000339900006699000099990000CC990000FF99000000CC000033CC
000066CC000099CC0000CCCC0000FFCC000000FF000033FF000066FF000099FF
0000CCFF0000FFFF000000003300330033006600330099003300CC003300FF00
330000333300333333006633330099333300CC333300FF333300006633003366
33006666330099663300CC663300FF6633000099330033993300669933009999
3300CC993300FF99330000CC330033CC330066CC330099CC3300CCCC3300FFCC
330000FF330033FF330066FF330099FF3300CCFF3300FFFF3300000066003300
66006600660099006600CC006600FF0066000033660033336600663366009933
6600CC336600FF33660000666600336666006666660099666600CC666600FF66
660000996600339966006699660099996600CC996600FF99660000CC660033CC
660066CC660099CC6600CCCC6600FFCC660000FF660033FF660066FF660099FF
6600CCFF6600FFFF660000009900330099006600990099009900CC009900FF00
990000339900333399006633990099339900CC339900FF339900006699003366
99006666990099669900CC669900FF6699000099990033999900669999009999
9900CC999900FF99990000CC990033CC990066CC990099CC9900CCCC9900FFCC
990000FF990033FF990066FF990099FF9900CCFF9900FFFF99000000CC003300
CC006600CC009900CC00CC00CC00FF00CC000033CC003333CC006633CC009933
CC00CC33CC00FF33CC000066CC003366CC006666CC009966CC00CC66CC00FF66
CC000099CC003399CC006699CC009999CC00CC99CC00FF99CC0000CCCC0033CC
CC0066CCCC0099CCCC00CCCCCC00FFCCCC0000FFCC0033FFCC0066FFCC0099FF
CC00CCFFCC00FFFFCC000000FF003300FF006600FF009900FF00CC00FF00FF00
FF000033FF003333FF006633FF009933FF00CC33FF00FF33FF000066FF003366
FF006666FF009966FF00CC66FF00FF66FF000099FF003399FF006699FF009999
FF00CC99FF00FF99FF0000CCFF0033CCFF0066CCFF0099CCFF00CCCCFF00FFCC
FF0000FFFF0033FFFF0066FFFF0099FFFF00CCFFFF00FFFFFF00000080000080
000000808000800000008000800080800000C0C0C00080808000191919004C4C
4C00B2B2B200E5E5E500C8AC2800E0CC6600F2EABF00B59B2400D8E9EC009933
6600D075A300ECC6D900646F710099A8AC00E2EFF10000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000E8E8E8E8E8E8
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8180C
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E2DFE8E8E8E8E8E8E8E8E8E8E8E8E8181212
0CE8E8E8E8E8E8E8E8E8E8E8E8E28181DFE8E8E8E8E8E8E8E8E8E8E818121212
120CE8E8E8E8E8E8E8E8E8E8E281818181DFE8E8E8E8E8E8E8E8E81812121212
12120CE8E8E8E8E8E8E8E8E2818181818181DFE8E8E8E8E8E8E8E81812120C18
1212120CE8E8E8E8E8E8E8E28181DFE2818181DFE8E8E8E8E8E8E818120CE8E8
181212120CE8E8E8E8E8E8E281DFE8E8E2818181DFE8E8E8E8E8E8180CE8E8E8
E8181212120CE8E8E8E8E8E2DFE8E8E8E8E2818181DFE8E8E8E8E8E8E8E8E8E8
E8E8181212120CE8E8E8E8E8E8E8E8E8E8E8E2818181DFE8E8E8E8E8E8E8E8E8
E8E8E8181212120CE8E8E8E8E8E8E8E8E8E8E8E2818181DFE8E8E8E8E8E8E8E8
E8E8E8E81812120CE8E8E8E8E8E8E8E8E8E8E8E8E28181DFE8E8E8E8E8E8E8E8
E8E8E8E8E818120CE8E8E8E8E8E8E8E8E8E8E8E8E8E281DFE8E8E8E8E8E8E8E8
E8E8E8E8E8E8180CE8E8E8E8E8E8E8E8E8E8E8E8E8E8E2DFE8E8E8E8E8E8E8E8
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8}
NumGlyphs = 2
end
object RzBitBtn3: TRzBitBtn
Left = 528
Top = 166
Width = 137
Height = 29
Cancel = True
Caption = #36864#20986
HotTrack = True
TabOrder = 4
OnClick = RzBitBtn3Click
Glyph.Data = {
36060000424D3606000000000000360400002800000020000000100000000100
08000000000000020000630B0000630B00000001000000000000000000003300
00006600000099000000CC000000FF0000000033000033330000663300009933
0000CC330000FF33000000660000336600006666000099660000CC660000FF66
000000990000339900006699000099990000CC990000FF99000000CC000033CC
000066CC000099CC0000CCCC0000FFCC000000FF000033FF000066FF000099FF
0000CCFF0000FFFF000000003300330033006600330099003300CC003300FF00
330000333300333333006633330099333300CC333300FF333300006633003366
33006666330099663300CC663300FF6633000099330033993300669933009999
3300CC993300FF99330000CC330033CC330066CC330099CC3300CCCC3300FFCC
330000FF330033FF330066FF330099FF3300CCFF3300FFFF3300000066003300
66006600660099006600CC006600FF0066000033660033336600663366009933
6600CC336600FF33660000666600336666006666660099666600CC666600FF66
660000996600339966006699660099996600CC996600FF99660000CC660033CC
660066CC660099CC6600CCCC6600FFCC660000FF660033FF660066FF660099FF
6600CCFF6600FFFF660000009900330099006600990099009900CC009900FF00
990000339900333399006633990099339900CC339900FF339900006699003366
99006666990099669900CC669900FF6699000099990033999900669999009999
9900CC999900FF99990000CC990033CC990066CC990099CC9900CCCC9900FFCC
990000FF990033FF990066FF990099FF9900CCFF9900FFFF99000000CC003300
CC006600CC009900CC00CC00CC00FF00CC000033CC003333CC006633CC009933
CC00CC33CC00FF33CC000066CC003366CC006666CC009966CC00CC66CC00FF66
CC000099CC003399CC006699CC009999CC00CC99CC00FF99CC0000CCCC0033CC
CC0066CCCC0099CCCC00CCCCCC00FFCCCC0000FFCC0033FFCC0066FFCC0099FF
CC00CCFFCC00FFFFCC000000FF003300FF006600FF009900FF00CC00FF00FF00
FF000033FF003333FF006633FF009933FF00CC33FF00FF33FF000066FF003366
FF006666FF009966FF00CC66FF00FF66FF000099FF003399FF006699FF009999
FF00CC99FF00FF99FF0000CCFF0033CCFF0066CCFF0099CCFF00CCCCFF00FFCC
FF0000FFFF0033FFFF0066FFFF0099FFFF00CCFFFF00FFFFFF00000080000080
000000808000800000008000800080800000C0C0C00080808000191919004C4C
4C00B2B2B200E5E5E500C8AC2800E0CC6600F2EABF00B59B2400D8E9EC009933
6600D075A300ECC6D900646F710099A8AC00E2EFF10000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000E8E8E8E8E8E8
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8B46C6C6CE8
E8E8E8E8B46C6C6CE8E8E8E2DFDFDFE8E8E8E8E8E2DFDFDFE8E8E8B49090906C
E8E8E8B49090906CE8E8E8E2818181DFE8E8E8E2818181DFE8E8E8E8B4909090
6CE8B49090906CE8E8E8E8E8E2818181DFE8E2818181DFE8E8E8E8E8E8B49090
906C9090906CE8E8E8E8E8E8E8E2818181DF818181DFE8E8E8E8E8E8E8E8B490
909090906CE8E8E8E8E8E8E8E8E8E28181818181DFE8E8E8E8E8E8E8E8E8E8B4
9090906CE8E8E8E8E8E8E8E8E8E8E8E2818181DFE8E8E8E8E8E8E8E8E8E8B490
909090906CE8E8E8E8E8E8E8E8E8E28181818181DFE8E8E8E8E8E8E8E8B49090
906C9090906CE8E8E8E8E8E8E8E2818181DF818181DFE8E8E8E8E8E8B4909090
6CE8B49090906CE8E8E8E8E8E2818181DFE8E2818181DFE8E8E8E8B49090906C
E8E8E8B49090906CE8E8E8E2818181DFE8E8E8E2818181DFE8E8E8B4B4B4B4E8
E8E8E8E8B4B4B4B4E8E8E8E2E2E2E2E8E8E8E8E8E2E2E2E2E8E8E8E8E8E8E8E8
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8
E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8}
NumGlyphs = 2
end
object MoneyRzEdit: TRzEdit
Left = 112
Top = 108
Width = 345
Height = 23
Text = '0.00'
Enabled = False
FrameHotTrack = True
FrameVisible = True
ImeName = #20013#25991'('#31616#20307') - '#25628#29399#25340#38899#36755#20837#27861
TabOrder = 1
OnExit = MoneyRzEditExit
OnKeyPress = MoneyRzEditKeyPress
end
object NoteMemo: TRzMemo
Left = 112
Top = 152
Width = 345
Height = 73
Enabled = False
ImeName = #20013#25991'('#31616#20307') - '#25628#29399#25340#38899#36755#20837#27861
TabOrder = 2
FrameHotTrack = True
FrameVisible = True
end
end
object PatientBaseQuery: TQuery
DatabaseName = 'CardData'
SQL.Strings = (
'SELECT PatientName ,'
' Sex ,'
' BirthDay ,'
' CardNo,'
' PrepayMoney ,'
' Tel,'
' Sex,'
' PersonID'
'FROM dbo.PatientBase(NOLOCK)'
'WHERE PatientID = :PatientID ')
Left = 144
Top = 40
ParamData = <
item
DataType = ftUnknown
Name = 'PatientID'
ParamType = ptUnknown
end>
end
object CheckQuery: TQuery
DatabaseName = 'CardData'
SQL.Strings = (
'SELECT PatientName ,'
' Sex ,'
' Tel,'
' BirthDay ,'
' CardNo'
'FROM dbo.PatientBase'
'WHERE PersonID = :PersonID ')
Left = 464
Top = 328
ParamData = <
item
DataType = ftUnknown
Name = 'PersonID'
ParamType = ptUnknown
end>
end
object ReturnQuery: TQuery
DatabaseName = 'CardData'
SQL.Strings = (
'DECLARE @money FLOAT'
'SELECT @money= PrepayMoney'
'FROM dbo.PatientBase'
'WHERE CardNo = :CardNo'
''
'IF (@money <> :money)'
'BEGIN'
' SELECT 1 AS result'
' RETURN'
'END'
''
'UPDATE dbo.PatientBase'
'SET PrepayMoney = :PrepayMoney'
'WHERE PatientID = :PatientID'
''
'INSERT INTO dbo.MZPrepay'
' ( PatientID ,'
' Amount ,'
' OperDate ,'
' OperName ,'
' Note,'
' PayWay,'
' Flag,'
' CardNo '
' )'
'VALUES ( :PatientID , '
' :Amount , '
' :OperDate , '
' :OperName , '
' :Note,'
' :PayWay, '
' :Flag,'
' :CardNo'
' )'
'SELECT 0 AS result'
' ')
Left = 496
Top = 448
ParamData = <
item
DataType = ftUnknown
Name = 'CardNo'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'money'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'PrepayMoney'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'PatientID'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'PatientID'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'Amount'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'OperDate'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'OperName'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'Note'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'PayWay'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'Flag'
ParamType = ptUnknown
end
item
DataType = ftUnknown
Name = 'CardNo'
ParamType = ptUnknown
end>
end
object frxReport1: TfrxReport
Version = '4.13.1'
DotMatrixReport = False
IniFile = '\Software\Fast Reports'
PreviewOptions.Buttons = [pbPrint, pbLoad, pbSave, pbExport, pbZoom, pbFind, pbOutline, pbPageSetup, pbTools, pbEdit, pbNavigator, pbExportQuick]
PreviewOptions.Zoom = 1.000000000000000000
PrintOptions.Printer = #39044#35774
PrintOptions.PrintOnSheet = 0
ReportOptions.CreateDate = 42867.850296469900000000
ReportOptions.LastChange = 42881.891422592590000000
ScriptLanguage = 'PascalScript'
ScriptText.Strings = (
'begin'
''
'end.')
Left = 186
Top = 36
Datasets = <>
Variables = <
item
Name = ' New Category1'
Value = Null
end
item
Name = 'SJNum'
Value = ''
end
item
Name = 'CardNo'
Value = ''
end
item
Name = 'Name'
Value = ''
end
item
Name = 'PayType'
Value = ''
end
item
Name = 'DXMoney'
Value = ''
end
item
Name = 'XXMoney'
Value = ''
end
item
Name = 'Admin'
Value = ''
end
item
Name = 'PayDate'
Value = ''
end
item
Name = 'UnitName'
Value = ''
end>
Style = <>
object Data: TfrxDataPage
Height = 1000.000000000000000000
Width = 1000.000000000000000000
end
object Page1: TfrxReportPage
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = #23435#20307
Font.Style = []
PaperWidth = 105.000000000000000000
PaperHeight = 69.900000000000000000
PaperSize = 256
LeftMargin = 5.100000000000000000
RightMargin = 5.100000000000000000
TopMargin = 5.100000000000000000
BottomMargin = 5.100000000000000000
object Memo4: TfrxMemoView
Align = baLeft
Top = 60.472480000000000000
Width = 64.252010000000000000
Height = 18.897650000000000000
ShowHint = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = #23435#20307
Font.Style = []
GapX = 5.000000000000000000
Memo.UTF8 = (
#21345#21495':')
ParentFont = False
VAlign = vaCenter
end
object Memo5: TfrxMemoView
Align = baWidth
Left = 64.252010000000000000
Top = 60.472480000000000000
Width = 294.047434000000000000
Height = 18.897650000000000000
ShowHint = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = #23435#20307
Font.Style = []
GapX = 5.000000000000000000
Memo.UTF8 = (
'[CardNo]')
ParentFont = False
VAlign = vaCenter
end
object Memo6: TfrxMemoView
Align = baLeft
Top = 86.929190000000000000
Width = 64.252010000000000000
Height = 18.897650000000000000
ShowHint = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = #23435#20307
Font.Style = []
GapX = 5.000000000000000000
Memo.UTF8 = (
#22995#21517':')
ParentFont = False
VAlign = vaCenter
end
object Memo7: TfrxMemoView
Align = baWidth
Left = 64.252010000000000000
Top = 86.929190000000000000
Width = 294.047434000000000000
Height = 18.897650000000000000
ShowHint = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = #23435#20307
Font.Style = []
GapX = 5.000000000000000000
Memo.UTF8 = (
'[Name]')
ParentFont = False
VAlign = vaCenter
end
object Memo8: TfrxMemoView
Align = baLeft
Top = 166.299320000000000000
Width = 68.031540000000000000
Height = 18.897650000000000000
ShowHint = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = #23435#20307
Font.Style = []
Frame.Typ = [ftBottom]
HAlign = haRight
Memo.UTF8 = (
#22823#20889#37329#39069':')
ParentFont = False
VAlign = vaCenter
end
object Memo9: TfrxMemoView
Align = baWidth
Left = 68.031540000000000000
Top = 166.299320000000000000
Width = 290.267904000000000000
Height = 18.897650000000000000
ShowHint = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = #23435#20307
Font.Style = []
Frame.Typ = [ftBottom]
Memo.UTF8 = (
'[DXMoney]')
ParentFont = False
VAlign = vaCenter
end
object Memo12: TfrxMemoView
Align = baLeft
Top = 113.385900000000000000
Width = 71.811070000000000000
Height = 18.897650000000000000
ShowHint = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = #23435#20307
Font.Style = []
Frame.Typ = [ftBottom]
GapX = 5.000000000000000000
Memo.UTF8 = (
#36864#27454#26041#24335':')
ParentFont = False
VAlign = vaCenter
end
object Memo13: TfrxMemoView
Align = baWidth
Left = 71.811070000000000000
Top = 113.385900000000000000
Width = 286.488374000000000000
Height = 18.897650000000000000
ShowHint = False