thinreports 0.7.7 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -6
- data/.travis.yml +4 -10
- data/CHANGELOG.md +220 -0
- data/Gemfile +3 -3
- data/MIT-LICENSE +1 -1
- data/README.md +286 -0
- data/Rakefile +38 -8
- data/examples/character_spacing/character_spacing.rb +8 -0
- data/examples/character_spacing/character_spacing.tlf +1 -0
- data/examples/dynamic_image/dynamic_image.rb +31 -0
- data/examples/dynamic_image/dynamic_image.tlf +1 -0
- data/{test/case → examples}/dynamic_image/img200x100.png +0 -0
- data/{test/case → examples}/dynamic_image/img50x50.png +0 -0
- data/examples/dynamic_style/dynamic_style.rb +150 -0
- data/examples/dynamic_style/dynamic_style.tlf +1 -0
- data/examples/dynamic_style/dynamic_style_in_list.tlf +1 -0
- data/{test/case → examples}/dynamic_style/image.png +0 -0
- data/examples/eudc/eudc.rb +20 -0
- data/examples/eudc/eudc.tlf +1 -0
- data/{test/case → examples}/eudc/eudc.ttf +0 -0
- data/{test/case → examples}/helper.rb +14 -12
- data/examples/hidden_shapes/hidden_shapes.rb +9 -0
- data/examples/hidden_shapes/hidden_shapes.tlf +1 -0
- data/examples/list_events/list_events.rb +59 -0
- data/examples/list_events/list_events_0_7_7.tlf +1 -0
- data/examples/list_events/list_events_0_8.tlf +1 -0
- data/{test/case → examples}/list_manual_generation/list_manual_generation.rb +4 -4
- data/examples/list_manual_generation/list_manual_generation.tlf +1 -0
- data/{test/case → examples}/list_page_number/list_page_number.rb +3 -3
- data/examples/list_page_number/list_page_number.tlf +1 -0
- data/examples/page_number/page_number.rb +33 -0
- data/examples/page_number/page_number.tlf +1 -0
- data/examples/password_setting/password_setting.rb +10 -0
- data/examples/password_setting/password_setting.tlf +1 -0
- data/examples/report_callbacks/report_callbacks.rb +31 -0
- data/examples/report_callbacks/report_callbacks.tlf +1 -0
- data/{test/case → examples}/single_line_tblock/single_line_tblock.rb +2 -2
- data/examples/single_line_tblock/single_line_tblock.tlf +1 -0
- data/examples/tblock_overflow/tblock_overflow.rb +20 -0
- data/examples/tblock_overflow/tblock_overflow.tlf +1 -0
- data/examples/tblock_styles/font_size.tlf +1 -0
- data/examples/tblock_styles/tblock_styles.rb +43 -0
- data/examples/tblock_styles/tblock_styles.tlf +1 -0
- data/examples/text_align/text_align.rb +8 -0
- data/examples/text_align/text_align.tlf +1 -0
- data/examples/typeB_page_size/B4_ISO.tlf +1 -0
- data/examples/typeB_page_size/B4_JIS.tlf +1 -0
- data/{test/case → examples}/typeB_page_size/typeB_page_size.rb +3 -3
- data/examples/word_wrap/word_wrap.rb +26 -0
- data/examples/word_wrap/word_wrap.tlf +1 -0
- data/{resources/fonts → fonts}/IPA_Font_License_Agreement_v1.0.txt +0 -0
- data/{resources/fonts → fonts}/ipag.ttf +0 -0
- data/{resources/fonts → fonts}/ipagp.ttf +0 -0
- data/{resources/fonts → fonts}/ipam.ttf +0 -0
- data/{resources/fonts → fonts}/ipamp.ttf +0 -0
- data/lib/thinreports.rb +14 -2
- data/lib/thinreports/config.rb +30 -10
- data/lib/thinreports/core/errors.rb +23 -20
- data/lib/thinreports/core/events.rb +18 -19
- data/lib/thinreports/core/format/base.rb +20 -20
- data/lib/thinreports/core/format/builder.rb +14 -22
- data/lib/thinreports/core/shape.rb +9 -13
- data/lib/thinreports/core/shape/base.rb +4 -5
- data/lib/thinreports/core/shape/base/interface.rb +15 -15
- data/lib/thinreports/core/shape/base/internal.rb +15 -20
- data/lib/thinreports/core/shape/basic.rb +1 -1
- data/lib/thinreports/core/shape/basic/block_format.rb +3 -4
- data/lib/thinreports/core/shape/basic/block_interface.rb +9 -4
- data/lib/thinreports/core/shape/basic/block_internal.rb +9 -10
- data/lib/thinreports/core/shape/basic/format.rb +11 -10
- data/lib/thinreports/core/shape/basic/interface.rb +3 -3
- data/lib/thinreports/core/shape/basic/internal.rb +4 -5
- data/lib/thinreports/core/shape/image_block.rb +1 -1
- data/lib/thinreports/core/shape/image_block/format.rb +5 -6
- data/lib/thinreports/core/shape/image_block/interface.rb +9 -7
- data/lib/thinreports/core/shape/image_block/internal.rb +5 -6
- data/lib/thinreports/core/shape/list.rb +1 -1
- data/lib/thinreports/core/shape/list/configuration.rb +30 -15
- data/lib/thinreports/core/shape/list/events.rb +11 -11
- data/lib/thinreports/core/shape/list/format.rb +27 -28
- data/lib/thinreports/core/shape/list/manager.rb +128 -95
- data/lib/thinreports/core/shape/list/page.rb +54 -50
- data/lib/thinreports/core/shape/list/page_state.rb +15 -16
- data/lib/thinreports/core/shape/list/section_format.rb +14 -15
- data/lib/thinreports/core/shape/list/section_interface.rb +15 -16
- data/lib/thinreports/core/shape/list/section_internal.rb +7 -8
- data/lib/thinreports/core/shape/list/store.rb +10 -11
- data/lib/thinreports/core/shape/manager.rb +1 -1
- data/lib/thinreports/core/shape/manager/format.rb +10 -11
- data/lib/thinreports/core/shape/manager/internal.rb +21 -20
- data/lib/thinreports/core/shape/manager/target.rb +63 -34
- data/lib/thinreports/core/shape/page_number.rb +1 -1
- data/lib/thinreports/core/shape/page_number/format.rb +3 -3
- data/lib/thinreports/core/shape/page_number/interface.rb +2 -2
- data/lib/thinreports/core/shape/page_number/internal.rb +3 -3
- data/lib/thinreports/core/shape/style.rb +1 -1
- data/lib/thinreports/core/shape/style/base.rb +29 -29
- data/lib/thinreports/core/shape/style/basic.rb +1 -1
- data/lib/thinreports/core/shape/style/graphic.rb +10 -25
- data/lib/thinreports/core/shape/style/text.rb +36 -30
- data/lib/thinreports/core/shape/text.rb +1 -1
- data/lib/thinreports/core/shape/text/format.rb +8 -9
- data/lib/thinreports/core/shape/text/interface.rb +2 -2
- data/lib/thinreports/core/shape/text/internal.rb +6 -7
- data/lib/thinreports/core/shape/text_block.rb +1 -1
- data/lib/thinreports/core/shape/text_block/format.rb +17 -18
- data/lib/thinreports/core/shape/text_block/formatter.rb +7 -8
- data/lib/thinreports/core/shape/text_block/formatter/basic.rb +13 -12
- data/lib/thinreports/core/shape/text_block/formatter/datetime.rb +8 -9
- data/lib/thinreports/core/shape/text_block/formatter/number.rb +11 -12
- data/lib/thinreports/core/shape/text_block/formatter/padding.rb +9 -32
- data/lib/thinreports/core/shape/text_block/interface.rb +2 -2
- data/lib/thinreports/core/shape/text_block/internal.rb +19 -20
- data/lib/thinreports/core/utils.rb +33 -32
- data/lib/thinreports/generator.rb +6 -8
- data/lib/thinreports/generator/base.rb +15 -24
- data/lib/thinreports/generator/configuration.rb +10 -9
- data/lib/thinreports/generator/pdf.rb +27 -30
- data/lib/thinreports/generator/pdf/configuration.rb +11 -6
- data/lib/thinreports/generator/pdf/document.rb +28 -28
- data/lib/thinreports/generator/pdf/document/draw_shape.rb +30 -31
- data/lib/thinreports/generator/pdf/document/font.rb +53 -44
- data/lib/thinreports/generator/pdf/document/graphics.rb +8 -9
- data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +25 -25
- data/lib/thinreports/generator/pdf/document/graphics/basic.rb +25 -25
- data/lib/thinreports/generator/pdf/document/graphics/image.rb +15 -15
- data/lib/thinreports/generator/pdf/document/graphics/text.rb +40 -41
- data/lib/thinreports/generator/pdf/document/page.rb +20 -21
- data/lib/thinreports/generator/pdf/document/parse_color.rb +9 -10
- data/lib/thinreports/generator/pdf/document/parse_svg.rb +14 -15
- data/lib/thinreports/generator/pdf/drawer/base.rb +13 -14
- data/lib/thinreports/generator/pdf/drawer/list.rb +13 -14
- data/lib/thinreports/generator/pdf/drawer/list_section.rb +13 -14
- data/lib/thinreports/generator/pdf/drawer/page.rb +16 -17
- data/lib/thinreports/generator/pdf/prawn_ext.rb +17 -33
- data/lib/thinreports/layout.rb +2 -2
- data/lib/thinreports/layout/base.rb +22 -36
- data/lib/thinreports/layout/configuration.rb +11 -9
- data/lib/thinreports/layout/format.rb +26 -27
- data/lib/thinreports/layout/version.rb +8 -9
- data/lib/thinreports/report.rb +10 -14
- data/lib/thinreports/report/base.rb +104 -126
- data/lib/thinreports/report/events.rb +5 -5
- data/lib/thinreports/report/internal.rb +41 -33
- data/lib/thinreports/{core → report}/page.rb +38 -30
- data/lib/thinreports/version.rb +2 -3
- data/test/data/font.ttf +0 -0
- data/test/data/layout_block.tlf +1 -0
- data/test/data/layout_list.tlf +1 -0
- data/test/data/layout_list_noheader.tlf +1 -0
- data/test/data/layout_text1.tlf +1 -0
- data/test/data/layout_text2.tlf +1 -0
- data/test/test_helper.rb +74 -0
- data/test/{unit/tmp → tmp}/.gitkeep +0 -0
- data/test/unit/core/format/test_base.rb +14 -14
- data/test/unit/core/format/test_builder.rb +19 -23
- data/test/unit/core/shape/base/test_internal.rb +34 -37
- data/test/unit/core/shape/basic/test_basic_format.rb +4 -4
- data/test/unit/core/shape/basic/test_basic_interface.rb +15 -13
- data/test/unit/core/shape/basic/test_basic_internal.rb +19 -16
- data/test/unit/core/shape/basic/test_format.rb +4 -4
- data/test/unit/core/shape/basic/test_interface.rb +36 -46
- data/test/unit/core/shape/basic/test_internal.rb +23 -20
- data/test/unit/core/shape/image_block/test_format.rb +5 -5
- data/test/unit/core/shape/image_block/test_interface.rb +17 -16
- data/test/unit/core/shape/image_block/test_internal.rb +19 -16
- data/test/unit/core/shape/list/test_configuration.rb +45 -33
- data/test/unit/core/shape/list/test_events.rb +7 -7
- data/test/unit/core/shape/list/test_format.rb +16 -18
- data/test/unit/core/shape/list/test_manager.rb +5 -5
- data/test/unit/core/shape/list/test_page.rb +80 -22
- data/test/unit/core/shape/list/test_page_state.rb +12 -12
- data/test/unit/core/shape/list/test_section_format.rb +16 -17
- data/test/unit/core/shape/list/test_section_interface.rb +30 -22
- data/test/unit/core/shape/list/test_section_internal.rb +21 -19
- data/test/unit/core/shape/list/test_store.rb +7 -7
- data/test/unit/core/shape/manager/test_format.rb +11 -15
- data/test/unit/core/shape/manager/test_internal.rb +9 -9
- data/test/unit/core/shape/manager/test_target.rb +85 -57
- data/test/unit/core/shape/page_number/test_format.rb +4 -4
- data/test/unit/core/shape/page_number/test_interface.rb +11 -8
- data/test/unit/core/shape/page_number/test_internal.rb +5 -5
- data/test/unit/core/shape/styles/test_base.rb +9 -9
- data/test/unit/core/shape/styles/test_basic.rb +5 -5
- data/test/unit/core/shape/styles/test_graphic.rb +19 -33
- data/test/unit/core/shape/styles/test_text.rb +18 -7
- data/test/unit/core/shape/text/test_format.rb +6 -6
- data/test/unit/core/shape/text/test_internal.rb +11 -12
- data/test/unit/core/shape/text_block/formatter/test_basic.rb +16 -16
- data/test/unit/core/shape/text_block/formatter/test_datetime.rb +4 -4
- data/test/unit/core/shape/text_block/formatter/test_number.rb +34 -34
- data/test/unit/core/shape/text_block/formatter/test_padding.rb +44 -44
- data/test/unit/core/shape/text_block/test_format.rb +8 -8
- data/test/unit/core/shape/text_block/test_formatter.rb +17 -17
- data/test/unit/core/shape/text_block/test_interface.rb +37 -20
- data/test/unit/core/shape/text_block/test_internal.rb +38 -38
- data/test/unit/core/test_events.rb +5 -5
- data/test/unit/core/test_shape.rb +6 -6
- data/test/unit/core/test_utils.rb +68 -0
- data/test/unit/generator/pdf/document/graphics/test_attributes.rb +4 -4
- data/test/unit/generator/pdf/document/graphics/test_text.rb +60 -53
- data/test/unit/generator/pdf/document/test_draw_shape.rb +9 -7
- data/test/unit/generator/pdf/document/test_font.rb +79 -58
- data/test/unit/generator/pdf/document/test_graphics.rb +18 -19
- data/test/unit/generator/pdf/document/test_page.rb +44 -45
- data/test/unit/generator/pdf/document/test_parse_color.rb +5 -5
- data/test/unit/generator/pdf/test_configuration.rb +16 -9
- data/test/unit/generator/pdf/test_document.rb +8 -16
- data/test/unit/generator/test_base.rb +31 -42
- data/test/unit/generator/test_configuration.rb +6 -6
- data/test/unit/generator/test_pdf.rb +17 -14
- data/test/unit/layout/test_base.rb +34 -79
- data/test/unit/layout/test_configuration.rb +12 -37
- data/test/unit/layout/test_format.rb +36 -39
- data/test/unit/layout/test_version.rb +4 -4
- data/test/unit/report/test_base.rb +134 -213
- data/test/unit/report/test_events.rb +4 -4
- data/test/unit/report/test_internal.rb +84 -86
- data/test/unit/test_config.rb +31 -12
- data/test/unit/test_layout.rb +7 -7
- data/test/unit/test_report.rb +12 -24
- data/thinreports.gemspec +18 -22
- metadata +101 -200
- data/LICENSE +0 -1
- data/README.rdoc +0 -166
- data/doc/yardoc_templates/default/layout/html/footer.erb +0 -10
- data/lib/thinreports/core.rb +0 -20
- data/lib/thinreports/core/ext.rb +0 -5
- data/lib/thinreports/core/ext/array.rb +0 -19
- data/lib/thinreports/core/ext/hash.rb +0 -19
- data/lib/thinreports/core/ext/object.rb +0 -25
- data/lib/thinreports/core/format.rb +0 -14
- data/lib/thinreports/core/ordered_hash.rb +0 -39
- data/lib/thinreports/generator/pdf/drawer.rb +0 -16
- data/tasks/doc.rake +0 -12
- data/tasks/test.rake +0 -56
- data/test/benchmark/basic_estimate.tlf +0 -1
- data/test/benchmark/bench_basic_estimate.rb +0 -95
- data/test/case/character_spacing/character_spacing.rb +0 -8
- data/test/case/character_spacing/character_spacing.tlf +0 -1
- data/test/case/dynamic_image/dynamic_image.rb +0 -41
- data/test/case/dynamic_image/dynamic_image.tlf +0 -1
- data/test/case/dynamic_style/dynamic_style.rb +0 -154
- data/test/case/dynamic_style/dynamic_style.tlf +0 -1
- data/test/case/dynamic_style/dynamic_style_in_list.tlf +0 -1
- data/test/case/eudc/eudc.rb +0 -20
- data/test/case/eudc/eudc.tlf +0 -1
- data/test/case/hidden_shapes/hidden_shapes.rb +0 -9
- data/test/case/hidden_shapes/hidden_shapes.tlf +0 -1
- data/test/case/list_events/list_events.rb +0 -32
- data/test/case/list_events/list_events.tlf +0 -1
- data/test/case/list_manual_generation/list_manual_generation.tlf +0 -1
- data/test/case/list_page_number/list_page_number.tlf +0 -1
- data/test/case/page_number/page_number.rb +0 -33
- data/test/case/page_number/page_number.tlf +0 -1
- data/test/case/password_setting/password_setting.rb +0 -10
- data/test/case/password_setting/password_setting.tlf +0 -1
- data/test/case/single_line_tblock/single_line_tblock.tlf +0 -1
- data/test/case/tblock_overflow/tblock_overflow.rb +0 -20
- data/test/case/tblock_overflow/tblock_overflow.tlf +0 -1
- data/test/case/tblock_styles/tblock_styles.rb +0 -27
- data/test/case/tblock_styles/tblock_styles.tlf +0 -1
- data/test/case/text_align/text_align.rb +0 -8
- data/test/case/text_align/text_align.tlf +0 -1
- data/test/case/typeB_page_size/B4_ISO.tlf +0 -1
- data/test/case/typeB_page_size/B4_JIS.tlf +0 -1
- data/test/case/word_wrap/word_wrap.rb +0 -26
- data/test/case/word_wrap/word_wrap.tlf +0 -1
- data/test/unit/core/ext/array_spec.rb +0 -29
- data/test/unit/core/ext/hash_spec.rb +0 -29
- data/test/unit/core/ext/object_spec.rb +0 -30
- data/test/unit/core/ordered_hash_spec.rb +0 -51
- data/test/unit/core/shape/base/test_interface.rb +0 -52
- data/test/unit/core/utils_spec.rb +0 -56
- data/test/unit/data/basic_layout1.tlf +0 -1
- data/test/unit/data/basic_layout2.tlf +0 -1
- data/test/unit/data/basic_list_layout.tlf +0 -1
- data/test/unit/data/basic_list_noheader_layout.tlf +0 -1
- data/test/unit/helper.rb +0 -87
data/LICENSE
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
ThinReports Generator can be used under MIT-LICENSE. See MIT-LICENSE file for more details.
|
data/README.rdoc
DELETED
@@ -1,166 +0,0 @@
|
|
1
|
-
= ThinReports Generator
|
2
|
-
|
3
|
-
{<img src="https://secure.travis-ci.org/thinreports/thinreports-generator.png" />}[http://travis-ci.org/thinreports/thinreports-generator] {<img src="https://codeclimate.com/github/thinreports/thinreports-generator.png" />}[https://codeclimate.com/github/thinreports/thinreports-generator] {<img src="https://gemnasium.com/thinreports/thinreports-generator.png" />}[https://gemnasium.com/thinreports/thinreports-generator]
|
4
|
-
|
5
|
-
{ThinReports}[http://www.thinreports.org/] is Open Source Reporting Solution for Ruby.
|
6
|
-
|
7
|
-
* ThinReports Editor (GUI Designer)
|
8
|
-
* ThinReports Generator (Report Generator for Ruby)
|
9
|
-
|
10
|
-
== Generator's features
|
11
|
-
|
12
|
-
Editor's features is {here}[http://www.thinreports.org/features/editor/].
|
13
|
-
|
14
|
-
=== Easy to generate PDF file
|
15
|
-
|
16
|
-
Design the layout using Editor, then embed values to text field in layout. That's it!
|
17
|
-
|
18
|
-
=== Simple runtime environments
|
19
|
-
|
20
|
-
Ruby, RubyGems, Prawn and Generator.
|
21
|
-
|
22
|
-
=== Dynamic
|
23
|
-
|
24
|
-
Generator can be dynamically operated ...
|
25
|
-
|
26
|
-
* value of TextBlock
|
27
|
-
* image of ImageBlock
|
28
|
-
* styles (border, fill, visibility, position, color, font) of shape
|
29
|
-
|
30
|
-
=== For Japan
|
31
|
-
|
32
|
-
* Japanese OK
|
33
|
-
* External characters (Gaiji)
|
34
|
-
|
35
|
-
== Supported Versions
|
36
|
-
|
37
|
-
* Ruby 1.8.7,1.9.3, 2.0.0, 2.1.0
|
38
|
-
* JRuby 1.6, 1.7.0 (Only 1.8 mode)
|
39
|
-
|
40
|
-
== Install
|
41
|
-
|
42
|
-
Add the following line in your Gemfile:
|
43
|
-
|
44
|
-
gem 'thinreports'
|
45
|
-
|
46
|
-
Then bundle:
|
47
|
-
|
48
|
-
$ bundle
|
49
|
-
|
50
|
-
Or:
|
51
|
-
|
52
|
-
$ gem install thinreports
|
53
|
-
|
54
|
-
== Usage
|
55
|
-
|
56
|
-
*Caution:* In order to use the Generator, you must need the layout file(*.tlf) created with {ThinReportsEditor}[http://www.thinreports.org/features/editor/].
|
57
|
-
|
58
|
-
=== Basic format
|
59
|
-
|
60
|
-
require 'thinreports'
|
61
|
-
|
62
|
-
report = ThinReports::Report.new :layout => 'report.tlf'
|
63
|
-
# Page 1
|
64
|
-
report.start_new_page do
|
65
|
-
item(:title).value('ThinReports')
|
66
|
-
end
|
67
|
-
|
68
|
-
# Page 2
|
69
|
-
report.start_new_page do |page|
|
70
|
-
page.item(:title).value('Pure Ruby')
|
71
|
-
page.item(:title).style(:color, 'red')
|
72
|
-
end
|
73
|
-
|
74
|
-
report.generate(:filename => 'report.pdf')
|
75
|
-
|
76
|
-
Or,
|
77
|
-
|
78
|
-
ThinReports::Report.generate(:filename => 'report.pdf', :layout => 'report.tlf') do
|
79
|
-
start_new_page
|
80
|
-
|
81
|
-
page.item(:title).value('ThinReports')
|
82
|
-
|
83
|
-
start_new_page
|
84
|
-
|
85
|
-
page.item(:title).value('Pure Ruby').style(:color, '#ff0000')
|
86
|
-
end
|
87
|
-
|
88
|
-
=== List format
|
89
|
-
|
90
|
-
report = ThinReports::Report.new :layout => 'list.tlf'
|
91
|
-
report.start_new_page
|
92
|
-
|
93
|
-
10.times do |n|
|
94
|
-
report.list.add_row do |row|
|
95
|
-
row.item(:no).value(n)
|
96
|
-
end
|
97
|
-
end
|
98
|
-
|
99
|
-
report.generate(:filename => 'list.tlf')
|
100
|
-
|
101
|
-
Or,
|
102
|
-
|
103
|
-
10.times do |n|
|
104
|
-
report.list.add_row :no => n
|
105
|
-
end
|
106
|
-
|
107
|
-
Or,
|
108
|
-
|
109
|
-
report.list(:other_list_id) do |list|
|
110
|
-
10.times do |n|
|
111
|
-
list.add_row :no => n
|
112
|
-
end
|
113
|
-
end
|
114
|
-
|
115
|
-
* +#start_new_page+ can be omitted because it is created new page automatically when +#list+ is called
|
116
|
-
* id argument of +#list+ can be omitted if is +:default+
|
117
|
-
|
118
|
-
0.7.0 and earlier:
|
119
|
-
|
120
|
-
report = ThinReports::Report.new :layout => 'list.tlf'
|
121
|
-
|
122
|
-
10.times do |n|
|
123
|
-
report.page.list(:default).add_row do |row|
|
124
|
-
row.item(:no).value(n)
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
{Learn more}[http://osc.matsukei.net/projects/thinreports/wiki/En_Getting_Started].
|
129
|
-
|
130
|
-
=== Rails3, 4
|
131
|
-
|
132
|
-
* Rails Template handler for ThinReports DSL: {thinreports-rails}[https://github.com/takeshinoda/thinreports-rails]
|
133
|
-
|
134
|
-
== For more information
|
135
|
-
|
136
|
-
=== Release information
|
137
|
-
|
138
|
-
{News}[http://osc.matsukei.net/projects/thinreports/news] /
|
139
|
-
{Changelog}[http://osc.matsukei.net/projects/thinreports/wiki/Changelog]
|
140
|
-
|
141
|
-
=== Documentation
|
142
|
-
|
143
|
-
* Getting Started [{en}[http://osc.matsukei.net/projects/thinreports/wiki/En_Getting_Started] / {ja}[http://osc.matsukei.net/projects/thinreports/wiki/Getting_Started]]
|
144
|
-
* Examples [{en}[http://osc.matsukei.net/projects/thinreports/wiki/En_Examples] / {ja}[http://osc.matsukei.net/projects/thinreports/wiki/Examples]]
|
145
|
-
* HowTos [{en}[http://osc.matsukei.net/projects/thinreports/wiki/En_HowTos] / {ja}[http://osc.matsukei.net/projects/thinreports/wiki/HowTos]]
|
146
|
-
* Tutorial [{en}[http://osc.matsukei.net/projects/thinreports/wiki/En_Tutorial] / {ja}[http://osc.matsukei.net/projects/thinreports/wiki/Tutorial]]
|
147
|
-
|
148
|
-
=== Support
|
149
|
-
|
150
|
-
{Open Forum}[http://osc.matsukei.net/projects/thinreports/boards]
|
151
|
-
|
152
|
-
== Author
|
153
|
-
|
154
|
-
{Matsukei}[http://www.matsukei.co.jp/] Co.,Ltd.
|
155
|
-
|
156
|
-
* twitter: {@thinreports_org}[https://twitter.com/thinreports_org]
|
157
|
-
* email: {thinreports@gmail.com}[mailto:thinreports@gmail.com]
|
158
|
-
|
159
|
-
== Contributing
|
160
|
-
|
161
|
-
* Pull request
|
162
|
-
* Feedback from {here}[http://osc.matsukei.net/projects/thinreports/issues/new]
|
163
|
-
|
164
|
-
== License
|
165
|
-
|
166
|
-
See LICENSE file.
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<script type="text/javascript">
|
2
|
-
var _gaq = _gaq || [];
|
3
|
-
_gaq.push(['_setAccount', 'UA-19321975-2']);
|
4
|
-
_gaq.push(['_trackPageview']);
|
5
|
-
(function() {
|
6
|
-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
7
|
-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
8
|
-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
9
|
-
})();
|
10
|
-
</script
|
data/lib/thinreports/core.rb
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
module ThinReports
|
4
|
-
|
5
|
-
ROOTDIR = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
|
6
|
-
|
7
|
-
module Core
|
8
|
-
end
|
9
|
-
|
10
|
-
end
|
11
|
-
|
12
|
-
require 'thinreports/core/ext'
|
13
|
-
require 'thinreports/core/utils'
|
14
|
-
require 'thinreports/core/ordered_hash'
|
15
|
-
|
16
|
-
require 'thinreports/core/errors'
|
17
|
-
require 'thinreports/core/events'
|
18
|
-
require 'thinreports/core/format'
|
19
|
-
require 'thinreports/core/shape'
|
20
|
-
require 'thinreports/core/page'
|
data/lib/thinreports/core/ext.rb
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
module ThinReports
|
4
|
-
module Core
|
5
|
-
|
6
|
-
# @private
|
7
|
-
module ArrayExtensions
|
8
|
-
def simple_deep_copy
|
9
|
-
map {|v| v.dup rescue v }
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
# @private
|
17
|
-
class Array
|
18
|
-
include ThinReports::Core::ArrayExtensions
|
19
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
module ThinReports
|
4
|
-
module Core
|
5
|
-
|
6
|
-
# @private
|
7
|
-
module HashExtensions
|
8
|
-
def simple_deep_copy
|
9
|
-
inject({}) {|h, (k, v)| h[k] = (v.dup rescue v); h}
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
# @private
|
17
|
-
class Hash
|
18
|
-
include ThinReports::Core::HashExtensions
|
19
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
module ThinReports
|
4
|
-
module Core
|
5
|
-
|
6
|
-
# @private
|
7
|
-
module ObjectExtensions
|
8
|
-
unless ::Object.method_defined?(:blank?)
|
9
|
-
def blank?
|
10
|
-
case self
|
11
|
-
when String then self.nil? || self.empty?
|
12
|
-
when NilClass then true
|
13
|
-
else false
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
# @private
|
23
|
-
class Object
|
24
|
-
include ThinReports::Core::ObjectExtensions
|
25
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
module ThinReports
|
4
|
-
module Core
|
5
|
-
|
6
|
-
ruby_18 do
|
7
|
-
# @private
|
8
|
-
class OrderedHash < ::Hash
|
9
|
-
def initialize
|
10
|
-
@keys = []
|
11
|
-
super
|
12
|
-
end
|
13
|
-
|
14
|
-
def []=(key, value)
|
15
|
-
@keys << key unless member?(key)
|
16
|
-
super
|
17
|
-
end
|
18
|
-
|
19
|
-
def each
|
20
|
-
@keys.each {|key| yield(key, self[key])}
|
21
|
-
end
|
22
|
-
|
23
|
-
def each_key
|
24
|
-
@keys.each {|key| yield(key)}
|
25
|
-
end
|
26
|
-
|
27
|
-
def keys
|
28
|
-
@keys
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
ruby_19 do
|
34
|
-
# @private
|
35
|
-
OrderedHash = ::Hash
|
36
|
-
end
|
37
|
-
|
38
|
-
end
|
39
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
module ThinReports
|
4
|
-
module Generator
|
5
|
-
|
6
|
-
# @private
|
7
|
-
module PDF::Drawer
|
8
|
-
end
|
9
|
-
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
require 'thinreports/generator/pdf/drawer/base'
|
14
|
-
require 'thinreports/generator/pdf/drawer/page'
|
15
|
-
require 'thinreports/generator/pdf/drawer/list'
|
16
|
-
require 'thinreports/generator/pdf/drawer/list_section'
|
data/tasks/doc.rake
DELETED
data/tasks/test.rake
DELETED
@@ -1,56 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
require 'rake/testtask'
|
4
|
-
|
5
|
-
# Normal Test Tasks.
|
6
|
-
Rake::TestTask.new do |t|
|
7
|
-
t.name = :'test:unit'
|
8
|
-
t.libs << '.'
|
9
|
-
t.test_files = Dir['test/unit/**/test_*.rb'] +
|
10
|
-
Dir['test/unit/**/*_spec.rb']
|
11
|
-
end
|
12
|
-
|
13
|
-
# Custom Test Tasks.
|
14
|
-
namespace :test do
|
15
|
-
namespace :bench do
|
16
|
-
Dir['test/benchmark/bench_*.rb'].each do |f|
|
17
|
-
benchname = File.basename(f, '.*').sub(/bench_/, '')
|
18
|
-
|
19
|
-
desc "Run #{benchname} benchmark"
|
20
|
-
task benchname.to_sym do
|
21
|
-
require File.expand_path(f)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
namespace :case do
|
27
|
-
desc 'Run all special test cases'
|
28
|
-
task :all do
|
29
|
-
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/..'))
|
30
|
-
|
31
|
-
require 'test/case/helper'
|
32
|
-
|
33
|
-
Dir['test/case/*/*.rb'].each {|f| require f }
|
34
|
-
end
|
35
|
-
|
36
|
-
desc 'Reset all output of test cases'
|
37
|
-
task :reset do
|
38
|
-
File.delete(*Dir['test/case/*/*.pdf'])
|
39
|
-
end
|
40
|
-
|
41
|
-
Dir['test/case/*/*.rb'].each do |f|
|
42
|
-
casename = File.basename(File.dirname(f))
|
43
|
-
|
44
|
-
desc "Run #{casename} case"
|
45
|
-
task casename.to_sym do
|
46
|
-
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/..'))
|
47
|
-
|
48
|
-
require 'test/case/helper'
|
49
|
-
require "test/case/#{casename}/#{casename}"
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
desc 'Alias for test:case:all'
|
55
|
-
task :case => [:'case:all']
|
56
|
-
end
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":"0.6.0.pre3","finger-print":-2083664714,"config":{"title":"Basic Estimate","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><defs><clipPath id=\"_svgdef_38\"><rect x=\"20\" y=\"73\" width=\"185.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_39\"><rect x=\"429.1\" y=\"71\" width=\"146.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_40\"><rect x=\"123\" y=\"148\" width=\"205.6\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_41\"><rect x=\"123\" y=\"172\" width=\"122.1\" height=\"12\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_42\"><rect x=\"123\" y=\"193\" width=\"122.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_43\"><rect x=\"123\" y=\"215\" width=\"122.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_44\"><rect x=\"446\" y=\"49\" width=\"113.2\" height=\"12\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_45\"><rect x=\"20\" y=\"807.8\" width=\"76.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_46\"><rect x=\"110.1\" y=\"807.8\" width=\"79.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_47\"><rect x=\"54\" y=\"464.3\" width=\"181.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_48\"><rect x=\"243\" y=\"464.3\" width=\"41.6\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_49\"><rect x=\"310.1\" y=\"464.3\" width=\"61.5\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_50\"><rect x=\"389.6\" y=\"464.3\" width=\"73.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_51\"><rect x=\"23\" y=\"464.3\" width=\"24.5\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_52\"><rect x=\"391.1\" y=\"552.4\" width=\"162.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_53\"><rect x=\"391.1\" y=\"617.8\" width=\"162.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath></defs><g class=\"canvas\"><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"customer\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":73,\"width\":185.1,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":83,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_38)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"customer\" x-width=\"185.1\" x-height=\"14\" x-left=\"20\" x-top=\"73\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" clip-path=\"url(#_svgdef_38)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"185.1\" height=\"14\" x=\"20\" y=\"73\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"84\">customer</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"created_d\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":429.1,\"y\":71,\"width\":146.1,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y\\u5e74%m\\u6708%d\\u65e5\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":502.2,\"y\":82,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_39)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"created_d\" x-width=\"146.1\" x-height=\"14\" x-left=\"429.1\" x-top=\"71\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" x-format-datetime-format=\"%Y\u5e74%m\u6708%d\u65e5\" kerning=\"null\" clip-path=\"url(#_svgdef_39)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"146.1\" height=\"14\" x=\"429.1\" y=\"71\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"431.1\" y=\"82\">created_d</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"title\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":148,\"width\":205.6,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":123,\"y\":158,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_40)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"title\" x-width=\"205.6\" x-height=\"14\" x-left=\"123\" x-top=\"148\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" clip-path=\"url(#_svgdef_40)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"205.6\" height=\"14\" x=\"123\" y=\"148\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"159\">title</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"price\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":172,\"width\":122.1,\"height\":12},\"format\":{\"base\":\"\\\\ {value}.-\",\"type\":\"number\",\"number\":{\"delimiter\":\",\",\"precision\":0}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":245.1,\"y\":182,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_41)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\\ {value}.-\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"price\" x-width=\"122.1\" x-height=\"12\" x-left=\"123\" x-top=\"172\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_41)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"122.1\" height=\"12\" x=\"123\" y=\"172\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"183\">price</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"tax\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":193,\"width\":122.1,\"height\":14},\"format\":{\"base\":\"\\\\ {value}.-\",\"type\":\"number\",\"number\":{\"delimiter\":\",\",\"precision\":0}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":245.1,\"y\":203,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_42)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\\ {value}.-\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"tax\" x-width=\"122.1\" x-height=\"14\" x-left=\"123\" x-top=\"193\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_42)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"122.1\" height=\"14\" x=\"123\" y=\"193\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"204\">tax</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"note\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":237,\"width\":204.1,\"height\":68.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":123,\"y\":237,\"width\":204.1,\"height\":68.1,\"xml:space\":\"preserve\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"text-decoration\":\"none\",\"font-style\":\"normal\",\"font-weight\":\"normal\",\"text-anchor\":\"null\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"true\" x-id=\"note\" x-width=\"204.1\" x-height=\"68.1\" x-left=\"123\" x-top=\"237\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" text-decoration=\"none\" font-style=\"normal\" font-weight=\"normal\" text-anchor=\"null\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"204.1\" height=\"68.1\" x=\"123\" y=\"237\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"248\">note</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"total_price\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":215,\"width\":122.1,\"height\":14},\"format\":{\"base\":\"\\\\ {value}.-\",\"type\":\"number\",\"number\":{\"delimiter\":\",\",\"precision\":0}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":245.1,\"y\":225,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_43)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\\ {value}.-\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"total_price\" x-width=\"122.1\" x-height=\"14\" x-left=\"123\" x-top=\"215\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_43)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"122.1\" height=\"14\" x=\"123\" y=\"215\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"226\">total_price</text></g>LAYOUT--><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"328.1\" y1=\"161.9\" y2=\"161.9\" x1=\"122.5\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"328.1\" y1=\"185\" y2=\"185\" x1=\"122.5\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"328.1\" y1=\"207\" y2=\"207\" x1=\"122.5\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"328.1\" y1=\"229\" y2=\"229\" x1=\"122.5\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"575.6\" y1=\"85\" y2=\"85\" x1=\"429.1\"></line><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"no\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":446,\"y\":49,\"width\":113.2,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"padding\",\"padding\":{\"length\":8,\"char\":\"0\",\"direction\":\"L\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":502.6,\"y\":60,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_44)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"padding\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"no\" x-width=\"113.2\" x-height=\"12\" x-left=\"446\" x-top=\"49\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" x-format-padding-char=\"0\" x-format-padding-length=\"8\" x-format-padding-direction=\"L\" kerning=\"null\" clip-path=\"url(#_svgdef_44)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"113.2\" height=\"12\" x=\"446\" y=\"49\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"448\" y=\"60\">no</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"10\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"500\" x-height=\"20\" x-left=\"20\" x-top=\"328\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"500\" height=\"20\" x=\"20\" y=\"328\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"337\">\u898b\u7a4d\u6709\u52b9\u671f\u9650\u307e\u3067\u306b\u4f55\u5352\u3054\u7528\u547d\u304f\u3060\u3055\u3044\u307e\u3059\u3088\u3046\u304a\u9858\u3044\u7533\u3057\u4e0a\u3052\u307e\u3059\u3002</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"347\">\u5c1a\u3001\u5fa1\u898b\u7a4d\u6709\u52b9\u671f\u9650\u5f8c\u306f\u3054\u9762\u5012\u3068\u306f\u5b58\u3058\u307e\u3059\u304c\u3001\u305d\u306e\u90fd\u5ea6\u3054\u9023\u7d61\u306e\u4e0a\u3054\u5951\u7d04\u304f\u3060\u3055\u308b\u3088\u3046\u304a\u9858\u3044\u7533\u3057\u4e0a\u3052\u307e\u3059\u3002</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" x-line-height=\"22.799999999999997\" x-line-height-ratio=\"1.9\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"84\" x-height=\"103.2\" x-left=\"20\" x-top=\"148\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"84\" height=\"103.2\" x=\"20\" y=\"148\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"158\">\u4ef6 \u540d</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"180.8\">\u5fa1 \u898b \u7a4d \u4fa1 \u683c</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"203.6\">\u6d88 \u8cbb \u7a0e</text><text class=\"s-text-l3\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"226.4\">\u5fa1\u898b\u7a4d\u91d1\u984d\u5408\u8a08</text><text class=\"s-text-l4\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"249.2\">\u5099 \u8003</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"145\" x-height=\"12\" x-left=\"431.2\" x-top=\"51\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"145\" height=\"12\" x=\"431.2\" y=\"51\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"431.2\" y=\"61\">\u7b2c\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u53f7</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"204\" x-height=\"12\" x-left=\"20\" x-top=\"76\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"204\" height=\"12\" x=\"20\" y=\"76\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"86\">\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u6bbf</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"ref_no\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":807.8,\"width\":76.1,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"padding\",\"padding\":{\"length\":5,\"char\":\"0\",\"direction\":\"L\"}},\"value\":\"\",\"ref-id\":\"no\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":96.1,\"y\":817.8,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_45)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"padding\" x-value=\"\" x-format-base=\"\" x-ref-id=\"no\" x-display=\"true\" x-multiple=\"false\" x-id=\"ref_no\" x-width=\"76.1\" x-height=\"14\" x-left=\"20\" x-top=\"807.8\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-padding-char=\"0\" x-format-padding-length=\"5\" x-format-padding-direction=\"L\" kerning=\"null\" clip-path=\"url(#_svgdef_45)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"76.1\" height=\"14\" x=\"20\" y=\"807.8\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"818.8\">ref_no</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"ref_created_d\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":110.1,\"y\":807.8,\"width\":79.1,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y%m%d\"}},\"value\":\"\",\"ref-id\":\"created_d\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":110.1,\"y\":817.8,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_46)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"created_d\" x-display=\"true\" x-multiple=\"false\" x-id=\"ref_created_d\" x-width=\"79.1\" x-height=\"14\" x-left=\"110.1\" x-top=\"807.8\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-datetime-format=\"%Y%m%d\" kerning=\"null\" clip-path=\"url(#_svgdef_46)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"79.1\" height=\"14\" x=\"110.1\" y=\"807.8\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"112.1\" y=\"818.8\">ref_created_d</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"bold\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"7\" x-height=\"12\" x-left=\"99\" x-top=\"809\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"7\" height=\"12\" x=\"99\" y=\"809\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"99\" y=\"819\">-</text></g><!--SHAPE{\"type\":\"s-list\",\"id\":\"details\",\"display\":\"true\",\"desc\":null,\"footer\":{\"height\":40,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#FFFFFF\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"555.2\\\" height=\\\"40\\\" x=\\\"20\\\" y=\\\"603.9\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"183\\\" x-top=\\\"619.9\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"183\\\" y=\\\"619.9\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"183\\\" y=\\\"629.9\\\">\\u5408\\u8a08</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"385\\\" y1=\\\"603.9\\\" y2=\\\"643.9\\\" x1=\\\"385\\\"></line><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"price\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":391.1,\\\"y\\\":617.8,\\\"width\\\":162.1,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\",\\\",\\\"precision\\\":0}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553.2,\\\"y\\\":627.8,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"underline\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_53)\\\"}}}SHAPE---><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"8\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"8\\\" x-height=\\\"8\\\" x-left=\\\"554\\\" x-top=\\\"630.9\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"8\\\" height=\\\"8\\\" x=\\\"554\\\" y=\\\"630.9\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"554\\\" y=\\\"637.9\\\">\\u5186</text></g>\"},\"translate\":{\"x\":0,\"y\":-199.8}},\"footer-enabled\":\"true\",\"page-footer\":{\"height\":40,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#FFFFFF\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"555.2\\\" height=\\\"40\\\" x=\\\"20\\\" y=\\\"538.5\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"183\\\" x-top=\\\"553.5\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"183\\\" y=\\\"553.5\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"183\\\" y=\\\"563.5\\\">\\u5c0f\\u8a08</text></g><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"price\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":391.1,\\\"y\\\":552.4,\\\"width\\\":162.1,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\",\\\",\\\"precision\\\":0}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553.2,\\\"y\\\":562.4,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"underline\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_52)\\\"}}}SHAPE---><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"8\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"8\\\" x-height=\\\"8\\\" x-left=\\\"554\\\" x-top=\\\"565.5\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"8\\\" height=\\\"8\\\" x=\\\"554\\\" y=\\\"565.5\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"554\\\" y=\\\"572.5\\\">\\u5186</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"385\\\" y1=\\\"538.5\\\" y2=\\\"578.5\\\" x1=\\\"385\\\"></line>\"},\"translate\":{\"x\":0,\"y\":-134.4}},\"page-footer-enabled\":\"true\",\"detail\":{\"height\":40,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#ffffff\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"555.2\\\" height=\\\"40\\\" x=\\\"20\\\" y=\\\"451.3\\\"></rect><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"title\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":54,\\\"y\\\":464.3,\\\"width\\\":181.1,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":54,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_47)\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"amount\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":243,\\\"y\\\":464.3,\\\"width\\\":41.6,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\"\\\",\\\"precision\\\":1}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":284.6,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_48)\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"unit_price\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":310.1,\\\"y\\\":464.3,\\\"width\\\":61.5,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\",\\\",\\\"precision\\\":0}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":371.6,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_49)\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"price\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":389.6,\\\"y\\\":464.3,\\\"width\\\":73.1,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\",\\\",\\\"precision\\\":0}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":462.7,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_50)\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"note\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":481,\\\"y\\\":456.3,\\\"width\\\":90,\\\"height\\\":30},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":481,\\\"y\\\":456.3,\\\"width\\\":90,\\\"height\\\":30,\\\"xml:space\\\":\\\"preserve\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"8\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"font-style\\\":\\\"normal\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"null\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"no\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":23,\\\"y\\\":464.3,\\\"width\\\":24.5,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":35.3,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_51)\\\"}}}SHAPE---><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"8\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"8\\\" x-height=\\\"8\\\" x-left=\\\"372\\\" x-top=\\\"476.3\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"8\\\" height=\\\"8\\\" x=\\\"372\\\" y=\\\"476.3\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"372\\\" y=\\\"483.3\\\">\\u5186</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"8\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"8\\\" x-height=\\\"8\\\" x-left=\\\"463\\\" x-top=\\\"476.3\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"8\\\" height=\\\"8\\\" x=\\\"463\\\" y=\\\"476.3\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"463\\\" y=\\\"483.3\\\">\\u5186</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"50\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"50\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"240\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"240\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"305\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"305\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"385\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"385\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"475\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"475\\\"></line><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"8\\\" font-family=\\\"IPAMincho\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"287\\\" x-top=\\\"476.3\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"287\\\" y=\\\"476.3\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"287\\\" y=\\\"483.3\\\">\\u500b</text></g>\"},\"translate\":{\"x\":0,\"y\":-47.2}},\"header\":{\"height\":40,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#F0F0F0\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"555.2\\\" height=\\\"40\\\" x=\\\"20\\\" y=\\\"364.1\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"12\\\" x-height=\\\"12\\\" x-left=\\\"29\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"12\\\" height=\\\"12\\\" x=\\\"29\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"29\\\" y=\\\"390.1\\\">\\u9805</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"125\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"125\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"125\\\" y=\\\"390.1\\\">\\u540d\\u79f0\\uff0f\\u578b\\u540d</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"333\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"333\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"333\\\" y=\\\"390.1\\\">\\u5358\\u4fa1</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"414\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"414\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"414\\\" y=\\\"390.1\\\">\\u91d1\\u984d</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"510\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"510\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"510\\\" y=\\\"390.1\\\">\\u5099\\u8003</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"259\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"259\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"259\\\" y=\\\"390.1\\\">\\u6570\\u91cf</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"50\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"50\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"240\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"240\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"305\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"305\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"385\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"385\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"475\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"475\\\"></line>\"},\"translate\":{\"x\":0,\"y\":0}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":395.2,\"page-break\":\"true\"}SHAPE--><!--LAYOUT<g class=\"s-list\" x-id=\"details\" x-header-enabled=\"true\" x-page-footer-enabled=\"true\" x-footer-enabled=\"true\" x-changing-page=\"true\" x-display=\"true\" width=\"555.2\" height=\"435.2\" x=\"20\" y=\"364.1\"><g class=\"s-list-header\" transform=\"translate(0,0) rotate(0 0 0)\" x-top=\"364.1\" x-height=\"40\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#F0F0F0\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"40\" x=\"20\" y=\"364.1\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"12\" x-height=\"12\" x-left=\"29\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"12\" height=\"12\" x=\"29\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"29\" y=\"390.1\">\u9805</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"125\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"125\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"125\" y=\"390.1\">\u540d\u79f0\uff0f\u578b\u540d</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"333\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"333\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"333\" y=\"390.1\">\u5358\u4fa1</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"414\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"414\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"414\" y=\"390.1\">\u91d1\u984d</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"510\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"510\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"510\" y=\"390.1\">\u5099\u8003</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"259\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"259\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"259\" y=\"390.1\">\u6570\u91cf</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"50\" y1=\"364.1\" y2=\"404.1\" x1=\"50\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"240\" y1=\"364.1\" y2=\"404.1\" x1=\"240\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"305\" y1=\"364.1\" y2=\"404.1\" x1=\"305\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"385\" y1=\"364.1\" y2=\"404.1\" x1=\"385\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"475\" y1=\"364.1\" y2=\"404.1\" x1=\"475\"></line></g><g class=\"s-list-detail\" transform=\"translate(0,-47.2) rotate(0 0 0)\" x-top=\"404.1\" x-height=\"40\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#ffffff\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"40\" x=\"20\" y=\"451.3\"></rect><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"title\" x-width=\"181.1\" x-height=\"14\" x-left=\"54\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" clip-path=\"url(#_svgdef_47)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"181.1\" height=\"14\" x=\"54\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"56\" y=\"475.3\">title</text></g><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"amount\" x-width=\"41.6\" x-height=\"14\" x-left=\"243\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\"\" x-format-number-precision=\"1\" kerning=\"null\" clip-path=\"url(#_svgdef_48)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"41.6\" height=\"14\" x=\"243\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"245\" y=\"475.3\">amount</text></g><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"unit_price\" x-width=\"61.5\" x-height=\"14\" x-left=\"310.1\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_49)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"61.5\" height=\"14\" x=\"310.1\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"312.1\" y=\"475.3\">unit_price</text></g><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"price\" x-width=\"73.1\" x-height=\"14\" x-left=\"389.6\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_50)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"73.1\" height=\"14\" x=\"389.6\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"391.6\" y=\"475.3\">price</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"true\" x-id=\"note\" x-width=\"90\" x-height=\"30\" x-left=\"481\" x-top=\"456.3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"8\" font-family=\"IPAMincho\" kerning=\"null\" text-decoration=\"none\" font-style=\"normal\" font-weight=\"normal\" text-anchor=\"null\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"90\" height=\"30\" x=\"481\" y=\"456.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"483\" y=\"467.3\">note</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"no\" x-width=\"24.5\" x-height=\"14\" x-left=\"23\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" clip-path=\"url(#_svgdef_51)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"24.5\" height=\"14\" x=\"23\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"25\" y=\"475.3\">no</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"8\" x-height=\"8\" x-left=\"372\" x-top=\"476.3\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"8\" height=\"8\" x=\"372\" y=\"476.3\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"372\" y=\"483.3\">\u5186</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"8\" x-height=\"8\" x-left=\"463\" x-top=\"476.3\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"8\" height=\"8\" x=\"463\" y=\"476.3\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"463\" y=\"483.3\">\u5186</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"50\" y1=\"451.3\" y2=\"491.3\" x1=\"50\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"240\" y1=\"451.3\" y2=\"491.3\" x1=\"240\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"305\" y1=\"451.3\" y2=\"491.3\" x1=\"305\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"385\" y1=\"451.3\" y2=\"491.3\" x1=\"385\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"475\" y1=\"451.3\" y2=\"491.3\" x1=\"475\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"287\" x-top=\"476.3\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"287\" y=\"476.3\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"287\" y=\"483.3\">\u500b</text></g></g><g class=\"s-list-page-footer\" transform=\"translate(0,-94.4) rotate(0 0 0)\" x-top=\"444.1\" x-height=\"40\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"40\" x=\"20\" y=\"538.5\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"183\" x-top=\"553.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"183\" y=\"553.5\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"183\" y=\"563.5\">\u5c0f\u8a08</text></g><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"price\" x-width=\"162.1\" x-height=\"14\" x-left=\"391.1\" x-top=\"552.4\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"underline\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_52)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"162.1\" height=\"14\" x=\"391.1\" y=\"552.4\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"393.1\" y=\"563.4\">price</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"8\" x-height=\"8\" x-left=\"554\" x-top=\"565.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"8\" height=\"8\" x=\"554\" y=\"565.5\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"554\" y=\"572.5\">\u5186</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"385\" y1=\"538.5\" y2=\"578.5\" x1=\"385\"></line></g><g class=\"s-list-footer\" transform=\"translate(0,-119.8) rotate(0 0 0)\" x-top=\"484.1\" x-height=\"40\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"40\" x=\"20\" y=\"603.9\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"183\" x-top=\"619.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"183\" y=\"619.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"183\" y=\"629.9\">\u5408\u8a08</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"385\" y1=\"603.9\" y2=\"643.9\" x1=\"385\"></line><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"price\" x-width=\"162.1\" x-height=\"14\" x-left=\"391.1\" x-top=\"617.8\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"underline\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_53)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"162.1\" height=\"14\" x=\"391.1\" y=\"617.8\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"393.1\" y=\"628.8\">price</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"8\" x-height=\"8\" x-left=\"554\" x-top=\"630.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"8\" height=\"8\" x=\"554\" y=\"630.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"554\" y=\"637.9\">\u5186</text></g></g><text class=\"s-list-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"374.9\">details</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"555.2\" height=\"435.2\" x=\"20\" y=\"364.1\"></rect></g>LAYOUT--><rect stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"387.5\" y=\"209\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"388.1\" y=\"258\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"434.9\" y=\"258\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"528.4\" y=\"258\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"481.6\" y=\"258\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" x-line-height=\"18\" x-line-height-ratio=\"1.5\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"187\" x-height=\"90\" x-left=\"388.2\" x-top=\"199\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"187\" height=\"90\" x=\"388.2\" y=\"199\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"388.2\" y=\"209\">\u4ee3\u8868\u53d6\u7de0\u5f79\u793e\u9577\u3000\u3000\u25b3\u25b3\u3000\u25b3\u25b3</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"388.2\" y=\"227\">TEL(\uff11\uff12\uff13\uff14)\uff15\uff16\uff0d\uff17\uff18\uff19\uff10(\u4ee3)</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"388.2\" y=\"245\">FAX(\uff11\uff12\uff13\uff14)\uff15\uff16\uff0d\uff17\uff18\uff19\uff11</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"144\" x-height=\"24\" x-left=\"388\" x-top=\"146\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"144\" height=\"24\" x=\"388\" y=\"146\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"388\" y=\"156\">\u5cf6\u6839\u770c\u677e\u6c5f\u5e02\u3007\u3007\u753a 123-4</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"36\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"174.5\" x-height=\"36\" x-left=\"210.4\" x-top=\"20\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"174.5\" height=\"36\" x=\"210.4\" y=\"20\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.7\" y=\"52\">\u5fa1\u898b\u7a4d\u308a</text></g><image image-rendering=\"optimizeQuality\" preserveAspectRatio=\"none\" class=\"s-image\" x-display=\"true\" x-id=\"\" x=\"358\" y=\"168\" xlink:href=\"data:image/png;base64,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\" x-natural-width=\"291\" x-natural-height=\"32\" width=\"215.1\" height=\"23.7\"></image></g></svg>"}
|
@@ -1,95 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
require 'benchmark'
|
4
|
-
|
5
|
-
ESTIMATE_LAYOUT = File.expand_path(File.dirname(__FILE__) + '/basic_estimate.tlf')
|
6
|
-
ESTIMATE_OUTPUT = File.expand_path(File.dirname(__FILE__) + '/basic_estimate.pdf')
|
7
|
-
ESTIMATE_DATA = []
|
8
|
-
|
9
|
-
# Data 1:
|
10
|
-
data1 = {:no => 1234,
|
11
|
-
:created_d => Time.now,
|
12
|
-
:customer => '㈱テストコム',
|
13
|
-
:title => 'PC及び関連機器ご購入について',
|
14
|
-
:price => 1000000,
|
15
|
-
:tax => 50000,
|
16
|
-
:total_price => 1050000,
|
17
|
-
:details => []}
|
18
|
-
|
19
|
-
0.step(10000, 2) do |t|
|
20
|
-
data1[:details] << {:no => 1 + t,
|
21
|
-
:title => 'ノートパソコン',
|
22
|
-
:amount => 4,
|
23
|
-
:unit_price => 200000,
|
24
|
-
:price => 800000}
|
25
|
-
data1[:details] << {:no => 2 + t,
|
26
|
-
:title => 'プリンタ',
|
27
|
-
:amount => 2,
|
28
|
-
:unit_price => 100000,
|
29
|
-
:price => 200000,
|
30
|
-
:note => 'トナー×2本含む'}
|
31
|
-
end
|
32
|
-
ESTIMATE_DATA << data1
|
33
|
-
|
34
|
-
# Data 2:
|
35
|
-
data2 = {:no => 3456,
|
36
|
-
:created_d => '2011年1月1日',
|
37
|
-
:customer => '㈱○○○○',
|
38
|
-
:title => '□□□□□□□□□',
|
39
|
-
:price => 100000,
|
40
|
-
:tax => 5000,
|
41
|
-
:total_price => 105000,
|
42
|
-
:note => '△' * 40,
|
43
|
-
:details => []}
|
44
|
-
10000.times do |t|
|
45
|
-
data2[:details] << {:no => t + 1,
|
46
|
-
:title => '×××××××××',
|
47
|
-
:amount => 1,
|
48
|
-
:unit_price => 5000,
|
49
|
-
:price => 5000}
|
50
|
-
end
|
51
|
-
ESTIMATE_DATA << data2
|
52
|
-
|
53
|
-
puts Benchmark::CAPTION
|
54
|
-
puts Benchmark.measure {
|
55
|
-
report = ThinReports::Report.create do |r|
|
56
|
-
r.use_layout ESTIMATE_LAYOUT do |config|
|
57
|
-
config.list(:details) do
|
58
|
-
use_stores :price => 0,
|
59
|
-
:total_price => 0
|
60
|
-
|
61
|
-
events.on :page_footer_insert do |e|
|
62
|
-
e.section.item(:price).value(e.store.price)
|
63
|
-
e.store.price = 0
|
64
|
-
end
|
65
|
-
|
66
|
-
events.on :footer_insert do |e|
|
67
|
-
e.section.item(:price).value(e.store.total_price)
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
ESTIMATE_DATA.each do |data|
|
73
|
-
r.start_new_page
|
74
|
-
|
75
|
-
r.page.values(:no => data[:no],
|
76
|
-
:created_d => data[:created_d],
|
77
|
-
:customer => data[:customer],
|
78
|
-
:title => data[:title],
|
79
|
-
:price => data[:price],
|
80
|
-
:tax => data[:tax],
|
81
|
-
:total_price => data[:total_price],
|
82
|
-
:note => data[:note])
|
83
|
-
|
84
|
-
data[:details].each do |detail|
|
85
|
-
r.page.list(:details).add_row(detail)
|
86
|
-
r.page.list(:details) do |list|
|
87
|
-
list.store.price += detail[:price]
|
88
|
-
list.store.total_price += detail[:price]
|
89
|
-
end
|
90
|
-
end
|
91
|
-
end
|
92
|
-
end
|
93
|
-
|
94
|
-
report.generate_file(:pdf, ESTIMATE_OUTPUT)
|
95
|
-
}
|