vince
2023-10-17 b193c7ade86d2eb0f5150afb7ef8a7b1021d49a6
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
1001
1002
1003
package com.ld.igds.inout;
 
/**
 * 出入库的表单模版
 */
public class InoutBill {
 
    /**
     * 默认入库过磅单
     */
//    public static String IN_WEIGHT_DEFAULT = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>入库过磅单</title><style>body{text-align:center;padding:10px}.tit{margin:10px;font-size:24px;font-family:'宋体';padding-top:15px}.div-tit{padding-top:10px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:38px}.sp1{width:33%;float:left;padding-bottom:10px}.sp2{width:25%;float:left;text-align:center}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>完成时间:completeTime</span><span class='sp1'>单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td width='12.5%'>发货单位</td><td colspan='3'width='37.5%'>customerName</td><td width='12.5%'>收货单位</td><td colspan='3'width='37.5%'>deptName</td></tr><tr><td width='12.5%'>承运人</td><td width='12.5%'>driverName</td><td width='12.5%'>粮食品种</td><td width='12.5%'>foodVariety</td><td width='12.5%'>装卸仓库</td><td width='12.5%'>depotName</td><td width='12.5%'>粮食产地</td><td width='12.5%'>foodLocation</td></tr><tr><td>承运车牌</td><td>plateNum</td><td>毛重(KG)</td><td>fullWeight</td><td>皮重(KG)</td><td>emptyWeight</td><td>净重(KG)</td><td>netWeight</td></tr><tr><td>水分扣量(KG)</td><td>deWet</td><td>杂质扣重(KG)</td><td>deImpurity</td><td>值仓扣重(KG)</td><td>deHandle</td><td>其他扣重(KG)</td><td>deOther</td></tr><tr><td>备注</td><td colspan='3'>remark</td><td>总扣重(KG)</td><td>deSum</td><td>结算重量(KG)</td><td>settleWeight</td></tr></table><div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>监磅员:</span><span class='sp2'>保管员:handleUser</span><span class='sp2'>承运人:driverName</span></div><div style=\"text-align: left;font-size: 12px\"><span>注:水分扣重、杂质扣重为负数时,表示增重。</span></div></body></html>";
 
    public static String IN_WEIGHT_DEFAULT = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type' content='text/html;charset=UTF-8'><title>入库过磅单</title><style>body {text-align: center;padding: 10px}  .tit {margin: 10px;font-size: 24px;font-family: '宋体';padding-top: 15px}  .div-tit {padding-top: 10px}  table {width: 100%;border-right: 1px solid;border-bottom: 1px solid;font-size: 14px}  table td {border-left: 1px solid;border-top: 1px solid;height: 38px}  .sp1 {width: 50%;float: left;padding-bottom: 10px}  .sp2 {width: 25%;float: left;text-align: center}</style></head><body><h1 class='tit'>billTitle</h1><div id=\"print_main\" class='div-tit'><span class='sp1'>完成时间:<a>completeTime</a></span><span class='sp1'>单号:serId</span></div><table cellspacing='0' cellpadding='0'><tr><td width='12.5%'>发货单位</td><td colspan='3' width='37.5%'>customerName</td><td width='12.5%'>收货单位</td><td colspan='3' `width`='37.5%'>deptName</td></tr><tr><td width='12.5%'>承运人</td><td width='12.5%'>driverName</td><td width='12.5%'>粮食品种</td><td width='12.5%'>foodVariety</td><td width='12.5%'>装卸仓库</td><td width='12.5%'>depotName</td><td width='12.5%'>粮食产地</td><td width='12.5%'>foodLocation</td></tr><tr><td>承运车牌</td><td>plateNum</td><td>毛重(KG)</td><td>fullWeight</td><td>皮重(KG)</td><td>emptyWeight</td><td>净重(KG)</td><td>netWeight</td></tr><tr><td>质检扣重(KG)</td><td>deCheck</td><td>质检增重(KG)</td><td>addCheck</td><td>值仓扣重(KG)</td><td>deHandle</td><td>其他扣重(KG)</td><td>deOther</td></tr><tr><td>质检结果</td><td colspan='3'>checkStatus</td><td>入库重量(KG)</td><td>recordWeight</td><td>结算重量(KG)</td><td>settleWeight</td></tr><tr><td>备注</td><td colspan='7'>remark</td></tr></table><div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>监磅员:</span><span class='sp2'>保管员:handleUser</span><span class='sp2'>承运人:driverName</span></div></br><div style=\"padding-top: 10px\"><span></span></div><div style=\"text-align: left;font-size: 12px\"><span>注:</span></div><div style=\"text-align: left;font-size: 12px\"><span>1.净重=毛重-皮重;质检增扣重根据质检详细填写;</span></div><div style=\"text-align: left;font-size: 12px\"><span>2.入库重量=净重-扣重;结算重量=入库重量+质检增重;</span></div><div style=\"text-align: left;font-size: 12px\"><span>3.白联(存根),红联(记账),黄联(客户保留)</span></div></body></html>";
    /**
     * 默认出库过磅单
     */
    public static String OUT_WEIGHT_DEFAULT = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type' content='text/html;charset=UTF-8'><title>出库称重单</title><style>body {text-align: center;padding: 10px}  .tit {margin: 10px;font-size: 24px;font-family: '宋体';padding-top: 15px}  .div-tit {padding-top: 10px}  .sp1 {width: 50%;float: left;padding-bottom: 10px}  .sp2 {width: 25%;float: left;text-align: center}  table {width: 100%;border-right: 1px solid;border-bottom: 1px solid;font-size: 14px}  table td {border-left: 1px solid;border-top: 1px solid;height: 38px}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>出库单号:serId</span></div><table cellspacing='0' cellpadding='0'><tr><td width='12.5%'>发货单位</td><td colspan='3' width='37.5%'>deptName</td><td width='12.5%'>收货单位</td><td colspan='3' width='37.5%'>customerName</td></tr><tr><td width='12.5%'>承运人</td><td width='12.5%'>driverName</td><td width='12.5%'>粮食品种</td><td width='12.5%'>foodVariety</td><td width='12.5%'>出库仓库</td><td width='12.5%'>depotName</td><td width='12.5%'>粮食产地</td><td width='12.5%'>foodLocation</td></tr><tr><td>承运车牌</td><td>plateNum</td><td>毛重(KG)</td><td>fullWeight</td><td>皮重(KG)</td><td>emptyWeight</td><td>净重(KG)</td><td>netWeight</td></tr><tr><td>其他扣重(KG)</td><td>deOther</td><td>值仓扣重(KG)</td><td>deHandle</td><td>结算重量(KG)</td><td>settleWeight</td><td colspan=\"2\"></td></tr><tr><td>备注</td><td colspan='7'>remark</td></tr></table><div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>监磅员:</span><span class='sp2'>保管员:handleUser</span><span class='sp2'>承运人:driverName</span></div><br></body><div style=\"padding-top: 10px\"><span></span></div><div style=\"text-align: left;font-size: 12px\"><span>注:</span></div><div style=\"text-align: left;font-size: 12px\"><span>1.净重=毛重-皮重;</span></div><div style=\"text-align: left;font-size: 12px\"><span>2.出库重量=净重-总扣重;结算重量=净重-总扣重;</span></div><div style=\"text-align: left;font-size: 12px\"><span>3.白联(存根),红联(记账),黄联(客户保留)</span></div></html>";
    /**
     * 默认验检单
     */
    public static String IN_CHECK_DEFAULT = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>出库化验单</title><style>body{text-align:center;padding:10px}h1{font-weight:400;font-size:24px;margin:5px}span{padding-bottom:10px}.div-tit{padding-top:10px}.div-tit2{padding-top:30px}.fl{float:left}.fr{float:right}.fp{margin-left:145px}.f2{float:left}table{width:100%;border-right:1px solid;border-bottom:1px solid}table td{border-left:1px solid;border-top:1px solid;height:30px;font-size:14px}</style></head><body><h1>billTitle</h1><div class='div-tit'><span class='fl'>发货单位:customerName</span><span>时间:time</span><span class='fr'>入库单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td>品种</td><td>foodVariety</td><td>样品来源</td><td>现场扦样</td><td>车牌号</td><td>plateNum</td><td>承运人</td><td>userName</td><td></td></tr><tr><td>收货年份</td><td>foodYear</td><td>色泽气味</td><td>正常</td><td>入库仓号</td><td>depotName</td><td>粮食性质</td><td>商品粮</td><td></td></tr><tr><td>检验项目</td><td>标准值</td><td>检验值</td><td>检验项目</td><td>标准值</td><td>检验值</td><td>检验项目</td><td>标准值</td><td>检验值</td></tr><tr><td>容重g/l</td><td>C03_ST</td><td>C03_VAL</td><td>水分</td><td>C01_ST</td><td>C01_VAL</td><td>杂质</td><td>C02_ST</td><td>C02_VAL</td></tr><tr><td>出糙率%</td><td>C09_ST</td><td>C09_VAL</td><td>酸值</td><td>C22_ST</td><td>C22_VAL</td><td>过氧化值</td><td>C23_ST</td><td>C23_VAL</td></tr><tr><td>整精米率%</td><td>C10_ST</td><td>C10_VAL</td><td>不完善粒%</td><td>C04_ST</td><td>C04_VAL</td><td>溶剂残留量</td><td>C24_ST</td><td>C24_VAL</td></tr><tr><td>面筋吸水量</td><td>C08_ST</td><td>C08_VAL</td><td>谷外糙米%</td><td>C12_ST</td><td>C12_VAL</td><td>重金属(镉)</td><td>C25_ST</td><td>C25_VAL</td></tr><tr><td>脂肪酸值</td><td>C14_ST</td><td>C14_VAL</td><td>生霉率%</td><td>C29_ST</td><td>C29_VAL</td><td>黄粒米%</td><td>C11_ST</td><td>C11_VAL</td></tr><tr><td>呕吐毒素</td><td>C27_ST</td><td>C27_VAL</td><td>黄曲霉毒素B1</td><td>C28_ST</td><td>C28_VAL</td><td>重金属(砷)</td><td>C30_ST</td><td>C30_VAL</td></tr><tr><td>玉米赤霉烯酮</td><td>C31_ST</td><td>C31_VAL</td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td colspan=‘2’>检验结论及建议</td><td rowspan='8'colspan='8'></td></tr></table><div class='div-tit'><span class='fl'>检验员:checkUser</span><span class='fr'>承运人签字:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></div></body></html>";
    /**
     * 小麦化验单
     */
    public static String IN_CHECK_WHEAT = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type' content='text/html;charset=UTF-8'><title>质检报告(小麦)</title><style>body {text-align: center;padding: 10px}  .tit {margin: 10px;font-size: 24px;font-family: '宋体';padding-top: 15px}  .div-tit {text-align: right;padding-top: 10px;padding-right: 20px;}  table {width: 100%;border-right: 1px solid;border-bottom: 1px solid;font-size: 14px}  table td {border-left: 1px solid;border-top: 1px solid;height: 38px}  .sp1 {width: 33%;float: left;padding-bottom: 10px}</style></head><body><h1 class='tit'>质检报告(foodVariety)</h1><div class='div-tit'>编码:serId</div><table cellspacing='0' cellpadding='0'><tr><td colspan='2' rowspan=\"5\" `width`=\"15%\">样品信息</td><td width='14%'>单位名称</td><td colspan='2' `width`='28%'>customerName</td><td width='15%'>库区名称</td><td colspan='2' `width`='28%'>deptName</td></tr><tr><td width='14%'>仓房名称</td><td width='14%'>depotName</td><td width='14%'>货位名称</td><td width='15%'>hwmc</td><td width='14%'>保管员</td><td width='14%'>storeKeeperName</td></tr><tr><td>品种</td><td>foodVariety</td><td>性质</td><td>foodType</td><td>仓内粮食数量</td><td>foodNumber KG</td></tr><tr><td>产地</td><td>foodLocation</td><td>等级</td><td>foodLevel</td><td>生产年限</td><td>foodYear</td></tr><tr><td>样品数量</td><td>checkNum</td><td>样品代表数量</td><td>foodNumber KG</td><td colspan=\"2\"></td></tr><tr><td colspan='2'>检验单位</td><td colspan=\"6\">unit</td></tr><tr><td colspan='2' rowspan=\"2\">质检人员</td><td>扦样员</td><td>sampleUser</td><td>检验员</td><td>checkUser</td><td colspan=\"2\"></td></tr><tr><td>扦样时间</td><td>sampleTime</td><td>检验时间</td><td>checkTime</td><td>报告出具时间</td><td>bgcjsj</td></tr><tr><td rowspan=\"6\">质检结果</td><td rowspan=\"3\">质量指标检验</td><td>品种</td><td>foodVariety</td><td>容重(g/L)</td><td>C03_ST</td><td>等级</td><td>foodLevel</td></tr><tr><td>色泽气味</td><td>C06_ST</td><td>杂质(%)</td><td>C02_ST</td><td>水分(%)</td><td>C01_ST</td></tr><tr><td>不完善粒(%)</td><td>C04_ST</td><td>生芽粒(%)</td><td>C35_ST</td><td>生霉粒(%)</td><td>C29_ST</td></tr><tr><td>储存品质检验</td><td>面筋吸水量(%)</td><td>C08_ST</td><td>品尝分值</td><td>C07_ST</td><td>色泽气味</td><td>C06_ST</td></tr><tr><td rowspan=\"2\">食品安全检验</td><td>呕吐毒(mg/kg)</td><td>C27_ST</td><td>玉米赤霉烯酮(μg/kg)</td><td>C31_ST</td><td>铅(mg/kg)</td><td>C32_ST</td></tr><tr><td>镉(mg/kg)</td><td>C25_ST</td><td>汞(μg/kg)</td><td>C33_ST</td><td>无机砷(mg/kg)</td><td>C30_ST</td></tr><tr><td colspan=\"2\">备注</td><td colspan=\"6\">remark</td></tr></table><div class='div-tit'></div></body></html>";
    /**
     * 稻谷化验单
     */
    public static String IN_CHECK_PADDY = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type' content='text/html;charset=UTF-8'><title>质检报告(稻谷)</title><style>body {text-align: center;padding: 10px}  .tit {margin: 10px;font-size: 24px;font-family: '宋体';padding-top: 15px}  .div-tit {text-align: right;padding-top: 10px;padding-right: 20px;}  table {width: 100%;border-right: 1px solid;border-bottom: 1px solid;font-size: 14px}  table td {border-left: 1px solid;border-top: 1px solid;height: 38px}</style></head><body><h1 class='tit'>质检报告(foodVariety)</h1><div class='div-tit'>编码:serId</div><table cellspacing='0' cellpadding='0'><tr><td colspan='2' rowspan=\"5\" `width`=\"15%\">样品信息</td><td width='14%'>单位名称</td><td colspan='2' `width`='28%'>customerName</td><td width='15%'>库区名称</td><td colspan='2' `width`='28%'>deptName</td></tr><tr><td width='14%'>仓房名称</td><td width='14%'>depotName</td><td width='14%'>货位名称</td><td width='15%'>hwmc</td><td width='14%'>保管员</td><td width='14%'>storeKeeperName</td></tr><tr><td>品种</td><td>foodVariety</td><td>性质</td><td>foodType</td><td>仓内粮食数量</td><td>foodNumber KG</td></tr><tr><td>产地</td><td>foodLocation</td><td>等级</td><td>foodLevel</td><td>生产年限</td><td>foodYear</td></tr><tr><td>样品数量</td><td>checkNum</td><td>样品代表数量</td><td>foodNumber KG</td><td colspan=\"2\"></td></tr><tr><td colspan='2'>检验单位</td><td colspan=\"6\">unit</td></tr><tr><td colspan='2' rowspan=\"2\">质检人员</td><td>扦样员</td><td>sampleUser</td><td>检验员</td><td>checkUser</td><td colspan=\"2\"></td></tr><tr><td>扦样时间</td><td>sampleTime</td><td>检验时间</td><td>checkTime</td><td>报告出具时间</td><td>bgcjsj</td></tr><tr><td rowspan=\"7\">质检结果</td><td rowspan=\"4\">质量指标检验</td><td>品种</td><td>foodVariety</td><td>出糙率(%)</td><td>C09_ST</td><td>等级</td><td>foodLevel</td></tr><tr><td>整精米率(%)</td><td>C10_ST</td><td>杂质(%)</td><td>C02_ST</td><td>水分(%)</td><td>C01_ST</td></tr><tr><td>黄粒米(%)</td><td>C11_ST</td><td>谷外糙米(%)</td><td>C12_ST</td><td>色泽、气味</td><td>C21_ST</td></tr><tr><td>互混率(%)</td><td>C13_ST</td><td colspan=\"4\"></td></tr><tr><td>储存品质检验</td><td>脂肪酸值(mgKOH/100g)</td><td>C14_ST</td><td>品尝分值</td><td>C07_ST</td><td>色泽、气味</td><td>C21_ST</td></tr><tr><td rowspan=\"2\">食品安全检验</td><td>黄曲霉毒素 B1(μg/kg)</td><td>C28_ST</td><td>铅(mg/kg)</td><td>C32_ST</td><td>镉(mg/kg)</td><td>C25_ST</td></tr><tr><td>汞(μg/kg)</td><td>C34_ST</td><td>无机砷(mg/kg)</td><td>C30_ST</td><td colspan=\"2\"></td></tr><tr><td colspan=\"2\">备注</td><td colspan=\"6\">remark</td></tr></table><div class='div-tit'></div></body></html>";
    /**
     * 玉米化验单
     */
    public static String IN_CHECK_CORN = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type' content='text/html;charset=UTF-8'><title>质检报告(玉米)</title><style>body {text-align: center;padding: 10px}  .tit {margin: 10px;font-size: 24px;font-family: '宋体';padding-top: 15px}  .div-tit {text-align: right;padding-top: 10px;padding-right: 20px;}  table {width: 100%;border-right: 1px solid;border-bottom: 1px solid;font-size: 14px}  table td {border-left: 1px solid;border-top: 1px solid;height: 38px}</style></head><body><h1 class='tit'>质检报告(foodVariety)</h1><div class='div-tit'>编码:serId</div><table cellspacing='0' cellpadding='0'><tr><td colspan='2' rowspan=\"5\" `width`=\"15%\">样品信息</td><td width='14%'>单位名称</td><td colspan='2' `width`='28%'>customerName</td><td width='15%'>库区名称</td><td colspan='2' `width`='28%'>deptName</td></tr><tr><td width='14%'>仓房名称</td><td width='14%'>depotName</td><td width='14%'>货位名称</td><td width='15%'>hwmc</td><td width='14%'>保管员</td><td width='14%'>storeKeeperName</td></tr><tr><td>品种</td><td>foodVariety</td><td>性质</td><td>foodType</td><td>仓内粮食数量</td><td>foodNumber KG</td></tr><tr><td>产地</td><td>foodLocation</td><td>等级</td><td>foodLevel</td><td>生产年限</td><td>foodYear</td></tr><tr><td>样品数量</td><td>checkNum</td><td>样品代表数量</td><td>foodNumber KG</td><td colspan=\"2\"></td></tr><tr><td colspan='2'>检验单位</td><td colspan=\"6\">unit</td></tr><tr><td colspan='2' rowspan=\"2\">质检人员</td><td>扦样员</td><td>sampleUser</td><td>检验员</td><td>checkUser</td><td colspan=\"2\"></td></tr><tr><td>扦样时间</td><td>sampleTime</td><td>检验时间</td><td>checkTime</td><td>报告出具时间</td><td>bgcjsj</td></tr><tr><td rowspan=\"6\">质检结果</td><td rowspan=\"3\">质量指标检验</td><td>品种</td><td>foodVariety</td><td>容重(g/L)</td><td>C03_ST</td><td>等级</td><td>foodLevel</td></tr><tr><td>色泽气味</td><td>C06_ST</td><td>杂质(%)</td><td>C02_ST</td><td>水分(%)</td><td>C01_ST</td></tr><tr><td>不完善粒(%)</td><td>C04_ST</td><td>生霉粒(%)</td><td>C29_ST</td><td>霉变粒(%)</td><td>C15_ST</td></tr><tr><td>储存品质检验</td><td>脂肪酸值(mgKOH/100g)</td><td>C14_ST</td><td>品尝分值</td><td>C15_ST</td><td>色泽气味</td><td>C06_ST</td></tr><tr><td rowspan=\"2\">食品安全检验</td><td>呕吐毒(mg/kg)</td><td>C27_ST</td><td>玉米赤霉烯酮(μg/kg)</td><td>C31_ST</td><td>铅(mg/kg)</td><td>C32_ST</td></tr><tr><td>镉(mg/kg)</td><td>C25_ST</td><td>汞(μg/kg)</td><td>C33_ST</td><td>无机砷(mg/kg)</td><td>C30_ST</td></tr><tr><td colspan=\"2\">备注</td><td colspan=\"6\">remark</td></tr></table><div class='div-tit'></div></body></html>";
    /**
     * 大豆化验单
     */
    public static String IN_CHECK_SOYBEAN = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type' content='text/html;charset=UTF-8'><title>质检报告(大豆)</title><style>body {text-align: center;padding: 10px}  .tit {margin: 10px;font-size: 24px;font-family: '宋体';padding-top: 15px}  .div-tit {text-align: right;padding-top: 10px;padding-right: 20px;}  table {width: 100%;border-right: 1px solid;border-bottom: 1px solid;font-size: 14px}  table td {border-left: 1px solid;border-top: 1px solid;height: 38px}</style></head><body><h1 class='tit'>质检报告(foodVariety)</h1><div class='div-tit'>编码:serId</div><table cellspacing='0' cellpadding='0'><tr><td colspan='2' rowspan=\"5\" `width`=\"15%\">样品信息</td><td width='14%'>单位名称</td><td colspan='2' `width`='28%'>customerName</td><td width='15%'>库区名称</td><td colspan='2' `width`='28%'>deptName</td></tr><tr><td width='14%'>仓房名称</td><td width='14%'>depotName</td><td width='14%'>货位名称</td><td width='15%'>hwmc</td><td width='14%'>保管员</td><td width='14%'>storeKeeperName</td></tr><tr><td>品种</td><td>foodVariety</td><td>性质</td><td>foodType</td><td>仓内粮食数量</td><td>foodNumber KG</td></tr><tr><td>产地</td><td>foodLocation</td><td>等级</td><td>foodLevel</td><td>生产年限</td><td>foodYear</td></tr><tr><td>样品数量</td><td>checkNum</td><td>样品代表数量</td><td>foodNumber KG</td><td colspan=\"2\"></td></tr><tr><td colspan='2'>检验单位</td><td colspan=\"6\">unit</td></tr><tr><td colspan='2' rowspan=\"2\">质检人员</td><td>扦样员</td><td>sampleUser</td><td>检验员</td><td>checkUser</td><td colspan=\"2\"></td></tr><tr><td>扦样时间</td><td>sampleTime</td><td>检验时间</td><td>checkTime</td><td>报告出具时间</td><td>bgcjsj</td></tr><tr><td rowspan=\"5\">质检结果</td><td rowspan=\"3\">质量指标检验</td><td>品种</td><td>foodVariety</td><td>完整粒率(%)</td><td>C16_ST</td><td>等级</td><td>foodLevel</td></tr><tr><td>杂质(%)</td><td>C02_ST</td><td>水分(%)</td><td>C01_ST</td><td>色泽气味</td><td>C06_ST</td></tr><tr><td>损伤粒率(%)</td><td>C17_ST</td><td>热损伤粒(%)</td><td>C34_ST</td><td colspan=\"2\"></td></tr><tr><td>储存品质检验</td><td>粗脂肪酸值(mgKOH/100g)</td><td>C18_ST</td><td>品尝分值</td><td>C07_ST</td><td>色泽气味</td><td>C06_ST</td></tr><tr><td>食品安全检验</td><td>铅(mg/kg)</td><td>C32_ST</td><td>镉(mg/kg)</td><td>C25_ST</td><td colspan=\"2\"></td></tr><tr><td colspan=\"2\">备注</td><td colspan=\"6\">remark</td></tr></table><div class='div-tit'></div></body></html>";
    /**
     * 默认结算单
     */
    public static String IN_SETTLE_DEFAULT = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>入库过磅单</title><style>body{text-align:center;padding:10px}.tit{margin:10px;font-size:24px;font-family:'宋体';padding-top:15px}.div-tit{padding-top:10px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:38px}.sp1{width:50%;float:left;padding-bottom:10px}.sp2{width:50%;float:left;text-align:center}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1'>结算时间:payTime</span><span class='sp1'>入库单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td width='12.5%'>发货单位</td><td colspan='3'width='37.5%'>customerName</td><td width='12.5%'>收货单位</td><td colspan='3'width='37.5%'>deptName</td></tr><tr><td width='12.5%'>开户银行</td><td colspan='3'width='37.5%'>bank</td><td>毛重(KG)</td><td>fullWeight</td><td>皮重(KG)</td><td>emptyWeight</td></tr><tr><td width='12.5%'>银行卡号</td><td colspan='3'width='37.5%'>banNum</td><td>净重(KG)</td><td>netWeight</td><td>总扣重(KG)</td><td>deSum</td></tr><tr><td>入库仓库</td><td>depotName</td><td>粮食品种</td><td>foodVariety</td><td>粮食单价</td><td>payPrice</td><td>结算重量</td><td>settleWeight</td></tr><tr><td>保管员</td><td>keeperName</td><td>承运人</td><td>driverName</td><td>其他费用</td><td>otherSum</td><td>结算费用</td><td>paySum</td></tr><tr><td>备注</td><td colspan='3'>remark</td><td>大写金额</td><td colspan='3'>moneyName</td></tr></table><div class='div-tit'><span class=\"sp2\">收货单位签字:</span><span class=\"sp2\">客户签字:</span></div></body></html>";
 
    /**
     * 默认船运称重单
     */
    public static String SHIP_WEIGHT_DEFAULT = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>船运过磅单</title><style>body{text-align:center;padding:2px 10px}.tit{margin:5px;font-size:24px;font-family:'宋体'}.div-tit{padding-top:5px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:28px}.sp1{width:33%;float:left;padding-bottom:10px}.sp2{width:25%;float:left;text-align:center}</style></head><body><h1 class='tit'>billTitle</h1><div style=\"float: right;margin-top: -30px\">单位:KG(公斤)</div><div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>完成时间:completeTime</span><span class='sp1'>单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td colspan='2'>发货单位</td><td colspan='4'>customerName</td><td colspan='2'>收货单位</td><td colspan='4'>deptName</td><td colspan='1'>外包工</td><td colspan='2'></td></tr><tr><td colspan='2'>船号</td><td colspan='2'>plateNum</td><td colspan='2'>装卸仓库</td><td colspan='2'>depotName</td><td colspan='2'>粮食品种</td><td colspan='2'>foodVariety</td><td colspan='1'>产地</td><td colspan='2'>foodLocation</td></tr><tr><td width=\"6.66%\">码次</td><td width=\"6.66%\">车号</td><td width=\"8.33%\">毛重</td><td width=\"6.66%\">皮重</td><td width=\"6.66%\">净重</td><td width=\"6.66%\">码次</td><td width=\"6.66%\">车号</td><td width=\"6.66%\">毛重</td><td width=\"6.66%\">皮重</td><td width=\"6.66%\">净重</td><td width=\"6.66%\">码次</td><td width=\"6.66%\">车号</td><td width=\"6.66%\">毛重</td><td width=\"6.66%\">皮重</td><td width=\"6.66%\">净重</td></tr><tr><td>1</td><td>carNum1</td><td>full1</td><td>empty1</td><td>number1</td><td>11</td><td>carNum11</td><td>full11</td><td>empty11</td><td>number11</td><td>21</td><td>carNum21</td><td>full21</td><td>empty21</td><td>number21</td></tr><tr><td>2</td><td>carNum2</td><td>full2</td><td>empty2</td><td>number2</td><td>12</td><td>carNum12</td><td>full12</td><td>empty12</td><td>number12</td><td>22</td><td>carNum22</td><td>full22</td><td>empty22</td><td>number22</td></tr><tr><td>3</td><td>carNum3</td><td>full3</td><td>empty3</td><td>number3</td><td>13</td><td>carNum13</td><td>full13</td><td>empty13</td><td>number13</td><td>23</td><td>carNum23</td><td>full23</td><td>empty23</td><td>number23</td></tr><tr><td>4</td><td>carNum4</td><td>full4</td><td>empty4</td><td>number4</td><td>14</td><td>carNum14</td><td>full14</td><td>empty14</td><td>number14</td><td>24</td><td>carNum24</td><td>full24</td><td>empty24</td><td>number24</td></tr><tr><td>5</td><td>carNum5</td><td>full5</td><td>empty5</td><td>number5</td><td>15</td><td>carNum15</td><td>full15</td><td>empty15</td><td>number15</td><td>25</td><td>carNum25</td><td>full25</td><td>empty25</td><td>number25</td></tr><tr><td>6</td><td>carNum6</td><td>full6</td><td>empty6</td><td>number6</td><td>16</td><td>carNum16</td><td>full16</td><td>empty16</td><td>number16</td><td>26</td><td>carNum26</td><td>full26</td><td>empty26</td><td>number26</td></tr><tr><td>7</td><td>carNum7</td><td>full7</td><td>empty7</td><td>number7</td><td>17</td><td>carNum17</td><td>full17</td><td>empty17</td><td>number17</td><td>27</td><td>carNum27</td><td>full27</td><td>empty27</td><td>number27</td></tr><tr><td>8</td><td>carNum8</td><td>full8</td><td>empty8</td><td>number8</td><td>18</td><td>carNum18</td><td>full18</td><td>empty18</td><td>number18</td><td>28</td><td>carNum28</td><td>full28</td><td>empty28</td><td>number28</td></tr><tr><td>9</td><td>carNum9</td><td>full9</td><td>empty9</td><td>number9</td><td>19</td><td>carNum19</td><td>full19</td><td>empty19</td><td>number19</td><td>29</td><td>carNum29</td><td>full29</td><td>empty29</td><td>number29</td></tr><tr><td>10</td><td>carNum10</td><td>full10</td><td>empty10</td><td>number10</td><td>20</td><td>carNum20</td><td>full20</td><td>empty20</td><td>number20</td><td>30</td><td>carNum30</td><td>full30</td><td>empty30</td><td>number30</td></tr><tr><td colspan='1'>备注</td><td colspan='2'>remarks</td><td colspan='2'>毛重</td><td colspan='2'>fullWeight</td><td colspan='2'>皮重</td><td colspan='2'>emptyWeight</td><td colspan='2'>结算净量</td><td colspan='2'>settleWeight</td></tr></table><div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>监磅员:</span><span class='sp2'>保管员:handleUser</span><span class='sp2'>承运人:</span></div></body></html>";
 
    /**
     * 默认船运称重单-多页
     */
    public static String SHIP_WEIGHT_DEFAULT_MORE = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>船运过磅单</title><style>body{text-align:center;padding:2px 10px}.tit{margin:5px;font-size:24px;font-family:'宋体'}.div-tit{padding-top:5px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:28px}.sp1{width:33%;float:left;padding-bottom:10px}.sp2{width:25%;float:left;text-align:center}</style></head><body><h1 class='tit'>billTitle</h1><div style=\"float: right;margin-top: -30px\">单位:KG(公斤)</div><div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>完成时间:completeTime</span><span class='sp1'>单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td colspan='2'>发货单位</td><td colspan='4'>customerName</td><td colspan='2'>收货单位</td><td colspan='4'>deptName</td><td colspan='1'>外包工</td><td colspan='2'></td></tr><tr><td colspan='2'>船号</td><td colspan='2'>plateNum</td><td colspan='2'>装卸仓库</td><td colspan='2'>depotName</td><td colspan='2'>粮食品种</td><td colspan='2'>foodVariety</td><td colspan='1'>产地</td><td colspan='2'>foodLocation</td></tr><tr><td width=\"6.66%\">码次</td><td width=\"6.66%\">车号</td><td width=\"8.33%\">毛重</td><td width=\"6.66%\">皮重</td><td width=\"6.66%\">净重</td><td width=\"6.66%\">码次</td><td width=\"6.66%\">车号</td><td width=\"6.66%\">毛重</td><td width=\"6.66%\">皮重</td><td width=\"6.66%\">净重</td><td width=\"6.66%\">码次</td><td width=\"6.66%\">车号</td><td width=\"6.66%\">毛重</td><td width=\"6.66%\">皮重</td><td width=\"6.66%\">净重</td></tr><tr><td>1</td><td>carNum1</td><td>full1</td><td>empty1</td><td>number1</td><td>11</td><td>carNum11</td><td>full11</td><td>empty11</td><td>number11</td><td>21</td><td>carNum21</td><td>full21</td><td>empty21</td><td>number21</td></tr><tr><td>2</td><td>carNum2</td><td>full2</td><td>empty2</td><td>number2</td><td>12</td><td>carNum12</td><td>full12</td><td>empty12</td><td>number12</td><td>22</td><td>carNum22</td><td>full22</td><td>empty22</td><td>number22</td></tr><tr><td>3</td><td>carNum3</td><td>full3</td><td>empty3</td><td>number3</td><td>13</td><td>carNum13</td><td>full13</td><td>empty13</td><td>number13</td><td>23</td><td>carNum23</td><td>full23</td><td>empty23</td><td>number23</td></tr><tr><td>4</td><td>carNum4</td><td>full4</td><td>empty4</td><td>number4</td><td>14</td><td>carNum14</td><td>full14</td><td>empty14</td><td>number14</td><td>24</td><td>carNum24</td><td>full24</td><td>empty24</td><td>number24</td></tr><tr><td>5</td><td>carNum5</td><td>full5</td><td>empty5</td><td>number5</td><td>15</td><td>carNum15</td><td>full15</td><td>empty15</td><td>number15</td><td>25</td><td>carNum25</td><td>full25</td><td>empty25</td><td>number25</td></tr><tr><td>6</td><td>carNum6</td><td>full6</td><td>empty6</td><td>number6</td><td>16</td><td>carNum16</td><td>full16</td><td>empty16</td><td>number16</td><td>26</td><td>carNum26</td><td>full26</td><td>empty26</td><td>number26</td></tr><tr><td>7</td><td>carNum7</td><td>full7</td><td>empty7</td><td>number7</td><td>17</td><td>carNum17</td><td>full17</td><td>empty17</td><td>number17</td><td>27</td><td>carNum27</td><td>full27</td><td>empty27</td><td>number27</td></tr><tr><td>8</td><td>carNum8</td><td>full8</td><td>empty8</td><td>number8</td><td>18</td><td>carNum18</td><td>full18</td><td>empty18</td><td>number18</td><td>28</td><td>carNum28</td><td>full28</td><td>empty28</td><td>number28</td></tr><tr><td>9</td><td>carNum9</td><td>full9</td><td>empty9</td><td>number9</td><td>19</td><td>carNum19</td><td>full19</td><td>empty19</td><td>number19</td><td>29</td><td>carNum29</td><td>full29</td><td>empty29</td><td>number29</td></tr><tr><td>10</td><td>carNum10</td><td>full10</td><td>empty10</td><td>number10</td><td>20</td><td>carNum20</td><td>full20</td><td>empty20</td><td>number20</td><td>30</td><td>carNum30</td><td>full30</td><td>empty30</td><td>number30</td></tr></table></body></html>";
 
    /**
     * 大湾区入库打印单
     */
    public static String IN_WEIGHT_5016 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>入库过磅单</title><style>body{text-align:center;padding:10px}table{margin-top:5px;width:100%;border-right:2px solid;border-bottom:2px solid;font-size:14px}table td{border-left:2px solid;border-top:2px solid;height:35px}.sp1{height:30px;font-size:16px}.sp2{height:10px;border-top:0px solid}.sp3{float:right}</style></head><body><table cellspacing='0'cellpadding='0'><tr><td colspan=\"4\"class=\"sp1\">billTitle</td></tr><tr><td colspan=\"4\"class=\"sp2\"><span class=\"sp3\">重量单位:kg</span></td></tr><tr><td width='20%'>时间</td><td width='30%'>completeTime</td><td width='20%'>编号</td><td width='30%'>serId</td></tr><tr><td>车号</td><td>plateNum</td><td>毛重</td><td>fullWeight</td></tr><tr><td>货名</td><td>foodVariety</td><td>皮重</td><td>emptyWeight</td></tr><tr><td>规格</td><td>specType</td><td>净重</td><td>settleWeight</td></tr><tr><td>毛重时间</td><td colspan=\"3\">fullTime</td></tr><tr><td>皮重时间</td><td colspan=\"3\">emptyTime</td></tr><tr><td>发货单位</td><td colspan=\"3\">customerName</td></tr><tr><td>收货单位</td><td colspan=\"3\">deptName</td></tr><tr><td>堆位</td><td></td><td>审核</td><td></td></tr><tr><td>过磅员</td><td></td><td>司机</td><td></td></tr><tr><td>备注</td><td colspan=\"3\"></td></tr></table></body></html>";
 
 
    /**
     * 上海嘉定入库过磅单
     */
    public static String IN_WEIGHT_5303 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>入库过磅单</title><style>body{text-align:center;padding:10px}.tit{margin:10px;font-size:24px;font-family:'宋体';padding-top:15px}.div-tit{padding-top:10px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:38px}.sp1{width:33%;float:left;padding-bottom:10px}.sp2{width:25%;float:left;text-align:center}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>完成时间:completeTime</span><span class='sp1'>单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td width='12.5%'>发货单位</td><td colspan='2'width='25%'>customerName</td><td width='12.5%'>收货单位</td><td colspan='2'width='25%'>deptName</td><td width='12.5%'>外包工</td><td width='12.5%'></td></tr><tr><td width='12.5%'>承运人</td><td width='12.5%'>driverName</td><td width='12.5%'>粮食品种</td><td width='12.5%'>foodVariety</td><td width='12.5%'>装卸仓库</td><td width='12.5%'>depotName</td><td width='12.5%'>粮食产地</td><td width='12.5%'>foodLocation</td></tr><tr><td>承运车牌</td><td>plateNum</td><td>毛重(KG)</td><td>fullWeight</td><td>皮重(KG)</td><td>emptyWeight</td><td>净重(KG)</td><td>netWeight</td></tr><tr><td>水分扣量(KG)</td><td>deWet</td><td>杂质扣重(KG)</td><td>deImpurity</td><td>值仓扣重(KG)</td><td>deHandle</td><td>其他扣重(KG)</td><td>deOther</td></tr><tr><td>备注</td><td colspan='3'>remark</td><td>总扣重(KG)</td><td>deSum</td><td>结算重量(KG)</td><td>settleWeight</td></tr></table><div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>监磅员:</span><span class='sp2'>保管员:handleUser</span><span class='sp2'>承运人:</span></div></body></html>";
 
    /**
     * 上海嘉定出库过磅单
     */
    public static String OUT_WEIGHT_5303 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>出库称重单</title><style>body{text-align:center;padding:10px}span{padding-bottom:10px}.div-tit{padding-top:10px}.fl{float:left}.fr{float:right}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:32px}</style></head><body><h1 style='margin: 0;font-size: 26px;'>billTitle</h1><div class='div-tit'><span class='fl'>登记时间:registerTime</span><span class=''>完成时间:completeTime</span><span class='fr'>单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td width='12.5%'>发货单位</td><td colspan='2'width='25%'>deptName</td><td width='12.5%'>收货单位</td><td colspan='2'width='25%'>customerName</td><td width='12.5%'>外包工</td><td width='12.5%'></td></tr><tr><td width='12.5%'>承运人</td><td width='12.5%'>driverName</td><td width='12.5%'>粮食品种</td><td width='12.5%'>foodVariety</td><td width='12.5%'>装卸仓库</td><td width='12.5%'>depotName</td><td width='12.5%'>粮食产地</td><td width='12.5%'>foodLocation</td></tr><tr><td>承运车牌</td><td>plateNum</td><td>毛重(KG)</td><td>fullWeight</td><td>皮重(KG)</td><td>emptyWeight</td><td>净重(KG)</td><td>netWeight</td></tr><tr><td>备注</td><td colspan='3'>remark</td><td>水分增量(KG)</td><td>deWet</td><td>结算重量(KG)</td><td>settleWeight</td></tr></table><div class='div-tit'><span class='fl'>司磅员:</span><span class=''>监磅员:</span><span class='fr'>保管员:handleUser</span></div></body></html>";
 
    /**
     * 青神粮库入库过磅单
     */
    public static String IN_WEIGHT_5308 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>入库过磅单</title><style>body{text-align:center;padding:10px}.tit{margin:10px;font-size:24px;font-family:'宋体';padding-top:15px;}.div-tit{padding-top:10px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:38px}.sp1{width:33%;float:left;padding-bottom:10px}.sp2{width:25%;float:left;text-align:center}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>完成时间:completeTime</span><span class='sp1'>入库单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td width='12.5%'>发货单位</td><td colspan='3'width='37.5%'>customerName</td><td width='12.5%'>收货单位</td><td colspan='3'width='37.5%'>deptName</td></tr><tr><td width='12.5%'>承运人</td><td width='12.5%'>driverName</td><td width='12.5%'>粮食品种</td><td width='12.5%'>foodVariety</td><td width='12.5%'>入库仓库</td><td width='12.5%'>depotName</td><td width='12.5%'>粮食产地</td><td width='12.5%'>foodLocation</td></tr><tr><td>承运车牌</td><td>plateNum</td><td>毛重(KG)</td><td>fullWeight</td><td>皮重(KG)</td><td>emptyWeight</td><td>净重(KG)</td><td>netWeight</td></tr><tr><td>水分扣量(KG)</td><td>deWet</td><td>杂质扣重(KG)</td><td>deImpurity</td><td>值仓扣重(KG)</td><td>deHandle</td><td>其他扣重(KG)</td><td>deOther</td></tr><tr><td>备注</td><td colspan='3'>remark</td><td>总扣重(KG)</td><td>deSum</td><td>结算重量(KG)</td><td>settleWeight</td></tr></table><div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>监磅员:</span><span class='sp2'>结算员:</span><span class='sp2'>领款人:</span></div></body></html>";
 
    /**
     * 朝阳储备库入库打印单
     */
    public static String IN_WEIGHT_5317 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>入库过磅单</title><style>body{text-align:center;padding:10px}.tit{margin:10px;font-size:24px;font-family:'宋体';padding-top:15px}.div-tit{padding-top:10px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:38px}.sp1{width:33%;float:left;padding-bottom:10px}.sp2{width:33%;float:left;text-align:center}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>完成时间:completeTime</span><span class='sp1'>单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td>发货单位</td><td>customerName</td><td colspan='2'>收货单位</td><td>deptName</td></tr><tr><td>粮食品种</td><td>foodVariety</td><td colspan='2'>装卸仓库</td><td>depotName</td></tr><tr><td width='12.5%'>粮食产地</td><td width='37.5%'>foodLocation</td><td rowspan=\"5\"width='3.75%'style=\"writing-mode: tb;\">承运人信息</td><td width='8.75%'>司机姓名</td><td width='37.5%'>driverName</td></tr><tr><td>毛重(KG)</td><td>fullWeight</td><td>车船号</td><td>plateNum</td></tr><tr><td>皮重(KG)</td><td>emptyWeight</td><td>身份证号</td><td>userNumberId</td></tr><tr><td>净重(KG)</td><td>netWeight</td><td>联系电话</td><td>userContact</td></tr><tr><td>结算重量(KG)</td><td>settleWeight</td><td>住址</td><td>userAddress</td></tr><tr><td>备注</td><td colspan='6'>remark</td></tr></table><div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>保管员:</span><span class='sp2'>承运人:</span></div></body></html>";
 
    /**
     * 徐闻储备库入库打印单
     */
    public static String IN_WEIGHT_5322 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>出库过磅单</title><style>body{text-align:center;padding:10px}.tit{margin:5px;font-size:24px;font-family:'宋体';padding-top:10px}.div-tit{padding-top:6px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:32px}.sp1{width:33%;float:left;padding-bottom:5px}.sp2{width:25%;float:left;text-align:center}.txt-left{text-align:left}.txt-center{text-align:center}.txt-right{text-align:right}.bot{margin-bottom:10px}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1 txt-left'>登记时间:registerTime</span><span class='sp1 txt-center'>完成时间:completeTime</span><span class='sp1 txt-right'>单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td>车牌号</td><td>plateNum</td><td>皮重(公斤)</td><td>emptyWeight</td></tr><tr><td>大黄储备库</td><td>depotName</td><td>毛重(公斤)</td><td>fullWeight</td></tr><tr><td>供货单位</td><td>customerName</td><td>净重(公斤)</td><td>netWeight</td></tr><tr><td>收货单位</td><td>deptName</td><td>总扣重</td><td>deSum</td></tr><tr><td>货物名称</td><td>foodVariety</td><td>杂质(%)</td><td>impurity</td></tr><tr><td>包装规格</td><td></td><td>水分(%)</td><td>wet</td></tr><tr><td>包数</td><td></td><td>结算重量(公斤)</td><td>settleWeight</td></tr><tr><td>驾驶员</td><td>driverName</td><td>单价(元/公斤)</td><td>price</td></tr><tr><td>过磅时间</td><td>emptyTime</td><td>金额(元)</td><td>settleMoney</td></tr><tr><td>备注</td><td colspan='3'>remark</td></tr></table><div class='div-tit'><span class='sp2 txt-left bot'>司磅员:</span><span class='sp2 txt-left bot'>保管员:</span><span class='sp2 txt-left bot'>付款员:</span><span class='sp2 txt-left bot'>承运人:</span></div><div class='div-tit'style=\"margin-top: 10px\"><span class='sp2'>1.仓库(白)</span><span class='sp2'>2.付款(红)</span><span class='sp2'>3.客户(蓝)</span><span class='sp2'>4.农发行(黄)</span></div></body></html>";
 
 
    /**
     * 青神粮库出库过磅单
     */
    public static String OUT_WEIGHT_5308 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>出库称重单</title><style>body{text-align:center;padding:10px}.tit{margin:10px;font-size:24px;font-family:'宋体';padding-top:15px}.div-tit{padding-top:10px}.sp1{width:33%;float:left;padding-bottom:10px}.sp2{width:25%;float:left;text-align:center}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:38px}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>完成时间:completeTime</span><span class='sp1'>出库单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td width='12.5%'>发货单位</td><td colspan='3'width='37.5%'>deptName</td><td width='12.5%'>收货单位</td><td colspan='3'width='37.5%'>customerName</td></tr><tr><td width='12.5%'>承运人</td><td width='12.5%'>driverName</td><td width='12.5%'>粮食品种</td><td width='12.5%'>foodVariety</td><td width='12.5%'>出库仓库</td><td width='12.5%'>depotName</td><td width='12.5%'>粮食产地</td><td width='12.5%'>foodLocation</td></tr><tr><td>承运车牌</td><td>plateNum</td><td>毛重(KG)</td><td>fullWeight</td><td>皮重(KG)</td><td>emptyWeight</td><td>净重(KG)</td><td>netWeight</td></tr><tr><td>备注</td><td colspan='3'>remark</td><td>水分增重(KG)</td><td>deWet</td><td>结算重量(KG)</td><td>settleWeight</td></tr></table><div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>监磅员:</span><span class='sp2'>结算员:</span><span class='sp2'>领款人:</span></div></body></html>";
 
 
    /**
     * 义乌市中心粮库出库称重单
     */
    public static String OUT_WEIGHT_5013 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>出库过磅单</title>"
            + "<style> "
            + "body {text-align:center;padding:10px;} "
            + "span {padding-bottom:10px;} "
            + ".div-tit{ padding-top:10px;}"
            + ".fl {float:left;} "
            + ".fr {float:right;} "
            + "table {width:100%;border-right:1px solid;border-bottom:1px solid;} "
            + "table td {border-left:1px solid;border-top:1px solid;height:38px;font-size: 14px;}"
            + ".td-bottom {border-bottom:1px solid;}"
            + "</style></head><body><h1>billTitle</h1><span>时间:time</span><div class='div-tit'><span class='fl'>来往单位:customerName</span> <span class=''>单位编码:customerId</span><span class='fr'>流水号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td width='12.5%'>品种</td><td width='12.5%'>foodVariety</td><td width='12.5%'>承运车牌</td><td width='12.5%'>plateNum</td><td width='12.5%'>出库仓库</td><td width='12.5%'>depotName</td><td width='12.5%'>产地</td><td width='12.5%'>foodLocation</td></tr><tr><td>皮重(KG)</td><td>emptyWeight</td><td>毛重(KG)</td><td>fullWeight</td><td>净重(KG)</td><td>netWeight</td><td>水分增重(KG)</td><td>deWet</td></tr><tr><td>合同数量(KG)</td><td>planWeight</td><td class='td-bottom'>已提(KG)</td><td class='td-bottom'>completeWeight</td><td class='td-bottom'>完成百分比</td><td class='td-bottom'>completePer</td><td class='td-bottom'>结算净重(KG)</td><td class='td-bottom'>settleWeight</td></tr><tr><td>备注</td><td rowspan='7' colspan='7'>remark</td></tr></table><div class='div-tit'><span class='fl'>司磅员:weightUser</span><span class=''>保管员:keeperName</span><span class='fr'>承运人:driverName</span></div></body></html>";
 
 
    /**
     * 义乌市中心粮库入库称重单
     */
    public static String IN_WEIGHT_5013 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>入库过磅单</title>"
            + "<style> "
            + "body {text-align:center;padding:10px;} "
            + "span {padding-bottom:10px;} "
            + ".div-tit{ padding-top:10px;}"
            + ".fl {float:left;} "
            + ".fr {float:right;} "
            + "table {width:100%;border-right:1px solid;border-bottom:1px solid;font-size: 14px;} "
            + "table td {border-left:1px solid;border-top:1px solid;height:38px;}"
            + ".td-bottom {border-bottom:1px solid;}"
            + "</style></head>" +
            "<body><h1>billTitle</h1><span>时间:time</span><div class='div-tit'><span class='fl'>发货单位:customerName</span> <span class=''>单位编码:customerId</span><span class='fr'>入库单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td width='12.5%'>品种</td><td width='12.5%'>foodVariety</td><td width='12.5%'>承运车牌</td><td width='12.5%'>plateNum</td><td width='12.5%'>入库仓库</td><td width='12.5%'>depotName</td><td width='12.5%'>产地</td><td width='12.5%'>foodLocation</td></tr><tr><td>运输方式</td><td>transType</td><td>毛重(KG)</td><td>fullWeight</td><td>皮重(KG)</td><td>emptyWeight</td><td>净重(KG)</td><td>netWeight</td></tr><tr><td>值仓扣重(KG)</td><td>deHandle</td><td>包装扣重(KG)</td><td>dePack</td><td>不完善颗粒扣重(KG)</td><td>deBroken</td><td>杂质扣重(KG)</td><td>deImpurity</td></tr><tr><td>水分重量(KG)</td><td>deWet</td><td>其他扣重(KG)</td><td>deOther</td><td>总扣重(KG)</td><td>deSum</td><td>结算净重(KG)</td><td>settleWeight</td></tr><tr><td>发货包数</td><td></td><td class='td-bottom'>合同数量(KG)</td><td class='td-bottom'>planWeight</td><td class='td-bottom'>已交(KG)</td><td class='td-bottom'>completeWeight</td><td class='td-bottom'>完成百分比</td><td class='td-bottom'>completePer</td></tr><tr><td>备注</td><td rowspan='7' colspan='7'>remark</td></tr></table><div class='div-tit'><span class='fl'>司磅员:weightUser</span><span class=''>收货员:handleUser</span><span class='fr'>承运人:driverName</span></div></body>" +
            "</html>";
 
    /**
     * 大湾区出库打印单
     */
    public static String OUT_WEIGHT_5016 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>出库过磅单</title><style>body{text-align:center;padding:10px}table{margin-top:5px;width:100%;border-right:2px solid;border-bottom:2px solid;font-size:14px}table td{border-left:2px solid;border-top:2px solid;height:35px}.sp1{height:30px;font-size:16px}.sp2{height:10px;border-top:0px solid}.sp3{float:right}</style></head><body><table cellspacing='0'cellpadding='0'><tr><td colspan=\"4\"class=\"sp1\">billTitle</td></tr><tr><td colspan=\"4\"class=\"sp2\"><span class=\"sp3\">重量单位:kg</span></td></tr><tr><td width='20%'>时间</td><td width='30%'>completeTime</td><td width='20%'>编号</td><td width='30%'>serId</td></tr><tr><td>车号</td><td>plateNum</td><td>毛重</td><td>fullWeight</td></tr><tr><td>货名</td><td>foodVariety</td><td>皮重</td><td>emptyWeight</td></tr><tr><td>规格</td><td>specType</td><td>净重</td><td>settleWeight</td></tr><tr><td>毛重时间</td><td colspan=\"3\">fullTime</td></tr><tr><td>皮重时间</td><td colspan=\"3\">emptyTime</td></tr><tr><td>发货单位</td><td colspan=\"3\">deptName</td></tr><tr><td>收货单位</td><td colspan=\"3\">customerName</td></tr><tr><td>堆位</td><td></td><td>审核</td><td></td></tr><tr><td>过磅员</td><td></td><td>司机</td><td></td></tr><tr><td>备注</td><td colspan=\"3\"></td></tr></table></body></html>";
 
 
    /**
     * 潮阳储备库出库打印单
     */
    public static String OUT_WEIGHT_5317 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>出库过磅单</title><style>body{text-align:center;padding:10px}.tit{margin:10px;font-size:24px;font-family:'宋体';padding-top:15px}.div-tit{padding-top:10px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:38px}.sp1{width:33%;float:left;padding-bottom:10px}.sp2{width:33%;float:left;text-align:center}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>完成时间:completeTime</span><span class='sp1'>单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td>发货单位</td><td>deptName</td><td colspan='2'>收货单位</td><td>customerName</td></tr><tr><td>粮食品种</td><td>foodVariety</td><td colspan='2'>装卸仓库</td><td>depotName</td></tr><tr><td width='12.5%'>粮食产地</td><td width='37.5%'>foodLocation</td><td rowspan=\"5\"width='3.75%'style=\"writing-mode: tb;\">承运人信息</td><td width='8.75%'>司机姓名</td><td width='37.5%'>driverName</td></tr><tr><td>毛重(KG)</td><td>fullWeight</td><td>车船号</td><td>plateNum</td></tr><tr><td>皮重(KG)</td><td>emptyWeight</td><td>身份证号</td><td>userNumberId</td></tr><tr><td>净重(KG)</td><td>netWeight</td><td>联系电话</td><td>userContact</td></tr><tr><td>结算重量(KG)</td><td>settleWeight</td><td>住址</td><td>userAddress</td></tr><tr><td>备注</td><td colspan='6'>remark</td></tr></table><div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>保管员:</span><span class='sp2'>承运人:</span></div></body></html>";
 
 
    /**
     * 徐闻储备库出库打印单
     */
    public static String OUT_WEIGHT_5322 = "<!DOCTYPE html><html lang='zh-cn'><head><meta http-equiv='Content-Type'content='text/html;charset=UTF-8'><title>出库过磅单</title><style>body{text-align:center;padding:10px}.tit{margin:5px;font-size:24px;font-family:'宋体';padding-top:10px}.div-tit{padding-top:6px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:32px}.sp1{width:33%;float:left;padding-bottom:5px}.sp2{width:25%;float:left;text-align:center}.txt-left{text-align:left}.txt-center{text-align:center}.txt-right{text-align:right}.bot{margin-bottom:10px}</style></head><body><h1 class='tit'>billTitle</h1><div class='div-tit'><span class='sp1 txt-left'>登记时间:registerTime</span><span class='sp1 txt-center'>完成时间:completeTime</span><span class='sp1 txt-right'>单号:serId</span></div><table cellspacing='0'cellpadding='0'><tr><td>车牌号</td><td>plateNum</td><td>皮重(公斤)</td><td>emptyWeight</td></tr><tr><td>大黄储备库</td><td>depotName</td><td>毛重(公斤)</td><td>fullWeight</td></tr><tr><td>供货单位</td><td>deptName</td><td>净重(公斤)</td><td>netWeight</td></tr><tr><td>收货单位</td><td>customerName</td><td>总扣重</td><td>deSum</td></tr><tr><td>货物名称</td><td>foodVariety</td><td>杂质(%)</td><td>impurity</td></tr><tr><td>包装规格</td><td></td><td>水分(%)</td><td>wet</td></tr><tr><td>包数</td><td></td><td>结算重量(公斤)</td><td>settleWeight</td></tr><tr><td>驾驶员</td><td>driverName</td><td>单价(元/公斤)</td><td>price</td></tr><tr><td>过磅时间</td><td>emptyTime</td><td>金额(元)</td><td>settleMoney</td></tr><tr><td>备注</td><td colspan='3'>remark</td></tr></table><div class='div-tit'><span class='sp2 txt-left bot'>司磅员:</span><span class='sp2 txt-left bot'>保管员:</span><span class='sp2 txt-left bot'>付款员:</span><span class='sp2 txt-left bot'>承运人:</span></div><div class='div-tit'style=\"margin-top: 10px\"><span class='sp2'>1.仓库(白)</span><span class='sp2'>2.付款(红)</span><span class='sp2'>3.客户(蓝)</span><span class='sp2'>4.农发行(黄)</span></div></body></html>";
 
    /**
     * 市库入库称重单
     */
    public static String IN_WEIGHT_5005 = "<!DOCTYPE html><html><head><meta charset=\"UTF-8\"><title>入库磅单</title><style> .table1 {float:left;margin-left:20px }table,td,th {border: 1px solid black;border-style: solid;border-collapse: collapse;font-size:12px ;} .table1 td{height:20}</style></head><body><p><strong style=\"padding-left:50px;font-size: 24px;\">第一联</strong><strong style=\"padding-left:200px;font-size: 24px;\">第二联</strong><strong style=\"padding-left:200px;font-size: 24px;\">第三联</strong></p><table class=\"table1\" border=\"1\" height=\"300px\"><tr ><td width = \"90px\">入库时间:</td><td width = \"130px\">time</td></tr><tr ><td>流水号:</td><td>serId</td></tr><tr ><td >车牌号:</td><td>plateNum</td></tr><tr ><td>发货单位:</td><td>customerName</td></tr><tr ><td>收货单位:</td><td>unitName</td></tr><tr ><td>品种:</td><td>foodVariety</td></tr><tr ><td>毛重:</td><td>fullWeight</td></tr><tr ><td>皮重:</td><td>emptyWeight</td></tr><tr ><td>净重:</td><td>netWeight</td></tr><tr ><td>总扣重:</td><td>deSum</td></tr><tr ><td>结算重量:</td><td>settleWeight</td></tr><tr ><td>称重人:</td><td>weightUser</td></tr><tr ><td >客户签字:</td><td ></td></tr></table><table class=\"table1\" border=\"1\" height=\"300px\"><tr ><td width = \"90px\">入库时间:</td><td width = \"130px\">time</td></tr><tr ><td>流水号:</td><td>serId</td></tr><tr ><td >车牌号:</td><td>plateNum</td></tr><tr ><td>发货单位:</td><td>customerName</td></tr><tr ><td>收货单位:</td><td>unitName</td></tr><tr ><td>品种:</td><td>foodVariety</td></tr><tr ><td>毛重:</td><td>fullWeight</td></tr><tr ><td>皮重:</td><td>emptyWeight</td></tr><tr ><td>净重:</td><td>netWeight</td></tr><tr ><td>总扣重:</td><td>deSum</td></tr><tr ><td>结算重量:</td><td>settleWeight</td></tr><tr ><td>称重人:</td><td>weightUser</td></tr><tr ><td >客户签字:</td><td ></td></tr></table><table class=\"table1\" border=\"1\" height=\"300px\"><tr ><td width = \"90px\">入库时间:</td><td width = \"130px\">time</td></tr><tr ><td>流水号:</td><td>serId</td></tr><tr ><td >车牌号:</td><td>plateNum</td></tr><tr ><td>发货单位:</td><td>customerName</td></tr><tr ><td>收货单位:</td><td>unitName</td></tr><tr ><td>品种:</td><td>foodVariety</td></tr><tr ><td>毛重:</td><td>fullWeight</td></tr><tr ><td>皮重:</td><td>emptyWeight</td></tr><tr ><td>净重:</td><td>netWeight</td></tr><tr ><td>总扣重:</td><td>deSum</td></tr><tr ><td>结算重量:</td><td>settleWeight</td></tr><tr ><td>称重人:</td><td>weightUser</td></tr><tr ><td >客户签字:</td><td ></td></tr></table></body></html>";
    /**
     * 市库出库称重单
     */
    public static String OUT_WEIGHT_5005 = "<!DOCTYPE html><html><head><meta charset=\"UTF-8\"><title>出库磅单</title><style> .table1 {float:left;margin-left:20px }table,td,th {border: 1px solid black;border-style: solid;border-collapse: collapse;font-size:12px ;} .table1 td{height:20}</style></head><body><p><strong style=\"padding-left:50px;font-size: 24px;\">第一联</strong><strong style=\"padding-left:200px;font-size: 24px;\">第二联</strong><strong style=\"padding-left:200px;font-size: 24px;\">第三联</strong></p><table class=\"table1\" border=\"1\" height=\"300px\"><tr ><td width = \"90px\">出库时间:</td><td width = \"130px\">time</td></tr><tr ><td>流水号:</td><td>serId</td></tr><tr ><td >车牌号:</td><td>plateNum</td></tr><tr ><td>发货单位:</td><td>unitName</td></tr><tr ><td>收货单位:</td><td>customerName</td></tr><tr ><td>品种:</td><td>foodVariety</td></tr><tr ><td>毛重:</td><td>fullWeight</td></tr><tr ><td>皮重:</td><td>emptyWeight</td></tr><tr ><td>净重:</td><td>netWeight</td></tr><tr ><td>总扣重:</td><td>deSum</td></tr><tr ><td>结算重量:</td><td>settleWeight</td></tr><tr ><td>称重人:</td><td>weightUser</td></tr><tr ><td >客户签字:</td><td ></td></tr></table><table class=\"table1\" border=\"1\" height=\"300px\"><tr ><td width = \"90px\">出库时间:</td><td width = \"130px\">time</td></tr><tr ><td>流水号:</td><td>serId</td></tr><tr ><td >车牌号:</td><td>plateNum</td></tr><tr ><td>发货单位:</td><td>unitName</td></tr><tr ><td>收货单位:</td><td>customerName</td></tr><tr ><td>品种:</td><td>foodVariety</td></tr><tr ><td>毛重:</td><td>fullWeight</td></tr><tr ><td>皮重:</td><td>emptyWeight</td></tr><tr ><td>净重:</td><td>netWeight</td></tr><tr ><td>总扣重:</td><td>deSum</td></tr><tr ><td>结算重量:</td><td>settleWeight</td></tr><tr ><td>称重人:</td><td>weightUser</td></tr><tr ><td >客户签字:</td><td ></td></tr></table><table class=\"table1\" border=\"1\" height=\"300px\"><tr ><td width = \"90px\">出库时间:</td><td width = \"130px\">time</td></tr><tr ><td>流水号:</td><td>serId</td></tr><tr ><td >车牌号:</td><td>plateNum</td></tr><tr ><td>发货单位:</td><td>unitName</td></tr><tr ><td>收货单位:</td><td>customerName</td></tr><tr ><td>品种:</td><td>foodVariety</td></tr><tr ><td>毛重:</td><td>fullWeight</td></tr><tr ><td>皮重:</td><td>emptyWeight</td></tr><tr ><td>净重:</td><td>netWeight</td></tr><tr ><td>总扣重:</td><td>deSum</td></tr><tr ><td>结算重量:</td><td>settleWeight</td></tr><tr ><td>称重人:</td><td>weightUser</td></tr><tr ><td >客户签字:</td><td ></td></tr></table></body></html>";
    /**
     * 丹棱出库称重单
     */
 
    public static  String OUT_WEIGHT_5012 = "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n" +
            "xmlns:x=\"urn:schemas-microsoft-com:office:excel\"\n" +
            "xmlns=\"http://www.w3.org/TR/REC-html40\">\n" +
            "\n" +
            "<head>\n" +
            "<meta http-equiv=Content-Type content=\"text/html; charset=gb2312\">\n" +
            "<meta name=ProgId content=Excel.Sheet>\n" +
            "<meta name=Generator content=\"Microsoft Excel 15\">\n" +
            "<link rel=File-List href=\"出库单.files/filelist.xml\">\n" +
            "<style id=\"入库单_28552_Styles\">\n" +
            "<!--table\n" +
            "\t{mso-displayed-decimal-separator:\"\\.\";\n" +
            "\tmso-displayed-thousand-separator:\"\\,\";}\n" +
            ".font528552\n" +
            "\t{color:windowtext;\n" +
            "\tfont-size:9.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;}\n" +
            ".xl1528552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:11.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:general;\n" +
            "\tvertical-align:bottom;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6328552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:700;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder-top:1.0pt solid windowtext;\n" +
            "\tborder-right:.5pt solid windowtext;\n" +
            "\tborder-bottom:none;\n" +
            "\tborder-left:1.0pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6428552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:700;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder-top:none;\n" +
            "\tborder-right:.5pt solid windowtext;\n" +
            "\tborder-bottom:1.0pt solid windowtext;\n" +
            "\tborder-left:1.0pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6528552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder:.5pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6628552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:6.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder:.5pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6728552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:general;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder:.5pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6828552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:12.0pt;\n" +
            "\tfont-weight:700;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:bottom;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6928552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:12.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:bottom;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl7028552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:700;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder-top:none;\n" +
            "\tborder-right:.5pt solid windowtext;\n" +
            "\tborder-bottom:none;\n" +
            "\tborder-left:1.0pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl7128552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:700;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder-top:1.0pt solid windowtext;\n" +
            "\tborder-right:.5pt solid windowtext;\n" +
            "\tborder-bottom:.5pt solid windowtext;\n" +
            "\tborder-left:1.0pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl7228552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:700;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder-top:.5pt solid windowtext;\n" +
            "\tborder-right:.5pt solid windowtext;\n" +
            "\tborder-bottom:.5pt solid windowtext;\n" +
            "\tborder-left:1.0pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl7328552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl7428552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:6.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl7528552\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder-top:none;\n" +
            "\tborder-right:none;\n" +
            "\tborder-bottom:1.0pt solid windowtext;\n" +
            "\tborder-left:none;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            "ruby\n" +
            "\t{ruby-align:left;}\n" +
            "rt\n" +
            "\t{color:windowtext;\n" +
            "\tfont-size:9.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-char-type:none;}\n" +
            "-->\n" +
            "</style>\n" +
            "</head>\n" +
            "\n" +
            "<body>\n" +
            "<!--[if !excel]>  <![endif]-->\n" +
            "<!--下列信息由 Microsoft Excel 的发布为网页向导生成。-->\n" +
            "<!--如果同一条目从 Excel 中重新发布,则所有位于 DIV 标记之间的信息均将被替换。-->\n" +
            "<!----------------------------->\n" +
            "<!--“从 EXCEL 发布网页”向导开始-->\n" +
            "<!----------------------------->\n" +
            "\n" +
            "<div id=\"入库单_28552\" align=center x:publishsource=\"Excel\">\n" +
            "\n" +
            "<table border=0 cellpadding=0 cellspacing=0 width=684 style='border-collapse:\n" +
            " collapse;table-layout:fixed;width:517pt'>\n" +
            " <col width=45 style='mso-width-source:userset;mso-width-alt:1440;width:34pt'>\n" +
            " <col width=54 style='mso-width-source:userset;mso-width-alt:1728;width:41pt'>\n" +
            " <col width=45 span=13 style='mso-width-source:userset;mso-width-alt:1440;\n" +
            " width:34pt'>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td colspan=15 height=29 class=xl6828552 width=684 style='height:21.95pt;\n" +
            "  width:517pt'>四川丹棱城关省粮食储备库-粮油出库单</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td colspan=2 height=29 class=xl7528552 style='height:21.95pt'>流水单号:</td>\n" +
            "  <td colspan=3 class=xl7428552>serId</td>\n" +
            "  <td colspan=2 class=xl7328552>出库时间:</td>\n" +
            "  <td colspan=3 class=xl7428552>time</td>\n" +
            "  <td colspan=2 class=xl7328552>填写单位:</td>\n" +
            "  <td colspan=3 class=xl7428552>unitName</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td rowspan=2 height=58 class=xl6328552 style='height:43.9pt'>登记</td>\n" +
            "  <td colspan=3 class=xl6528552 style='border-left:none'>发货单位</td>\n" +
            "  <td colspan=3 class=xl6528552 style='border-left:none'>收货单位</td>\n" +
            "  <td colspan=3 class=xl6528552 style='border-left:none'>承运人</td>\n" +
            "  <td colspan=3 class=xl6528552 style='border-left:none'>车船号</td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>运输方式</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td colspan=3 height=29 class=xl6628552 style='height:21.95pt;border-left:\n" +
            "  none'>unitName</td>\n" +
            "  <td colspan=3 class=xl6628552 style='border-left:none'>customerName</td>\n" +
            "  <td colspan=3 class=xl6628552 style='border-left:none'>driverName</td>\n" +
            "  <td colspan=3 class=xl6628552 style='border-left:none'>plateNum</td>\n" +
            "  <td colspan=2 class=xl6628552 style='border-left:none'>汽车</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td rowspan=2 height=58 class=xl7128552 style='height:43.9pt'>信息</td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'>品种</td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'>产地</td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'> </td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td height=29 class=xl6628552 style='height:21.95pt;border-top:none;\n" +
            "  border-left:none'>foodVariety</td>\n" +
            "  <td class=xl6628552 style='border-top:none;border-left:none'>foodLocation</td>\n" +
            "  <td class=xl6628552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'> </td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'> </td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td height=29 class=xl6328552 style='height:21.95pt'>入仓</td>\n" +
            "  <td class=xl6528552 style='border-top:none;border-left:none'>出粮仓号</td>\n" +
            "  <td colspan=2 class=xl6628552 style='border-left:none'>depotName</td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>出仓开始时间</td>\n" +
            "  <td colspan=2 class=xl6628552 style='border-left:none'>handleStart</td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>出仓结束时间</td>\n" +
            "  <td colspan=2 class=xl6628552 style='border-left:none'>handleEnd</td>\n" +
            "  <td class=xl6728552 style='border-top:none;border-left:none'>保管人<span\n" +
            "  style='display:none'>员</span></td>\n" +
            "  <td colspan=2 class=xl6628552 style='border-left:none'>keeperName</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td rowspan=2 height=58 class=xl6328552 style='border-bottom:1.0pt solid black;\n" +
            "  height:43.9pt'>检斤</td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>毛重</td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>皮重</td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>净重</td>\n" +
            "  <td colspan=3 class=xl6528552 style='border-left:none'>总扣重</td>\n" +
            "  <td colspan=3 class=xl6528552 style='border-left:none'>结算重量</td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>称重人员</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td colspan=2 height=29 class=xl6528552 style='height:21.95pt;border-left:\n" +
            "  none'>fullWeight</td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>emptyWeight</td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>netWeight</td>\n" +
            "  <td colspan=3 class=xl6528552 style='border-left:none'>deSum</td>\n" +
            "  <td colspan=3 class=xl6528552 style='border-left:none'>settleWeight</td>\n" +
            "  <td colspan=2 class=xl6628552 style='border-left:none'>weightUser</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td height=29 class=xl6428552 style='height:21.95pt'>备注</td>\n" +
            "  <td colspan=8 class=xl6528552 style='border-left:none'> </td>\n" +
            "  <td colspan=2 class=xl6528552 style='border-left:none'>客户签字</td>\n" +
            "  <td colspan=4 class=xl6528552 style='border-left:none'> </td>\n" +
            " </tr>\n" +
            " <![if supportMisalignedColumns]>\n" +
            " <tr height=0 style='display:none'>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=54 style='width:41pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            " </tr>\n" +
            " <![endif]>\n" +
            "</table>\n" +
            "\n" +
            "</div>\n" +
            "\n" +
            "\n" +
            "<!----------------------------->\n" +
            "<!--“从 EXCEL 发布网页”向导结束-->\n" +
            "<!----------------------------->\n" +
            "</body>\n" +
            "\n" +
            "</html>\n";
 
    /**
     * 丹棱入库称重单
     */
    public static  String IN_WEIGHT_5012 = "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n" +
            "xmlns:x=\"urn:schemas-microsoft-com:office:excel\"\n" +
            "xmlns=\"http://www.w3.org/TR/REC-html40\">\n" +
            "\n" +
            "<head>\n" +
            "<meta http-equiv=Content-Type content=\"text/html; charset=gb2312\">\n" +
            "<meta name=ProgId content=Excel.Sheet>\n" +
            "<meta name=Generator content=\"Microsoft Excel 15\">\n" +
            "<link rel=File-List href=\"入库单.files/filelist.xml\">\n" +
            "<style id=\"入库单_29464_Styles\">\n" +
            "<!--table\n" +
            "\t{mso-displayed-decimal-separator:\"\\.\";\n" +
            "\tmso-displayed-thousand-separator:\"\\,\";}\n" +
            ".font529464\n" +
            "\t{color:windowtext;\n" +
            "\tfont-size:9.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;}\n" +
            ".xl1529464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:11.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:general;\n" +
            "\tvertical-align:bottom;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6329464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:8.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder:.5pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6429464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:6.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder:.5pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6529464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:8.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:general;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder:.5pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6629464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:12.0pt;\n" +
            "\tfont-weight:700;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6729464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:12.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6829464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:8.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl6929464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:6.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl7029464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:8.0pt;\n" +
            "\tfont-weight:700;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder:.5pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            ".xl7129464\n" +
            "\t{padding-top:1px;\n" +
            "\tpadding-right:1px;\n" +
            "\tpadding-left:1px;\n" +
            "\tmso-ignore:padding;\n" +
            "\tcolor:black;\n" +
            "\tfont-size:10.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-number-format:General;\n" +
            "\ttext-align:center;\n" +
            "\tvertical-align:middle;\n" +
            "\tborder:.5pt solid windowtext;\n" +
            "\tmso-background-source:auto;\n" +
            "\tmso-pattern:auto;\n" +
            "\twhite-space:nowrap;}\n" +
            "ruby\n" +
            "\t{ruby-align:left;}\n" +
            "rt\n" +
            "\t{color:windowtext;\n" +
            "\tfont-size:9.0pt;\n" +
            "\tfont-weight:400;\n" +
            "\tfont-style:normal;\n" +
            "\ttext-decoration:none;\n" +
            "\tfont-family:等线;\n" +
            "\tmso-generic-font-family:auto;\n" +
            "\tmso-font-charset:134;\n" +
            "\tmso-char-type:none;}\n" +
            "-->\n" +
            "</style>\n" +
            "</head>\n" +
            "\n" +
            "<body>\n" +
            "<!--[if !excel]>  <![endif]-->\n" +
            "<!--下列信息由 Microsoft Excel 的发布为网页向导生成。-->\n" +
            "<!--如果同一条目从 Excel 中重新发布,则所有位于 DIV 标记之间的信息均将被替换。-->\n" +
            "<!----------------------------->\n" +
            "<!--“从 EXCEL 发布网页”向导开始-->\n" +
            "<!----------------------------->\n" +
            "\n" +
            "<div id=\"入库单_29464\" align=center x:publishsource=\"Excel\">\n" +
            "\n" +
            "<table border=0 cellpadding=0 cellspacing=0 width=675 style='border-collapse:\n" +
            " collapse;table-layout:fixed;width:510pt'>\n" +
            " <col width=45 span=15 style='mso-width-source:userset;mso-width-alt:1440;\n" +
            " width:34pt'>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td colspan=15 height=29 class=xl6629464 width=675 style='height:21.95pt;\n" +
            "  width:510pt'>四川丹棱城关省粮食储备库-粮油入库单</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td colspan=2 height=29 class=xl6829464 style='height:21.95pt'>流水单号:</td>\n" +
            "  <td colspan=3 class=xl6929464>serId</td>\n" +
            "  <td colspan=2 class=xl6829464>入库时间:</td>\n" +
            "  <td colspan=3 class=xl6929464>time</td>\n" +
            "  <td colspan=2 class=xl6829464>填写单位:</td>\n" +
            "  <td colspan=3 class=xl6929464>unitName</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td rowspan=2 height=58 class=xl7029464 style='height:43.9pt'>登记</td>\n" +
            "  <td colspan=3 class=xl6329464 style='border-left:none'>发货单位</td>\n" +
            "  <td colspan=3 class=xl6329464 style='border-left:none'>收货单位</td>\n" +
            "  <td colspan=3 class=xl6329464 style='border-left:none'>承运人</td>\n" +
            "  <td colspan=3 class=xl6329464 style='border-left:none'>车船号</td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'>运输方式</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td colspan=3 height=29 class=xl6429464 style='height:21.95pt;border-left:\n" +
            "  none'>customerName</td>\n" +
            "  <td colspan=3 class=xl6429464 style='border-left:none'>unitName</td>\n" +
            "  <td colspan=3 class=xl6429464 style='border-left:none'>driverName</td>\n" +
            "  <td colspan=3 class=xl6429464 style='border-left:none'>plateNum</td>\n" +
            "  <td colspan=2 class=xl6429464 style='border-left:none'>汽车</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td rowspan=2 height=58 class=xl7029464 style='height:43.9pt;border-top:none'>信息</td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'>品种</td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'>产地</td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'> </td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td height=29 class=xl6429464 style='height:21.95pt;border-top:none;\n" +
            "  border-left:none'>foodVariety</td>\n" +
            "  <td class=xl6429464 style='border-top:none;border-left:none'>foodLocation</td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'> </td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'> </td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td height=29 class=xl7029464 style='height:21.95pt;border-top:none'>入仓</td>\n" +
            "  <td class=xl6329464 style='border-top:none;border-left:none'>入粮仓号</td>\n" +
            "  <td colspan=2 class=xl6429464 style='border-left:none'>depotName</td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'>入仓开始时间</td>\n" +
            "  <td colspan=2 class=xl6429464 style='border-left:none'>handleStart</td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'>入仓结束时间</td>\n" +
            "  <td colspan=2 class=xl6429464 style='border-left:none'>handleEnd</td>\n" +
            "  <td class=xl6529464 style='border-top:none;border-left:none'>保管人员</td>\n" +
            "  <td colspan=2 class=xl6429464 style='border-left:none'>keeperName</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td rowspan=2 height=58 class=xl7029464 style='height:43.9pt;border-top:none'>检斤</td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'>毛重</td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'>皮重</td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'>净重</td>\n" +
            "  <td colspan=3 class=xl6329464 style='border-left:none'>总扣重</td>\n" +
            "  <td colspan=3 class=xl6329464 style='border-left:none'>结算重量</td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'>称重人员</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td colspan=2 height=29 class=xl7129464 style='height:21.95pt;border-left:\n" +
            "  none'>fullWeight</td>\n" +
            "  <td colspan=2 class=xl7129464 style='border-left:none'>emptyWeight</td>\n" +
            "  <td colspan=2 class=xl7129464 style='border-left:none'>netWeight</td>\n" +
            "  <td colspan=3 class=xl7129464 style='border-left:none'>deSum</td>\n" +
            "  <td colspan=3 class=xl7129464 style='border-left:none'>settleWeight</td>\n" +
            "  <td colspan=2 class=xl6429464 style='border-left:none'>weightUser</td>\n" +
            " </tr>\n" +
            " <tr height=29 style='mso-height-source:userset;height:21.95pt'>\n" +
            "  <td height=29 class=xl7029464 style='height:21.95pt;border-top:none'>备注</td>\n" +
            "  <td colspan=8 class=xl6329464 style='border-left:none'> </td>\n" +
            "  <td colspan=2 class=xl6329464 style='border-left:none'>客户签字</td>\n" +
            "  <td colspan=4 class=xl6329464 style='border-left:none'> </td>\n" +
            " </tr>\n" +
            " <![if supportMisalignedColumns]>\n" +
            " <tr height=0 style='display:none'>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            "  <td width=45 style='width:34pt'></td>\n" +
            " </tr>\n" +
            " <![endif]>\n" +
            "</table>\n" +
            "\n" +
            "</div>\n" +
            "\n" +
            "\n" +
            "<!----------------------------->\n" +
            "<!--“从 EXCEL 发布网页”向导结束-->\n" +
            "<!----------------------------->\n" +
            "</body>\n" +
            "\n" +
            "</html>\n";
}