jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition">
    <dd:Name xmlns:dd="http://schemas.datadynamics.com/reporting/2005/02/reportdefinition">OutFromOrderReport.rdlx</dd:Name>
    <PageHeader>
        <Height>0in</Height>
        <PrintOnFirstPage>true</PrintOnFirstPage>
        <PrintOnLastPage>true</PrintOnLastPage>
        <Style />
    </PageHeader>
    <Body>
        <Height>12cm</Height>
        <ReportItems>
            <Textbox Name="TextBox2">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>0.1364994in</Left>
                <Value>客户编号:</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>1.6cm</Top>
                <Width>1.8cm</Width>
                <ZIndex>15</ZIndex>
            </Textbox>
            <Textbox Name="TextBox3">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>0.1364994in</Left>
                <Value>客户联系人:</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>2.4cm</Top>
                <Width>2.4cm</Width>
                <ZIndex>16</ZIndex>
            </Textbox>
            <Textbox Name="TextBox4">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>0.1364994in</Left>
                <Value>收货地址:</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>3.4cm</Top>
                <Width>1.8055cm</Width>
                <ZIndex>17</ZIndex>
            </Textbox>
            <Textbox Name="TextBox5">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>5.988684cm</Left>
                <Value>客户名称:</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>1.6cm</Top>
                <Width>1.8cm</Width>
                <ZIndex>18</ZIndex>
            </Textbox>
            <Textbox Name="TextBox7">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>15.39431cm</Left>
                <Value>业务日期:</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>2.4cm</Top>
                <Width>1.8cm</Width>
                <ZIndex>20</ZIndex>
            </Textbox>
            <Textbox Name="TextBox8">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>5.194309cm</Left>
                <Value>电话:</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>2.4cm</Top>
                <Width>2cm</Width>
                <ZIndex>21</ZIndex>
            </Textbox>
            <Textbox Name="TextBox14">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>10.39431cm</Left>
                <Value>出库订单:</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>2.4cm</Top>
                <Width>1.8cm</Width>
                <ZIndex>24</ZIndex>
            </Textbox>
            <Textbox Name="TextBox53">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>2.146709cm</Left>
                <Value>=First(Fields!客户编号.Value, "DataSet_MST")</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>1.6cm</Top>
                <Width>2.5cm</Width>
                <ZIndex>26</ZIndex>
            </Textbox>
            <Textbox Name="TextBox55">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>1.994309cm</Left>
                <Value>=First(Fields!收货地址.Value, "DataSet_MST")</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>3.4cm</Top>
                <Width>12.9584cm</Width>
                <ZIndex>28</ZIndex>
            </Textbox>
            <Textbox Name="TextBox56">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>7.787851cm</Left>
                <Value>=First(Fields!客户名称.Value, "DataSet_MST")</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>1.6cm</Top>
                <Width>7.0065cm</Width>
                <ZIndex>29</ZIndex>
            </Textbox>
            <Textbox Name="TextBox57">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>6.794309cm</Left>
                <Value>=First(Fields!收货人电话.Value, "DataSet_MST")</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>2.4cm</Top>
                <Width>3.4cm</Width>
                <ZIndex>30</ZIndex>
            </Textbox>
            <Textbox Name="TextBox62">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>12.19431cm</Left>
                <Value>=First(Fields!单号.Value, "DataSet_MST")</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>2.4cm</Top>
                <Width>3.0724cm</Width>
                <ZIndex>35</ZIndex>
            </Textbox>
            <Textbox Name="TextBox63">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>16.99431cm</Left>
                <Value>=First(Fields!业务日期.Value, "DataSet_MST")</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>2.4cm</Top>
                <Width>3.073cm</Width>
                <ZIndex>36</ZIndex>
            </Textbox>
            <Textbox Name="TextBox1">
                <CanGrow>true</CanGrow>
                <DataElementName>TextBox62</DataElementName>
                <Height>0.75cm</Height>
                <Left>16.99431cm</Left>
                <Value>=First(Fields!物流公司标签.Value, "DataSet_MST")</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>3.4cm</Top>
                <Width>3.0692cm</Width>
                <ZIndex>35</ZIndex>
            </Textbox>
            <Textbox Name="TextBox65">
                <CanGrow>true</CanGrow>
                <DataElementName>TextBox14</DataElementName>
                <Height>0.75cm</Height>
                <Left>15.19431cm</Left>
                <Value>物流公司:</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>3.4cm</Top>
                <Width>1.8032cm</Width>
                <ZIndex>24</ZIndex>
            </Textbox>
            <Textbox Name="TextBox54">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>2.746709cm</Left>
                <Value>=First(Fields!收货人.Value, "DataSet_MST")</Value>
                <Style>
                    <FontFamily>宋体</FontFamily>
                    <FontSize>9pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>2.4cm</Top>
                <Width>2.5cm</Width>
                <ZIndex>27</ZIndex>
            </Textbox>
            <Table Name="Table1">
                <DataSetName>DataSet_DTL</DataSetName>
                <Header>
                    <RepeatOnNewPage>true</RepeatOnNewPage>
                    <TableRows>
                        <TableRow>
                            <Height>0.795149cm</Height>
                            <TableCells>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox10">
                                            <CanGrow>true</CanGrow>
                                            <Value>行号</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox15">
                                            <CanGrow>true</CanGrow>
                                            <Value>物料编码</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox22">
                                            <CanGrow>true</CanGrow>
                                            <Value>物料名称</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox25">
                                            <CanGrow>true</CanGrow>
                                            <Value>规格型号</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox28">
                                            <CanGrow>true</CanGrow>
                                            <Value>图号</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox34">
                                            <CanGrow>true</CanGrow>
                                            <Value>生产批次</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox37">
                                            <CanGrow>true</CanGrow>
                                            <Value>数量</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox40">
                                            <CanGrow>true</CanGrow>
                                            <Value>单位</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                            </TableCells>
                        </TableRow>
                    </TableRows>
                </Header>
                <Details>
                    <TableRows>
                        <TableRow>
                            <Height>0.792351cm</Height>
                            <TableCells>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox16">
                                            <CanGrow>true</CanGrow>
                                            <Value>=Fields!行号.Value</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox18">
                                            <CanGrow>true</CanGrow>
                                            <Value>=Fields!物料编号.Value</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox23">
                                            <CanGrow>true</CanGrow>
                                            <Value>=Fields!物料名称.Value</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox26">
                                            <CanGrow>true</CanGrow>
                                            <Value>=Fields!规格型号.Value</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox29">
                                            <CanGrow>true</CanGrow>
                                            <Value>=Fields!图号.Value</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox35">
                                            <CanGrow>true</CanGrow>
                                            <Value>=Fields!生产批次.Value</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox38">
                                            <CanGrow>true</CanGrow>
                                            <Value>=Fields!数量.Value</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                                <TableCell>
                                    <ReportItems>
                                        <Textbox Name="TextBox41">
                                            <CanGrow>true</CanGrow>
                                            <Value>=Fields!计量单位.Value</Value>
                                            <Style>
                                                <FontFamily>宋体</FontFamily>
                                                <FontSize>9pt</FontSize>
                                                <FontStyle>Normal</FontStyle>
                                                <FontWeight>400</FontWeight>
                                                <PaddingBottom>2pt</PaddingBottom>
                                                <PaddingLeft>2pt</PaddingLeft>
                                                <PaddingRight>2pt</PaddingRight>
                                                <PaddingTop>2pt</PaddingTop>
                                                <TextAlign>Center</TextAlign>
                                                <VerticalAlign>Middle</VerticalAlign>
                                                <BorderStyle>
                                                    <Default>Solid</Default>
                                                </BorderStyle>
                                            </Style>
                                        </Textbox>
                                    </ReportItems>
                                </TableCell>
                            </TableCells>
                        </TableRow>
                    </TableRows>
                </Details>
                <Height>1.6cm</Height>
                <Left>0.394309cm</Left>
                <Style>
                    <Color>Black</Color>
                    <BorderStyle>
                        <Default>None</Default>
                    </BorderStyle>
                </Style>
                <TableColumns>
                    <TableColumn>
                        <Width>0.927443cm</Width>
                    </TableColumn>
                    <TableColumn>
                        <Width>3.601439cm</Width>
                    </TableColumn>
                    <TableColumn>
                        <Width>3.941631cm</Width>
                    </TableColumn>
                    <TableColumn>
                        <Width>3.2cm</Width>
                    </TableColumn>
                    <TableColumn>
                        <Width>3cm</Width>
                    </TableColumn>
                    <TableColumn>
                        <Width>2.60104cm</Width>
                    </TableColumn>
                    <TableColumn>
                        <Width>1.200551cm</Width>
                    </TableColumn>
                    <TableColumn>
                        <Width>1.400642cm</Width>
                    </TableColumn>
                </TableColumns>
                <Top>4.4cm</Top>
                <Width>19.87275cm</Width>
                <ZIndex>13</ZIndex>
            </Table>
            <Textbox Name="TextBox11">
                <CanGrow>true</CanGrow>
                <Height>0.75cm</Height>
                <Left>10.39431cm</Left>
                <Value>="第 " &amp; Globals!PageNumber &amp; " 页、共 " &amp; Globals!TotalPages &amp; " 页"</Value>
                <Style>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>6.6cm</Top>
                <Width>10.0819cm</Width>
                <ZIndex>37</ZIndex>
            </Textbox>
            <CustomReportItem Name="Barcode1">
                <Type>Barcode</Type>
                <Top>0.2cm</Top>
                <Left>17.8cm</Left>
                <Width>2.196cm</Width>
                <Height>1.9283cm</Height>
                <ZIndex>38</ZIndex>
                <Style>
                    <FontFamily>Courier New</FontFamily>
                    <FontSize>8pt</FontSize>
                    <Format>=""</Format>
                </Style>
                <CustomProperties>
                    <CustomProperty>
                        <Name>dd:Value</Name>
                        <Value>=First(Fields!单号.Value, "DataSet_MST")</Value>
                    </CustomProperty>
                    <CustomProperty>
                        <Name>dd:Symbology</Name>
                        <Value>QRCode</Value>
                    </CustomProperty>
                </CustomProperties>
            </CustomReportItem>
            <Textbox Name="TextBox64">
                <CanGrow>true</CanGrow>
                <Height>0.8cm</Height>
                <Left>6.6cm</Left>
                <Value>宁波三生生物科技有限公司
                    出库单</Value>
                <Style>
                    <FontFamily>微软雅黑</FontFamily>
                    <FontSize>16pt</FontSize>
                    <FontStyle>Normal</FontStyle>
                    <FontWeight>400</FontWeight>
                    <PaddingBottom>2pt</PaddingBottom>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                </Style>
                <Top>0.2cm</Top>
                <Width>8.8cm</Width>
                <ZIndex>1</ZIndex>
            </Textbox>
        </ReportItems>
        <Style />
    </Body>
    <PageFooter>
        <Height>0.8cm</Height>
        <PrintOnFirstPage>true</PrintOnFirstPage>
        <PrintOnLastPage>true</PrintOnLastPage>
        <Style />
    </PageFooter>
    <BottomMargin>0.2cm</BottomMargin>
    <LeftMargin>0.2cm</LeftMargin>
    <PageHeight>14cm</PageHeight>
    <PageWidth>21cm</PageWidth>
    <RightMargin>0.2cm</RightMargin>
    <TopMargin>0.2cm</TopMargin>
    <Width>8.346457in</Width>
    <ReportParameters>
        <ReportParameter Name="no">
            <DataType>String</DataType>
            <Prompt>单号</Prompt>
        </ReportParameter>
        <ReportParameter Name="tokenId">
            <DataType>String</DataType>
            <Prompt>tokenId</Prompt>
        </ReportParameter>
    </ReportParameters>
    <DataSources>
        <DataSource Name="OutFormOrderDS">
            <ConnectionProperties>
                <DataProvider>DATASET</DataProvider>
            </ConnectionProperties>
        </DataSource>
    </DataSources>
    <DataSets>
        <DataSet Name="DataSet_MST">
            <Fields>
                <Field Name="单号">
                    <DataField>CN_S_OP_NO</DataField>
                </Field>
                <Field Name="仓库编号">
                    <DataField>CN_S_STOCK_CODE</DataField>
                </Field>
                <Field Name="业务类型">
                    <DataField>CN_S_OP_TYPE</DataField>
                </Field>
                <Field Name="业务日期">
                    <DataField>CN_T_OP_DATE</DataField>
                </Field>
                <Field Name="物流公司标签">
                    <DataField>CN_S_LOGISTICS_FLAG</DataField>
                </Field>
                <Field Name="物料公司名称">
                    <DataField>CN_S_LOGISTICS_NAME</DataField>
                </Field>
                <Field Name="客户编号">
                    <DataField>CN_S_CUSTOMER</DataField>
                </Field>
                <Field Name="客户名称">
                    <DataField>CN_S_CUSTOMER_NAME</DataField>
                </Field>
                <Field Name="提货方式">
                    <DataField>CN_S_DELIVERY_MODE</DataField>
                </Field>
                <Field Name="来源单号">
                    <DataField>CN_S_FROM_NO</DataField>
                </Field>
                <Field Name="物流单号">
                    <DataField>CN_S_WAYBILL_NO</DataField>
                </Field>
                <Field Name="备注">
                    <DataField>CN_S_NOTE</DataField>
                </Field>
                <Field Name="收货人">
                    <DataField>CN_S_RECEIVER_NAME</DataField>
                </Field>
                <Field Name="收货人电话">
                    <DataField>CN_S_PHONE</DataField>
                </Field>
                <Field Name="收货人座机">
                    <DataField>CN_S_TEL</DataField>
                </Field>
                <Field Name="收货地址">
                    <DataField>CN_S_DETAIL_ADDRESS</DataField>
                </Field>
            </Fields>
            <Query>
                <CommandText />
                <DataSourceName>OutFormOrderDS</DataSourceName>
            </Query>
        </DataSet>
        <DataSet Name="DataSet_DTL">
            <Fields>
                <Field Name="行号">
                    <DataField>CN_N_ROW_NO</DataField>
                </Field>
                <Field Name="物料编号">
                    <DataField>CN_S_ITEM_CODE</DataField>
                </Field>
                <Field Name="物料名称">
                    <DataField>CN_S_ITEM_NAME</DataField>
                </Field>
                <Field Name="计量单位">
                    <DataField>CN_S_MEASURE_UNIT</DataField>
                </Field>
                <Field Name="生产批次">
                    <DataField>CN_S_PRODUCTION_BATCH</DataField>
                </Field>
                <Field Name="数量">
                    <DataField>CN_F_QUANTITY</DataField>
                </Field>
                <Field Name="备注">
                    <DataField>CN_S_NOTE</DataField>
                </Field>
                <Field Name="图号">
                    <DataField>CN_S_FIGURE_NO</DataField>
                </Field>
                <Field Name="规格型号">
                    <DataField>CN_S_MODEL</DataField>
                </Field>
            </Fields>
            <Query>
                <CommandText />
                <DataSourceName>OutFormOrderDS</DataSourceName>
            </Query>
        </DataSet>
    </DataSets>
    <CustomProperties>
        <CustomProperty>
            <Name>PaperOrientation</Name>
            <Value>Landscape</Value>
        </CustomProperty>
    </CustomProperties>
</Report>