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
{
    "Version":"6.8.5.0",
    "Title":"6j.多联票据非复写纸",
    "Author":"锐浪报表软件",
    "Description":"目的:将单据在一张纸上重复打印,产生不同的联次,一联中还要控制显示的行数,超过的行在下一页继续显示\r\n\r\n实现要点:\r\n1、通过SQL的UNION将相同的数据重复产生。\r\n2、在SQL中增加辅助字段,联次(ToWho)字段与页号(PageNo)字段。联次字段指定数据应该打印在哪一联,页号字段指定本笔数据属\r\r\n于此单的第几页数据。\r\n3、在报表主对象的“开始处理脚本”属性上写报表脚本,根据单号、联次与每页显示行数确定每一笔数据的页号值。\r\n4、在记录集上定义“排序字段”属性,排序字段依次为单号、页号与联次。\r\n5、定义分组的依据字段为单号、页号与联次。\r\n6、每联的指示文字(如:存根联、客户联)在浮动部件框中定义,并在报表主对象的“页开始脚本”属性上写脚本控制其在当前页中\r\r\n是否显示。注意:这里的浮动部件框是重叠的,目的是为了让指示文字显示在相同的位置。\r\n\r\n更多说明:\r\n1、如果一次只要打印一笔单的数据,以上单号字段相关部分可以去掉。\r\n2、如果是要打印3联或4联,则需要多增加SQL中UNION的次数,并给每个子SQL中的联次(ToWho)字段指定不同的常数。 \r\n",
    "PageDivideCount":2,
    "Font":{
        "Name":"宋体",
        "Size":105000,
        "Weight":400,
        "Charset":134
    },
    "ProcessBeginScript":"//根据单号、联次与每页显示行数确定每一笔数据的页号值\r\nvar Recordset = Report.DetailGrid.Recordset;\r\nvar OrderIDFld = Recordset.Fields.Item(\"OrderID\"); //单号字段\r\nvar ToWhoFld = Recordset.Fields.Item(\"ToWho\");  //联次子段\r\nvar PageNoFld = Recordset.Fields.Item(\"PageNo\"); //页号字段\r\nvar RowsPerPage = Report.DetailGrid.ColumnContent.RowsPerPage; //每页行数\r\n\r\nvar CurOrderID=0;\r\nvar CurToWho = 0;\r\nvar CurOrderCount=0;\r\nRecordset.First();\r\nwhile ( !Recordset.Eof() )\r\n{\r\n  var OrderID = OrderIDFld.AsInteger;\r\n  var ToWho = ToWhoFld.AsInteger;\r\n  if ((OrderID != CurOrderID) || (ToWho != CurToWho)) //判断单号与联次是否变化\r\n  {\r\n    CurOrderID = OrderID;\r\n    CurToWho = ToWho;\r\n    CurOrderCount=0;\r\n  }\r\n\r\n  //设置页号字段,修改记录集的记录,开始必须调Edit方法,完成时必须调Post方法\r\n  Recordset.Edit();\r\n  PageNoFld.AsInteger = parseInt(CurOrderCount/RowsPerPage) + 1; \r\n  Recordset.Post();\r\n\r\n  ++CurOrderCount;\r\n  Recordset.Next();\r\n}",
    "PageStartScript":"//根据页号确定联次指示文字是否显示。“%”表示摸除运算\r\nvar isUpPage = (Report.SystemVarValue(3) %2 ==1); //grsvPageNumber==3\r\nReport.ControlByName(\"mbSelf\").Visible = isUpPage ; \r\nReport.ControlByName(\"mbCustomer\").Visible = !isUpPage ; ",
    "Printer":{
    },
    "DetailGrid":{
        "CenterView":true,
        "AppendBlankRow":true,
        "ColLine":{
            "Color":"646F71"
        },
        "RowLine":{
            "Color":"646F71"
        },
        "Recordset":{
            "ConnectionString":"Provider=Microsoft.Jet.OLEDB.4.0;\r\nUser ID=Admin;\r\nData Source=C:\\Grid++Report 6\\Samples\\Data\\Northwind.mdb",
            "QuerySQL":"select m.OrderID as OrderID, 1 as ToWho, 1 as PageNo, m.CustomerId,c.CompanyName,c.Address,m.OrderDate,M.Freight,\r\nd.ProductID,p.ProductName,d.UnitPrice,d.Quantity,d.UnitPrice*d.Quantity as Amount\r\nfrom (Orders m inner join \r\n(OrderDetails d inner join Products p on P.ProductID=D.ProductID) on m.OrderId=d.OrderId)\r\nleft join Customers c on c.CustomerID=m.CustomerID\r\nwhere m.OrderID<10252\r\nunion\r\nselect m.OrderID as OrderID, 2 as ToWho, 1 as PageNo, m.CustomerId,c.CompanyName,c.Address,m.OrderDate,M.Freight,\r\nd.ProductID,p.ProductName,d.UnitPrice,d.Quantity,d.UnitPrice*d.Quantity as Amount\r\nfrom (Orders m inner join \r\n(OrderDetails d inner join Products p on P.ProductID=D.ProductID) on m.OrderId=d.OrderId)\r\nleft join Customers c on c.CustomerID=m.CustomerID\r\nwhere m.OrderID<10252\r\n\r\norder by OrderID, ToWho",
            "SortFields":"OrderID;PageNo;ToWho",
            "Field":[
                {
                    "Name":"OrderID",
                    "Type":"Integer"
                },
                {
                    "Name":"ToWho",
                    "Type":"Integer",
                    "GetDisplayTextScript":"if (Sender.AsInteger ==1 )\r\n  Sender.DisplayText = \"存根联\";\r\nelse\r\n  Sender.DisplayText = \"客户联\";\r\n"
                },
                {
                    "Name":"PageNo",
                    "Type":"Integer"
                },
                {
                    "Name":"ProductID",
                    "Type":"Integer"
                },
                {
                    "Name":"ProductName"
                },
                {
                    "Name":"Quantity",
                    "Type":"Float",
                    "Format":"0"
                },
                {
                    "Name":"UnitPrice",
                    "Type":"Float",
                    "Format":"#,##0.00"
                },
                {
                    "Name":"Discount",
                    "Type":"Float",
                    "Format":"0.00%"
                },
                {
                    "Name":"CustomerId"
                },
                {
                    "Name":"CompanyName"
                },
                {
                    "Name":"OrderDate",
                    "Type":"DateTime",
                    "Format":"yyyy/MM/dd"
                },
                {
                    "Name":"Freight",
                    "Type":"Currency"
                },
                {
                    "Name":"Amount",
                    "Type":"Currency",
                    "Format":"#,##0.00"
                },
                {
                    "Name":"Address"
                }
            ]
        },
        "Column":[
            {
                "Name":"ProductID",
                "Width":1.93146
            },
            {
                "Name":"ProductName",
                "Width":5.74146
            },
            {
                "Name":"Qty",
                "Width":2.06375
            },
            {
                "Name":"UnitPrice",
                "Width":2.56646
            },
            {
                "Name":"Extented",
                "Width":3.33375
            }
        ],
        "ColumnContent":{
            "Height":0.714375,
            "AdjustRowHeight":false,
            "RowsPerPage":6,
            "ColumnContentCell":[
                {
                    "Column":"ProductID",
                    "DataField":"ProductID"
                },
                {
                    "Column":"ProductName",
                    "DataField":"ProductName"
                },
                {
                    "Column":"Qty",
                    "TextAlign":"MiddleRight",
                    "DataField":"Quantity"
                },
                {
                    "Column":"UnitPrice",
                    "TextAlign":"MiddleRight",
                    "DataField":"UnitPrice"
                },
                {
                    "Column":"Extented",
                    "TextAlign":"MiddleRight",
                    "DataField":"Amount"
                }
            ]
        },
        "ColumnTitle":{
            "Height":0.608542,
            "RepeatStyle":"OnGroupHeader",
            "ColumnTitleCell":[
                {
                    "GroupTitle":false,
                    "Column":"ProductID",
                    "PrintType":"Form",
                    "Text":"货品编号"
                },
                {
                    "GroupTitle":false,
                    "Column":"ProductName",
                    "PrintType":"Form",
                    "Text":"货品名称"
                },
                {
                    "GroupTitle":false,
                    "Column":"Qty",
                    "TextAlign":"MiddleCenter",
                    "PrintType":"Form",
                    "Text":"数量"
                },
                {
                    "GroupTitle":false,
                    "Column":"UnitPrice",
                    "PrintType":"Form",
                    "Text":"单价"
                },
                {
                    "GroupTitle":false,
                    "Column":"Extented",
                    "PrintType":"Form",
                    "Text":"金额"
                }
            ]
        },
        "Group":[
            {
                "Name":"Group1",
                "ByFields":"OrderID;PageNo;ToWho",
                "GroupHeader":{
                    "Height":2.98979,
                    "PrintGridBorder":false,
                    "Control":[
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox33",
                            "Center":"Horizontal",
                            "Left":5.715,
                            "Top":0.185208,
                            "Width":4.15396,
                            "Height":0.47625,
                            "PrintType":"Form",
                            "Font":{
                                "Name":"宋体",
                                "Size":120000,
                                "Weight":400,
                                "Charset":134
                            },
                            "TextAlign":"MiddleCenter",
                            "Text":"北风贸易有限公司"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox38",
                            "Center":"Horizontal",
                            "Left":5.68854,
                            "Top":0.687917,
                            "Width":4.20688,
                            "Height":0.714375,
                            "PrintType":"Form",
                            "Font":{
                                "Name":"楷体",
                                "Size":157500,
                                "Weight":400,
                                "Charset":134
                            },
                            "TextAlign":"MiddleCenter",
                            "Text":"销售发货单"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox40",
                            "Left":6.77333,
                            "Top":1.56104,
                            "Width":1.19063,
                            "Height":0.635,
                            "Font":{
                                "Name":"宋体",
                                "Size":105000,
                                "Bold":true,
                                "Charset":134
                            },
                            "Text":"客户:"
                        },
                        {
                            "Type":"FieldBox",
                            "Name":"FieldBox1",
                            "Left":7.96396,
                            "Top":1.5875,
                            "Width":7.43479,
                            "Height":0.608542,
                            "DataField":"CompanyName"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox41",
                            "Left":6.77333,
                            "Top":2.19604,
                            "Width":1.19063,
                            "Height":0.608542,
                            "Font":{
                                "Name":"宋体",
                                "Size":105000,
                                "Bold":true,
                                "Charset":134
                            },
                            "Text":"地址:"
                        },
                        {
                            "Type":"FieldBox",
                            "Name":"FieldBox2",
                            "Left":7.96396,
                            "Top":2.19604,
                            "Width":7.43479,
                            "Height":0.608542,
                            "DataField":"Address"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox42",
                            "Top":1.56104,
                            "Width":1.19063,
                            "Height":0.635,
                            "Font":{
                                "Name":"宋体",
                                "Size":105000,
                                "Bold":true,
                                "Charset":134
                            },
                            "Text":"单号:"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox43",
                            "Top":2.19604,
                            "Width":1.19063,
                            "Height":0.608542,
                            "Font":{
                                "Name":"宋体",
                                "Size":105000,
                                "Bold":true,
                                "Charset":134
                            },
                            "Text":"日期:"
                        },
                        {
                            "Type":"FieldBox",
                            "Name":"FieldBox4",
                            "Left":1.19063,
                            "Top":2.19604,
                            "Width":4.20688,
                            "Height":0.608542,
                            "DataField":"OrderDate"
                        },
                        {
                            "Type":"FieldBox",
                            "Name":"FieldBox5",
                            "ForeColor":"0000FF",
                            "Left":1.19063,
                            "Top":1.5875,
                            "Width":4.20688,
                            "Height":0.608542,
                            "DataField":"OrderID"
                        }
                    ]
                },
                "GroupFooter":{
                    "Height":1.5875,
                    "NewPage":"After",
                    "PrintGridBorder":false,
                    "Control":[
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox34",
                            "Left":4.97417,
                            "Top":0.185208,
                            "Width":1.98438,
                            "Height":0.608542,
                            "Font":{
                                "Name":"宋体",
                                "Size":105000,
                                "Bold":true,
                                "Charset":134
                            },
                            "Text":"商品金额:"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox35",
                            "Left":-0.0264583,
                            "Top":0.185208,
                            "Width":1.37583,
                            "Height":0.608542,
                            "Font":{
                                "Name":"宋体",
                                "Size":105000,
                                "Bold":true,
                                "Charset":134
                            },
                            "Text":"运费:"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox36",
                            "Left":11.1919,
                            "Top":0.211667,
                            "Width":1.64042,
                            "Height":0.608542,
                            "Font":{
                                "Name":"宋体",
                                "Size":105000,
                                "Bold":true,
                                "Charset":134
                            },
                            "Text":"总金额:"
                        },
                        {
                            "Type":"SummaryBox",
                            "Name":"AmtSummaryBox",
                            "Left":6.985,
                            "Top":0.185208,
                            "Width":2.80458,
                            "Height":0.608542,
                            "TextAlign":"MiddleRight",
                            "DataField":"Amount",
                            "Format":"#,##0.00"
                        },
                        {
                            "Type":"MemoBox",
                            "Name":"MemoBox7",
                            "Left":12.7794,
                            "Top":0.211667,
                            "Width":2.80458,
                            "Height":0.608542,
                            "TextAlign":"MiddleRight",
                            "Text":"[#Sum(Amount)+Freight:#,##0.00#]"
                        },
                        {
                            "Type":"FieldBox",
                            "Name":"FieldBox3",
                            "Left":1.40229,
                            "Top":0.211667,
                            "Width":3.20146,
                            "Height":0.582083,
                            "DataField":"Freight"
                        },
                        {
                            "Type":"MemoBox",
                            "Name":"MemoBox8",
                            "ForeColor":"0000FF",
                            "Top":0.79375,
                            "Width":15.6104,
                            "Height":0.79375,
                            "Font":{
                                "Name":"宋体",
                                "Size":105000,
                                "Bold":true,
                                "Charset":134
                            },
                            "Text":"单号:[#OrderID#],本单第[#PageNo#]页,[#ToWho#],设计说明参考报表的“报表信息->简介”属性值。"
                        }
                    ],
                    "AppendBlankRowExclude":true
                }
            }
        ]
    },
    "Control":[
        {
            "Type":"MemoBox",
            "Name":"mbSelf",
            "Left":18.6002,
            "Top":3.20146,
            "Width":0.79375,
            "Height":8.81062,
            "TextAlign":"MiddleCenter",
            "TextOrientation":"U2DL2R0",
            "Text":"第一联:存根"
        },
        {
            "Type":"MemoBox",
            "Name":"mbCustomer",
            "Left":18.6002,
            "Top":3.20146,
            "Width":0.79375,
            "Height":8.81062,
            "TextAlign":"MiddleCenter",
            "TextOrientation":"U2DL2R0",
            "Text":"第二联:客户 "
        }
    ]
}