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
{
    "Version":"6.6.6.0",
    "Title":"7-2e.脚本.自定义统计(计算字段).grf",
    "Author":"锐浪报表软件",
    "Description":"添加计算字段实现按条件统计数据\r\n\r\n实现要点:\r\n1、在明细记录集中加入数据源中不存在的字段,此类字段称为计算字段。\r\n2、在明细记录集的“提交记录前”属性写报表脚本,按条件给各个计算字段设置值。\r\n3、在分组尾用统计框对计算字段进行统计。",
    "Font":{
        "Name":"宋体",
        "Size":105000,
        "Weight":400,
        "Charset":134
    },
    "Printer":{
        "LeftMargin":1.5,
        "RightMargin":1.5
    },
    "DetailGrid":{
        "CenterView":true,
        "ColLine":{
            "Color":"646F71"
        },
        "RowLine":{
            "Color":"646F71"
        },
        "Recordset":{
            "ConnectionString":"Provider=Microsoft.Jet.OLEDB.4.0;\r\nUser ID=Admin;\r\nData Source=..\\Data\\Northwind.mdb",
            "QuerySQL":"select m.CustomerId,c.CompanyName,m.OrderID,m.OrderDate,m.ShipVia,s.CompanyName as Shipper,m.Freight\r\nfrom (Orders m left join Customers c on c.CustomerID=m.CustomerID) inner join Shippers s on m.ShipVia=s.ShipperID\r\nwhere  m.CustomerId>'B' and m.CustomerId<'D'\r\norder by m.CustomerId,m.OrderID",
            "BeforePostRecordScript":"var ShipVia = Sender.Fields.Item(\"ShipVia\").AsInteger,\r\n    Freight = Sender.Fields.Item(\"Freight\").AsFloat;\r\nif (ShipVia === 1)\r\n    Sender.Fields.Item(\"FreightEMS\").AsFloat = Freight;\r\nelse if (ShipVia === 2)\r\n    Sender.Fields.Item(\"FreightSF\").AsFloat = Freight;\r\nelse if (ShipVia === 3)\r\n    Sender.Fields.Item(\"FreightYT\").AsFloat = Freight;\r\n",
            "Field":[
                {
                    "Name":"OrderID",
                    "Type":"Integer"
                },
                {
                    "Name":"CustomerId"
                },
                {
                    "Name":"CompanyName"
                },
                {
                    "Name":"OrderDate",
                    "Type":"DateTime",
                    "Format":"yyyy//MM//dd"
                },
                {
                    "Name":"Freight",
                    "Type":"Currency",
                    "Format":"#,##0.00"
                },
                {
                    "Name":"ShipVia",
                    "Type":"Integer"
                },
                {
                    "Name":"Shipper"
                },
                {
                    "Name":"FreightEMS",
                    "Type":"Currency",
                    "Format":"#,##0.00"
                },
                {
                    "Name":"FreightSF",
                    "Type":"Currency",
                    "Format":"#,##0.00"
                },
                {
                    "Name":"FreightYT",
                    "Type":"Currency",
                    "Format":"#,##0.00"
                }
            ]
        },
        "Column":[
            {
                "Name":"OrderID",
                "Width":2.16958
            },
            {
                "Name":"OrderDate",
                "Width":3.20146
            },
            {
                "Name":"ShipVia",
                "Width":2.80458
            },
            {
                "Name":"Freight",
                "Width":2.38125
            },
            {
                "Name":"Column1",
                "Width":3.20146
            },
            {
                "Name":"Column2",
                "Width":2.38
            },
            {
                "Name":"Column3",
                "Width":2.38
            }
        ],
        "ColumnContent":{
            "Height":0.608542,
            "ColumnContentCell":[
                {
                    "Column":"OrderID",
                    "TextAlign":"MiddleCenter",
                    "DataField":"OrderID"
                },
                {
                    "Column":"OrderDate",
                    "TextAlign":"MiddleCenter",
                    "DataField":"OrderDate"
                },
                {
                    "Column":"ShipVia",
                    "DataField":"Shipper"
                },
                {
                    "Column":"Freight",
                    "TextAlign":"MiddleRight",
                    "DataField":"Freight"
                },
                {
                    "Column":"Column1",
                    "TextAlign":"MiddleRight",
                    "DataField":"FreightEMS"
                },
                {
                    "Column":"Column2",
                    "TextAlign":"MiddleRight",
                    "DataField":"FreightSF"
                },
                {
                    "Column":"Column3",
                    "TextAlign":"MiddleRight",
                    "DataField":"FreightYT"
                }
            ]
        },
        "ColumnTitle":{
            "BackColor":"E2EFF1",
            "Height":0.582083,
            "Font":{
                "Name":"宋体",
                "Size":105000,
                "Bold":true,
                "Charset":134
            },
            "RepeatStyle":"OnGroupHeaderPage",
            "ColumnTitleCell":[
                {
                    "GroupTitle":false,
                    "Column":"OrderID",
                    "TextAlign":"MiddleCenter",
                    "Text":"订单编号"
                },
                {
                    "GroupTitle":false,
                    "Column":"OrderDate",
                    "TextAlign":"MiddleCenter",
                    "Text":"订货日期"
                },
                {
                    "GroupTitle":false,
                    "Column":"ShipVia",
                    "TextAlign":"MiddleCenter",
                    "Text":"运货商"
                },
                {
                    "GroupTitle":false,
                    "Column":"Freight",
                    "TextAlign":"MiddleCenter",
                    "Text":"运费"
                },
                {
                    "GroupTitle":false,
                    "Column":"Column1",
                    "TextAlign":"MiddleCenter",
                    "Text":"EMS运费"
                },
                {
                    "GroupTitle":false,
                    "Column":"Column2",
                    "TextAlign":"MiddleCenter",
                    "Text":"顺丰运费"
                },
                {
                    "GroupTitle":false,
                    "Column":"Column3",
                    "TextAlign":"MiddleCenter",
                    "Text":"圆通运费"
                }
            ]
        },
        "Group":[
            {
                "Name":"Group1",
                "ByFields":"CustomerId",
                "GroupHeader":{
                    "Height":0.79375,
                    "Font":{
                        "Name":"宋体",
                        "Size":105000,
                        "Bold":true,
                        "Charset":134
                    },
                    "PrintGridBorder":false,
                    "Control":[
                        {
                            "Type":"FieldBox",
                            "Name":"FieldBox1",
                            "Width":2.59292,
                            "Height":0.79375,
                            "DataField":"CustomerId"
                        },
                        {
                            "Type":"FieldBox",
                            "Name":"FieldBox2",
                            "Left":2.59292,
                            "Width":3.99521,
                            "Height":0.79375,
                            "DataField":"CompanyName"
                        }
                    ]
                },
                "GroupFooter":{
                    "BackColor":"E1FFFF",
                    "Height":2.40771,
                    "Font":{
                        "Name":"宋体",
                        "Size":105000,
                        "Bold":true,
                        "Charset":134
                    },
                    "PrintGridBorder":false,
                    "Control":[
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox2",
                            "BackColor":"FFFFFF",
                            "Width":2.01083,
                            "Height":0.608542,
                            "Text":"运费统计"
                        },
                        {
                            "Type":"SummaryBox",
                            "Name":"sumAmt",
                            "BackColor":"FFFFFF",
                            "AlignColumn":"Freight",
                            "Left":8.17563,
                            "Width":2.40771,
                            "Height":0.608542,
                            "TextAlign":"MiddleRight",
                            "DataField":"FreightEMS",
                            "Format":"#,##0.00"
                        },
                        {
                            "Type":"SummaryBox",
                            "Name":"SummaryBox1",
                            "BackColor":"FFFFFF",
                            "AlignColumn":"Freight",
                            "Left":8.17563,
                            "Top":0.608542,
                            "Width":2.40771,
                            "Height":0.582083,
                            "TextAlign":"MiddleRight",
                            "DataField":"FreightSF",
                            "Format":"#,##0.00"
                        },
                        {
                            "Type":"SummaryBox",
                            "Name":"SummaryBox2",
                            "BackColor":"FFFFFF",
                            "AlignColumn":"Freight",
                            "Left":8.17563,
                            "Top":1.19063,
                            "Width":2.40771,
                            "Height":0.608542,
                            "TextAlign":"MiddleRight",
                            "DataField":"FreightYT",
                            "Format":"#,##0.00"
                        },
                        {
                            "Type":"SummaryBox",
                            "Name":"SummaryBox3",
                            "BackColor":"FFFFFF",
                            "AlignColumn":"Freight",
                            "Left":8.17563,
                            "Top":1.79917,
                            "Width":2.40771,
                            "Height":0.608542,
                            "TextAlign":"MiddleRight",
                            "DataField":"Freight",
                            "Format":"#,##0.00"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox3",
                            "BackColor":"FFFFFF",
                            "AlignColumn":"ShipVia",
                            "Left":5.37104,
                            "Width":2.83104,
                            "Height":0.608542,
                            "TextAlign":"MiddleRight",
                            "Text":"邮政EMS:"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox4",
                            "BackColor":"FFFFFF",
                            "AlignColumn":"ShipVia",
                            "Left":5.37104,
                            "Top":0.608542,
                            "Width":2.83104,
                            "Height":0.582083,
                            "TextAlign":"MiddleRight",
                            "Text":"顺丰快递:"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox5",
                            "BackColor":"FFFFFF",
                            "AlignColumn":"ShipVia",
                            "Left":5.37104,
                            "Top":1.19063,
                            "Width":2.83104,
                            "Height":0.608542,
                            "TextAlign":"MiddleRight",
                            "Text":"圆通快递:"
                        },
                        {
                            "Type":"StaticBox",
                            "Name":"StaticBox6",
                            "BackColor":"FFFFFF",
                            "AlignColumn":"ShipVia",
                            "Left":5.37104,
                            "Top":1.79917,
                            "Width":2.83104,
                            "Height":0.608542,
                            "TextAlign":"MiddleRight",
                            "Text":"合计:"
                        }
                    ]
                }
            }
        ]
    },
    "ReportHeader":[
        {
            "Height":1.79917,
            "Control":[
                {
                    "Type":"StaticBox",
                    "Name":"TitleBox",
                    "Center":"Horizontal",
                    "Left":5.37104,
                    "Top":0.211667,
                    "Width":7.80521,
                    "Height":0.582083,
                    "Font":{
                        "Name":"宋体",
                        "Size":150000,
                        "Bold":true,
                        "Charset":134
                    },
                    "TextAlign":"MiddleCenter",
                    "Text":"按条件统计数据(分类别统计)"
                },
                {
                    "Type":"StaticBox",
                    "Name":"StaticBox7",
                    "Center":"Horizontal",
                    "Left":3.14854,
                    "Top":0.79375,
                    "Width":12.2238,
                    "Height":0.608542,
                    "Font":{
                        "Name":"宋体",
                        "Size":142500,
                        "Weight":400,
                        "Charset":134
                    },
                    "TextAlign":"MiddleCenter",
                    "Text":"用计算字段实现只统计满足条件的数据"
                }
            ]
        }
    ]
}