OSDN Git Service

ピッキングリストと納品書を単体で表示するのをやめ、
authorymatsumoto <ymatsumoto@appirits.com>
Thu, 7 Mar 2013 09:33:59 +0000 (18:33 +0900)
committerYOSHIDA Hiroki <hyoshida@appirits.com>
Wed, 27 Mar 2013 09:34:57 +0000 (18:34 +0900)
PDF出力できるようにした

15 files changed:
README
app/controllers/admin/orders_controller.rb
app/controllers/admin/totals_controller.rb
app/views/admin/orders/_form.html.erb
app/views/admin/orders/picking_list.html.erb
app/views/admin/orders/picking_list_only.html.erb [deleted file]
app/views/admin/orders/search.html.erb
app/views/admin/orders/statement.html.erb
app/views/admin/orders/statement_only.html.erb [deleted file]
app/views/admin/totals/index.html.erb
app/views/layouts/admin/statement.html.erb [deleted file]
config/environment.rb
public/admin/pdf_layout/picking_list.tlf [new file with mode: 0644]
public/admin/pdf_layout/statement.tlf [new file with mode: 0644]
public/stylesheets/admin.css

diff --git a/README b/README
index ef1f150..87a77f5 100644 (file)
--- a/README
+++ b/README
@@ -111,9 +111,9 @@ $ make
 $ sudo make install
 
 2. gemのインストール
-$ wget http://rubyforge.org/frs/download.php/60718/rubygems-1.3.5.tgz
-$ tar zxf rubygems-1.3.5.tgz
-$ cd rubygems-1.3.5
+$ wget http://rubyforge.org/frs/download.php/69365/rubygems-1.3.6.tgz
+$ tar zxf rubygems-1.3.6.tgz
+$ cd rubygems-1.3.6
 $ sudo ruby setup.rb
 
 3. ImageMagickのインストール
@@ -140,6 +140,7 @@ $ sudo gem install webmock -v 1.3.4
 $ sudo gem install thoughtbot-factory_girl -v 1.2.2 --source http://gems.github.com
 $ sudo gem install json
 $ sudo gem install daemons
+$ sudo gem install thinreports
 
 6. PostgreSQLのインストール
 $ sudo yum install postgresql-devel
index e29b5bc..874417d 100644 (file)
@@ -1,5 +1,7 @@
 # -*- coding: utf-8 -*-
 require 'csv'
+require 'thinreports'
+include ActionView::Helpers::NumberHelper
 
 class Admin::OrdersController < Admin::BaseController
   before_filter :admin_permission_check_receive
@@ -62,30 +64,116 @@ class Admin::OrdersController < Admin::BaseController
   end
 
   def statement
-      @order_delivery = OrderDelivery.find_by_order_id(params[:id].to_i)
-      @order_delivery.update_ticket(params[:order_delivery_ticket])
-      @shop = Shop.find(:first)
+    @order_delivery = OrderDelivery.find_by_order_id(params[:id].to_i)
+    @order_delivery.update_ticket(params[:order_delivery_ticket])
+    @shop = Shop.find(:first)
   end
 
-  def statement_only
-      @order_delivery = OrderDelivery.find_by_order_id(params[:id].to_i)
-      @shop = Shop.find(:first)
-      render :layout => "admin/statement"
+  def statement_download
+    @order_delivery = OrderDelivery.find_by_order_id(params[:id].to_i)
+    @shop = Shop.find(:first)
+    
+    report = ThinReports::Report.create do |r|
+      r.use_layout "#{RAILS_ROOT}/public/admin/pdf_layout/statement" do |config|
+        config.list(:product) do |c|
+          c.events.on :footer_insert do |e|
+            e.section.item(:subtotal).value(number_with_delimiter(@order_delivery.subtotal))
+            e.section.item(:discount).value(number_with_delimiter(@order_delivery.discount) || 0)
+            e.section.item(:deliv_fee).value(number_with_delimiter(@order_delivery.deliv_fee))
+            e.section.item(:charge).value(number_with_delimiter(@order_delivery.charge))
+            e.section.item(:delivery_total).value(number_with_delimiter(@order_delivery.total))
+            e.section.item(:use_point).value(number_with_delimiter(@order_delivery.use_point))
+            e.section.item(:add_point).value(number_with_delimiter(@order_delivery.add_point))
+            e.section.item(:payment_total).value(number_with_delimiter(@order_delivery.payment_total))
+          end
+        end
+      end
+
+      r.events.on :page_create do |e|
+        e.page.item(:page).value(e.page.no)
+      end
+
+      r.events.on :generate do |e|
+        e.pages.each do |page|
+          page.item(:page_total).value(e.report.page_count)
+        end
+      end
+      
+      r.start_new_page
+
+      r.page.values(:recieve_date     => @order_delivery.received_at,
+                    :order_code       => @order_delivery.order_code,
+                    :create_date      => Time.now.strftime('%Y%m%d').to_date,
+                    :customer_zipcode => "#{@order_delivery.zipcode01}-#{@order_delivery.zipcode02}",
+                    :customer_address => "#{@order_delivery.prefecture_name}#{@order_delivery.address_city}#{@order_delivery.address_detail}",
+                    :customer_name    => "#{@order_delivery.family_name} #{@order_delivery.first_name}",
+                    :shop_zipcode     => @shop.try(:zipcode),
+                    :shop_tel         => @shop.try(:tel),
+                    :shop_address     => @shop.try(:address),
+                    :shop_name        => @shop.try(:corp_name))
+      
+      @order_delivery.order_details.each do | detail |
+        r.page.list(:product).add_row(:quantity       => detail.quantity,
+                                      :product_name   => detail.product_name,
+                                      :category_name1 => detail.style_category_name1,
+                                      :category_name2 => detail.style_category_name2,
+                                      :product_code   => detail.product_code,
+                                      :price          => number_with_delimiter(detail.price),
+                                      :price_with_tax => number_with_delimiter(detail.price_with_tax),
+                                      :subtotal       => number_with_delimiter(detail.subtotal))
+      end
+
+      send_data r.generate,:filename    => "statement_#{@order_delivery.order_code}.pdf",
+                           :type        => 'application/pdf',
+                           :disposition => 'attachment'
+    end
   end
 
   def picking_list
-   get_search_form
+    get_search_form
    
-   @order_deliveries = OrderDelivery.find(:all,
-                         :conditions => flatten_conditions(@search_list),
-                         :include => OrderDelivery::DEFAULT_INCLUDE,
-                         :order => "order_deliveries.id desc")
+    @order_deliveries = OrderDelivery.find(:all,
+                                           :conditions => flatten_conditions(@search_list),
+                                           :include    => OrderDelivery::DEFAULT_INCLUDE,
+                                           :order      => "order_deliveries.id desc")
   end
 
-  def picking_list_only
-      @order_deliveries = OrderDelivery.find(:all,:order => "order_deliveries.id desc", 
-                                     :conditions =>{ :id => params[:order_deliveries] })
-      render :layout => "admin/statement"
+  def picking_list_download
+    @order_deliveries = OrderDelivery.find(:all,
+                                           :order      => "order_deliveries.id desc", 
+                                           :conditions => { :id => params[:order_ids].split(",") })
+
+    report = ThinReports::Report.new :layout => "#{RAILS_ROOT}/public/admin/pdf_layout/picking_list"
+  
+    report.events.on :page_create do |e|
+        e.page.item(:page).value(e.page.no)
+    end
+
+    report.events.on :generate do |e|
+      e.pages.each do |page|
+        page.item(:page_total).value(e.report.page_count)
+      end
+    end
+    
+    report.start_new_page
+    
+    @order_deliveries.each do | order_delivery |
+      order_delivery.order_details.each do | detail |
+        report.page.list(:picking_list).add_row(:order_date     => order_delivery.received_at,
+                                                :order_code     => order_delivery.order_code,
+                                                :customer_name  => "#{order_delivery.family_name} #{order_delivery.first_name}",
+                                                :status         => order_delivery.status_view,
+                                                :product_code   => detail.product_code,
+                                                :product_name   => detail.product_name,
+                                                :category_name1 => detail.style_category_name1,
+                                                :category_name2 => detail.style_category_name2,
+                                                :quantity       => detail.quantity)
+      end
+    end
+
+    send_data report.generate,:filename     => "PickingList_#{Time.now.strftime('%Y%m%d%H%M%S')}.pdf",
+                              :type         => 'application/pdf',
+                              :disposition  => 'attachment'
   end
 
   def destroy
index c47bb10..6f09631 100644 (file)
@@ -5,41 +5,51 @@ class Admin::TotalsController < Admin::BaseController
   before_filter :admin_permission_check_term
 
   def index
-
+    
+    #searchの日付をparse
     params[:search] ||= {}
     [:month, :date_from, :date_to, :sale_start_from, :sale_start_to].each do | key |
       params[:search][key] = parse_date_select(params[:search], key)
     end
+    
     params[:search][:retailer_id] ||= session[:admin_user].retailer_id
+    
     if !session[:admin_user].master_shop? && params[:search][:retailer_id] != session[:admin_user].retailer_id
       raise ActiveRecord::RecordNotFound
     end
+    
     @search = OpenStruct.new(params[:search])
     params[:page] ||= 'term'
     @agent = Totalizer.get_instance(params[:page])
+    
     if not @agent
       params[:page] = 'term'
       @agent = Totalizer.get_instance(params[:page])
     end
+    
     @sale_start_enabled = (params[:page] == 'product')
     params[:type] ||= @agent.default_type
     @title = @agent.title
     @list_view = @agent.columns
     @links = @agent.links
     @labels = @agent.labels
+    
     begin
       @records = @agent.get_records(params)
     rescue => e
       logger.error e.message
       e.backtrace.each{|bt|logger.error(bt)}
     end
+    
     @total = @agent.total
+    
     begin
       flash[:graph] = @agent.graph
     rescue =>e
       logger.error(e.message)
       e.backtrace.each{|bt|logger.error(bt)}
     end
+    
     @selected_retailer = params[:search][:retailer_id].to_i
   end
 
index 65363f0..b8e81c1 100644 (file)
    <tr>
     <td><%=h detail.product_code %></td>
     <td><%=h detail.product_name %>/<br /><%=h detail.style_category_name1 %>/<br /><%=h detail.style_category_name2 %></td>
-    <td><%=h detail.price %>円</td>
+    <td><%=h number_with_delimiter(detail.price) %>円</td>
     <td><%=h detail.quantity %></td>
     <td><%= number_with_delimiter(detail.price_with_tax) %>円</td>
     <td><%= number_with_delimiter(detail.subtotal) %>円</td>
index 5eb049e..d1335f6 100644 (file)
@@ -2,53 +2,56 @@
 <%=h flash[:error] %>
 <%= render :partial => "submenu" %>
 
- <div id="main"><!-- メイン -->
- <h2>ピッキングチェック表</h2></br>
-<%counter = 0%>
-<% @order_deliveries.each do | order_delivery | %>
-  <% order_delivery.order_details.each do | detail | %>
-    <%counter += 1%>
-  <%end%>
-<%end%>
-<p><%= counter %>件&nbsp;が該当しました</p>
+<div id="main"><!-- メイン -->
+
+  <h2>ピッキングチェック表</h2><br/>
+  <% counter = 0 -%>
+  <% ord_ids = [] -%>
+  <% @order_deliveries.each do | order_delivery | -%>
+    <% counter += order_delivery.order_details.count -%>
+    <% ord_ids << order_delivery.id -%>
+  <% end -%>
 
-<% form_tag({:action => 'picking_list_only',:order_deliveries => @order_deliveries },:target=>["_blank"])do  %>
-  <div class="btn_box space20_bottom">
-      <%= submit_tag '全体表示', :class=>"btn" %>
+  <p><%= counter %>件&nbsp;が該当しました</p>
+  <% form_tag :action => 'picking_list_download' do%>
+    <%= hidden_field_tag :order_ids,ord_ids.join(",") %>
+    <div class="btn_box space20_bottom">
+      <%= submit_tag 'PDF DOWNLOAD', :class=>"btn" %>
       <%= image_tag("btn_side.gif", :width => "6", :height => "34", :class => "btn_side") %>
-  </div>
-<%end%>
+    </div>
+  <%end%>
+
+  <table cellspacing="1" class="data2">
+    <tr><th colspan="10">受付商品情報</th></tr>
+    <tr>
+      <th class="center">√</th>
+      <th class="center">受注日</th>
+      <th class="center">受注番号</th>
+      <th class="center">お客様氏名</th>
+      <th class="center">対応状況</th>
+      <th class="center">商品コード</th>
+      <th class="center">商品名</th>
+      <th class="center">規格1</th>
+      <th class="center">規格2</th>
+      <th class="center">数量</th>
+    </tr>
 
-<table cellspacing="1" class="data2">
-<tr>
-<th colspan="10">受付商品情報</th></tr>
-<tr>
-<th class="center">√</th>
-<th class="center">受注日</th>
-<th class="center">受注番号</th>
-<th class="center">お客様氏名</th>
-<th class="center">対応状況</th>
-<th class="center">商品コード</th>
-<th class="center">商品名</th>
-<th class="center">規格1</th>
-<th class="center">規格2</th>
-<th class="center">数量</th>
-  </tr>
-<% @order_deliveries.each do | order_delivery | %>
-  <% order_delivery.order_details.each do | detail | %>
- <tr>
-    <td><input type="checkbox"></td>
-    <td><%= date(order_delivery.received_at) %></td>
-    <td><%= link_to(order_delivery.order_code, {:controller => 'admin/orders', 
-     :action => :show, :id => order_delivery.order_id}, :target=>'_blank') %></td>
-    <td><%=h order_delivery.family_name %> <%=h order_delivery.first_name %> 様</td>
-    <td><%= order_delivery.status_view %></td>
-    <td><%=h detail.product_code %></td>
-    <td><%=h detail.product_name %></td>
-    <td><%=h detail.style_category_name1 %></td>
-    <td><%=h detail.style_category_name2 %></td>
-    <td><%=h detail.quantity %></td>
-   <% end %>
-<% end %>
-   </tr>
-</div>
+    <% @order_deliveries.each do | order_delivery | %>
+      <% order_delivery.order_details.each do | detail | %>
+        <tr>
+          <td><input type="checkbox"></td>
+          <td><%= date(order_delivery.received_at) %></td>
+          <td><%= link_to(order_delivery.order_code, {:controller => 'admin/orders', 
+                  :action => :show, :id => order_delivery.order_id}, :target=>'_blank') %></td>
+          <td><%=h order_delivery.family_name %> <%=h order_delivery.first_name %> 様</td>
+          <td><%= order_delivery.status_view %></td>
+          <td><%=h detail.product_code %></td>
+          <td><%=h detail.product_name %></td>
+          <td><%=h detail.style_category_name1 %></td>
+          <td><%=h detail.style_category_name2 %></td>
+          <td><%=h detail.quantity %></td>
+        </tr>
+      <% end %>
+    <% end %>
+</table>
diff --git a/app/views/admin/orders/picking_list_only.html.erb b/app/views/admin/orders/picking_list_only.html.erb
deleted file mode 100644 (file)
index 0daa9a7..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
- <div id="statement"><!-- メイン -->
- <h2>ピッキングチェック表</h2></br>
-<%counter = 0%>
-<% @order_deliveries.each do | order_delivery | %>
-  <% order_delivery.order_details.each do | detail | %>
-    <%counter += 1%>
-  <%end%>
-<%end%>
-
-<table cellspacing="1" class="data2">
-<tr>
-<th colspan="10">受付商品情報</th></tr>
-<tr>
-<th class="center">√</th>
-<th class="center">受注日</th>
-<th class="center">受注番号</th>
-<th class="center">お客様氏名</th>
-<th class="center">対応状況</th>
-<th class="center">商品コード</th>
-<th class="center">商品名</th>
-<th class="center">規格1</th>
-<th class="center">規格2</th>
-<th class="center">数量</th>
-  </tr>
-<% @order_deliveries.each do | order_delivery | %>
-  <% order_delivery.order_details.each do | detail | %>
- <tr>
-    <td><input type="checkbox"></td>
-    <td><%= date(order_delivery.received_at) %></td>
-    <td><%= link_to(order_delivery.order_code, {:controller => 'admin/orders', 
-     :action => :show, :id => order_delivery.order_id}, :target=>'_blank') %></td>
-    <td><%=h order_delivery.family_name %> <%=h order_delivery.first_name %> 様</td>
-    <td><%= order_delivery.status_view %></td>
-    <td><%=h detail.product_code %></td>
-    <td><%=h detail.product_name %></td>
-    <td><%=h detail.style_category_name1 %></td>
-    <td><%=h detail.style_category_name2 %></td>
-    <td><%=h detail.quantity %></td>
-   <% end %>
-<% end %>
-   </tr>
-</div>
index 49df270..c4f85cb 100644 (file)
     </div>
     <% end %>
 
-<% form_tag ({ :action => 'picking_list' }.merge(:search => @search.to_params)) do%>
- <div class="btn_box space20_bottom">
+  <% form_tag ({ :action => 'picking_list' }.merge(:search => @search.to_params)) do%>
+    <%- [:payment_id, :sex].each do |name| -%>
+      <%- params[name] and params[name].each do |value| -%>
+        <%= hidden_field_tag '%s[]' % name, value %>
+      <%- end -%>
+    <%- end -%>
+    <div class="btn_box space20_bottom">
       <%= submit_tag 'ピッキングリスト', :class=>"btn" %>
       <%= image_tag("btn_side.gif", :width => "6", :height => "34", :class => "btn_side") %>
-  </div>
-     <% end %>
+    </div>
+  <%- end -%>
 
   <table class="data2 clear" cellspacing="1">
    <tr>
index 9671bf2..4341886 100644 (file)
 <%=h flash[:error] %>
 <%= render :partial => "submenu" %>
 
- <div id="main"><!-- メイン -->
- <h2>納品書</h2><br />
+<div id="main"><!-- メイン -->
 <h2>納品書</h2><br />
 
-<% form_tag({:action => 'statement_only',:id=>@order_delivery.id },:target=>["_blank"])do  %>
-  <div class="btn_box space20_bottom">
-      <%= submit_tag '納品書全体表示', :class=>"btn" %>
+  <% form_tag({:action => 'statement_download',:id => @order_delivery.id })do  %>
+    <div class="btn_box space20_bottom" >
+      <%= submit_tag 'PDF DOWNLOAD', :class=>"btn" %>
       <%= image_tag("btn_side.gif", :width => "6", :height => "34", :class => "btn_side") %>
- </div>
-<%end%>
   </div>
+  <%end%>
 
- <table cellspacing="1" class="data">
- <tr>
- <th>発行日</th><td><%=h Time.now.strftime('%Y/%m/%d')%></td>
- </tr>
- <tr>
- <th>受注日</th><td><%=h date(@order_delivery.received_at) %></td>
- </tr>
- <tr>
- <th>お客様氏名</th><td><%=h @order_delivery.family_name %> <%=h @order_delivery.first_name %> 様</td>
- </tr>
-  <tr>
-  <th>受注コード</th><td><%=h @order_delivery.order_code %></td></tr>
-  <tr>
-   <th>住所</th>
-   <td colspan="3">
-     〒<%=h @order_delivery.zipcode01 %>-<%=h @order_delivery.zipcode02 %><br />
-     <%=h @order_delivery.prefecture_name %> <%=h @order_delivery.address_city %> <%=h @order_delivery.address_detail %>
-   </td>
-   </tr>
-    <tr>
-    <th colspan="2">会社情報</th></tr>
-    <tr>
-    <th>会社名</th><td><%=h @shop.try(:corp_name) %></td></tr>
-    <tr>
-    <th>住所</th><td>〒<%=h @shop.try(:zipcode) %><br />
-                   <%=h @shop.try(:address) %></td></tr>
-    <tr>
-    <th>TEL</th><td><%=h @shop.try(:tel) %></td></tr>
-    </table>    
+  <table cellspacing="1" class="data">
+    <tr>
+      <th>発行日</th><td><%=h Time.now.strftime('%Y/%m/%d')%></td>
+    </tr>
+    <tr>
+      <th>受注日</th><td><%=h date(@order_delivery.received_at) %></td>
+    </tr>
+    <tr>
+      <th>お客様氏名</th>
+        <td>
+          <%=h @order_delivery.family_name %> 
+          <%=h @order_delivery.first_name %> 様
+        </td>
+    </tr>
+    <tr>
+      <th>受注コード</th><td><%=h @order_delivery.order_code %></td></tr>
+    <tr>
+      <th>住所</th>
+        <td colspan="3">
+           〒<%=h @order_delivery.zipcode01 %>-
+             <%=h @order_delivery.zipcode02 %><br />
+             <%=h @order_delivery.prefecture_name %> 
+             <%=h @order_delivery.address_city %> 
+             <%=h @order_delivery.address_detail %>
+        </td>
+    </tr>
+    <tr>
+      <th colspan="2">会社情報</th></tr>
+    <tr>
+      <th>会社名</th>
+        <td><%=h @shop.try(:corp_name) %></td>
+    </tr>
+    <tr>
+      <th>住所</th>
+        <td>
+          〒<%=h @shop.try(:zipcode) %><br />
+            <%=h @shop.try(:address) %>
+        </td>
+    </tr>
+    <tr>
+      <th>TEL</th>
+        <td><%=h @shop.try(:tel) %></td>
+    </tr>
+  </table>    
 
-<h3>毎度お買い上げいただき誠にありがとうございます。下記の通りに納品いたします。</h3> <br />
-<table cellspacing="1" class="data2">  
-<tr>
-<th colspan="6">受付商品情報</th></tr>
-<tr>
-   <th class="center">商品コード</th><th class="center">商品名/<br />規格1/<br />規格2</th><th class="center">単価</th><th class="center">数量</th><th class="ce
-nter">税込み価格</th><th class="center">小計</th>
-  </tr>
+  <h3>毎度お買い上げいただき誠にありがとうございます。下記の通りに納品いたします。</h3> <br />
+
+  <table cellspacing="1" class="data2">  
+    <tr>
+      <th colspan="6">受付商品情報</th>
+    </tr>
+    <tr>
+      <th class="center">商品コード</th>
+      <th class="center">商品名/<br />規格1/<br />規格2</th>
+      <th class="center">単価</th>
+      <th class="center">数量</th>
+      <th class="center">税込み価格</th>
+      <th class="center">小計</th>
+    </tr>
+  
   <% @order_delivery.order_details.each do | detail | %>
-   <tr>
-    <td><%=h detail.product_code %></td>
-    <td><%=h detail.product_name %>/<br /><%=h detail.style_category_name1 %>/<br /><%=h detail.style_category_name2 %></td>
-    <td><%=h detail.price %>円</td>
-    <td><%=h detail.quantity %></td>
-    <td><%= number_with_delimiter(detail.price_with_tax) %>円</td>
-    <td><%= number_with_delimiter(detail.subtotal) %>円</td>
-   </tr>
+    <tr>
+      <td><%=h detail.product_code %></td>
+      <td>
+        <%=h detail.product_name %>/<br />
+        <%=h detail.style_category_name1 %>/<br />
+        <%=h detail.style_category_name2 %>
+      </td>
+      <td><%=h number_with_delimiter(detail.price) %>円</td>
+      <td><%=h detail.quantity %></td>
+      <td><%= number_with_delimiter(detail.price_with_tax) %>円</td>
+      <td><%= number_with_delimiter(detail.subtotal) %>円</td>
+    </tr>
   <% end %>
-  <tr>
-   <th colspan="5">小計</th>
-   <td><%=h number_with_delimiter(@order_delivery.subtotal) %>円</td>
-  </tr>
+  
+    <tr>
+      <th colspan="5">小計</th>
+        <td><%=h number_with_delimiter(@order_delivery.subtotal) %>円</td>
+    </tr>
+  
   <% unless @order_delivery.discount.blank? %>
-  <tr>
-   <th colspan="5">値引</th>
-   <td><%=h @order_delivery.discount %>円</td>
-  </tr>
+    <tr>
+      <th colspan="5">値引</th>
+        <td><%=h @order_delivery.discount %>円</td>
+    </tr>
   <% end %>
-  <tr>
-   <th colspan="5">送料</th>
-   <td><%=h @order_delivery.deliv_fee %>円</td>
-  </tr>
-  <tr>
-   <th colspan="5">手数料</th>
-   <td><%=h @order_delivery.charge %>円</td>
-  </tr>
-  <tr>
-<th colspan="5">合計</th>
-   <td><%=h number_with_delimiter(@order_delivery.total) %>円</td>
-  </tr>
+  
+    <tr>
+       <th colspan="5">送料</th>
+         <td><%=h @order_delivery.deliv_fee %>円</td>
+    </tr>
+    <tr>
+      <th colspan="5">手数料</th>
+        <td><%=h @order_delivery.charge %>円</td>
+    </tr>
+    <tr>
+      <th colspan="5">合計</th>
+        <td><%=h number_with_delimiter(@order_delivery.total) %>円</td>
+    </tr>
+  
   <% unless @order_delivery.use_point.blank? %>
-  <tr>
-   <th colspan="5">使用ポイント</th>
-   <td><%=h number_with_delimiter(@order_delivery.use_point) %>ポイント</td>
-  </tr>
+    <tr>
+      <th colspan="5">使用ポイント</th>
+        <td><%=h number_with_delimiter(@order_delivery.use_point) %>ポイント</td>
+    </tr>
   <% end %>
+  
   <% unless @order_delivery.add_point.blank? %>
-  <tr>
-   <th colspan="5">追加ポイント</th>
-   <td><%=h number_with_delimiter(@order_delivery.add_point) %>ポイント</td>
-  </tr>
+    <tr>
+      <th colspan="5">追加ポイント</th>
+        <td><%=h number_with_delimiter(@order_delivery.add_point) %>ポイント</td>
+    </tr>
   <% end %>
-  <tr>
-   <th colspan="5">お支払い合計</th>
-   <td><%=h number_with_delimiter(@order_delivery.payment_total) %>円</td>
-  </tr>
-</table>
- </div >
+  
+    <tr>
+      <th colspan="5">お支払い合計</th>
+        <td><%=h number_with_delimiter(@order_delivery.payment_total) %>円</td>
+    </tr>
+  </table>
+</div>
diff --git a/app/views/admin/orders/statement_only.html.erb b/app/views/admin/orders/statement_only.html.erb
deleted file mode 100644 (file)
index 890adec..0000000
+++ /dev/null
@@ -1,90 +0,0 @@
-<div id="statement"><!-- メイン -->
- <h2>納品書</h2><br />
- <table cellspacing="1" class="data">
-<tbody> <tr>
- <th>発行日</th><td><%=h Time.now.strftime('%Y/%m/%d')%></td>
- </tr>
- <tr>
- <th>受注日</th><td><%=h date(@order_delivery.received_at) %></td>
- </tr>
- <tr>
- <th>お客様氏名</th><td><%=h @order_delivery.family_name %> <%=h @order_delivery.first_name %> 様</td>
- </tr>
-  <tr>
-  <th>受注コード</th><td><%=h @order_delivery.order_code %></td></tr>
-  <tr>
-   <th>住所</th>
-   <td colspan="3">
-     〒<%=h @order_delivery.zipcode01 %>-<%=h @order_delivery.zipcode02 %><br />
-     <%=h @order_delivery.prefecture_name %> <%=h @order_delivery.address_city %> <%=h @order_delivery.address_detail %>
-   </td>
-   </tr>
-    <tr>
-    <th colspan="2">会社情報</th></tr>
-    <tr>
-    <th>会社名</th><td><%=h @shop.try(:corp_name) %></td></tr>
-    <tr>
-    <th>住所</th><td>〒<%=h @shop.try(:zipcode) %><br />
-                   <%=h @shop.try(:address) %></td></tr>
-    <tr>
-    <th>TEL</th><td><%=h @shop.try(:tel) %></td></tr>
-   </tbody> </table>    
-
-<h3>毎度お買い上げいただき誠にありがとうございます。下記の通りに納品いたします。</h3> <br />
-<table cellspacing="1" class="data2">  
-<tr>
-<th colspan="6">受付商品情報</th></tr>
-<tr>
-   <th class="center">商品コード</th><th class="center">商品名/<br />規格1/<br />規格2</th><th class="center">単価</th><th class="center">数量</th><th class="ce
-nter">税込み価格</th><th class="center">小計</th>
-  </tr>
-  <% @order_delivery.order_details.each do | detail | %>
-   <tr>
-    <td><%=h detail.product_code %></td>
-    <td><%=h detail.product_name %>/<br /><%=h detail.style_category_name1 %>/<br /><%=h detail.style_category_name2 %></td>
-    <td><%=h detail.price %>円</td>
-    <td><%=h detail.quantity %></td>
-    <td><%= number_with_delimiter(detail.price_with_tax) %>円</td>
-    <td><%= number_with_delimiter(detail.subtotal) %>円</td>
-   </tr>
-  <% end %>
-  <tr>
-   <th colspan="5">小計</th>
-   <td><%=h number_with_delimiter(@order_delivery.subtotal) %>円</td>
-  </tr>
-  <% unless @order_delivery.discount.blank? %>
-  <tr>
-   <th colspan="5">値引</th>
-   <td><%=h @order_delivery.discount %>円</td>
-  </tr>
-  <% end %>
-  <tr>
-   <th colspan="5">送料</th>
-   <td><%=h @order_delivery.deliv_fee %>円</td>
-  </tr>
-  <tr>
-   <th colspan="5">手数料</th>
-   <td><%=h @order_delivery.charge %>円</td>
-  </tr>
-  <tr>
-<th colspan="5">合計</th>
-   <td><%=h number_with_delimiter(@order_delivery.total) %>円</td>
-  </tr>
-  <% unless @order_delivery.use_point.blank? %>
-  <tr>
-   <th colspan="5">使用ポイント</th>
-   <td><%=h number_with_delimiter(@order_delivery.use_point) %>ポイント</td>
-  </tr>
-  <% end %>
-  <% unless @order_delivery.add_point.blank? %>
-  <tr>
-   <th colspan="5">追加ポイント</th>
-   <td><%=h number_with_delimiter(@order_delivery.add_point) %>ポイント</td>
-  </tr>
-  <% end %>
-  <tr>
-   <th colspan="5">お支払い合計</th>
-   <td><%=h number_with_delimiter(@order_delivery.payment_total) %>円</td>
-  </tr>
-</table>
-</div>
index 601267b..0e13e63 100644 (file)
@@ -4,89 +4,99 @@
 
 <div id="main"><!-- メイン -->
 
-<h2><%= @title %></h2>
+  <h2><%= @title %></h2>
 
-<% form_tag :action => 'index', :page => params[:page] do %>
-  <% if session[:admin_user].master_shop? %>
+  <% form_tag :action => 'index', :page => params[:page] do %>
+    <% if session[:admin_user].master_shop? %>
+      <table class="data2" cellspacing="1">
+        <tr>
+          <th style="width:10%">販売元</th>
+            <td style="width:90%">
+              <%= retailers = Retailer.find(:all, :order => :id).map {|r| [r.name, r.id]}
+                  select 'search', 'retailer_id', retailers, {:selected => @selected_retailer, :include_blank=>false} %>
+            </td>
+        </tr>
+      </table>
+  <% end %>
+
+  <% if @sale_start_enabled %>
     <table class="data2" cellspacing="1">
-  <tr>
-   <th style="width:10%">販売元</th>
-   <td style="width:90%">
-     <%= retailers = Retailer.find(:all, :order => :id).map {|r| [r.name, r.id]}
-        select 'search', 'retailer_id', retailers, {:selected => @selected_retailer, :include_blank=>false} %>
-   </td>
-  </tr>
+      <tr>
+        <th>販売開始期間</th>
+          <td>
+            <%= date_select 'search', 'sale_start_from', :use_month_numbers => true, :include_blank => true %>~
+            <%= date_select 'search', 'sale_start_to', :use_month_numbers => true, :include_blank => true %>
+          </td>
+      </tr>
     </table>
   <% end %>
- <% if @sale_start_enabled %>
-  <table class="data2" cellspacing="1">
-   <tr>
-    <th>販売開始期間</th>
-    <td>
-     <%= date_select 'search', 'sale_start_from', :use_month_numbers => true, :include_blank => true %>
-      ~<%= date_select 'search', 'sale_start_to', :use_month_numbers => true, :include_blank => true %>
-    </td>
-   </tr>
+
+  <table class="data2" cellspacing="1" cellpadding="0">
+    <tr>
+      <th style="width:10%;"></th>
+      <th style="width:90%;">受注日</th>
+    </tr>
+    <tr>
+      <th style="width:10%;">月度集計</th>
+        <td style="width:90%;">
+          <%= date_select 'search', 'month', :use_month_numbers => true, :discard_day => true %>&nbsp;
+          <%= submit_tag '月度で集計する', :name=>'search[by_month]', :class => "btn_s" %>
+        </td>
+    </tr>
+    <tr>
+      <th style="width:10%">期間集計</th>
+        <td style="width:90%">
+          <%= date_select 'search', 'date_from', :use_month_numbers => true %>~
+          <%= date_select 'search', 'date_to', :use_month_numbers => true %>&nbsp;
+          <%= submit_tag '期間で集計する', :name=>'search[by_date]', :class => "btn_s" %>
+        </td>
+    </tr>
   </table>
- <% end %>
- <table class="data2" cellspacing="1" cellpadding="0">
-  <tr>
-   <th style="width:10%;"></th>
-   <th style="width:90%;">受注日</th>
-  </tr>
-  <tr>
-   <th style="width:10%;">月度集計</th>
-   <td style="width:90%;">
-    <%= date_select 'search', 'month', :use_month_numbers => true, :discard_day => true %>&nbsp;
-    <%= submit_tag '月度で集計する', :name=>'search[by_month]', :class => "btn_s" %>
-   </td>
-  </tr>
-  <tr>
-   <th style="width:10%">期間集計</th>
-   <td style="width:90%">
-    <%= date_select 'search', 'date_from', :use_month_numbers => true %>
-      ~<%= date_select 'search', 'date_to', :use_month_numbers => true %>&nbsp;
-      <%= submit_tag '期間で集計する', :name=>'search[by_date]', :class => "btn_s" %>
-   </td>
-  </tr>
- </table>
 <% end %>
 
 <% if @records %>
   <div class="t_center">
-   <% if @links %>
-     <p><%= @title %> (
-      <% @links and @links.each_slice(2) do | label, type | %>
-       <%= link_to_unless(params[:type]==type, label, params.merge(:type=>type)) %>
-      <% end %>
-      )
-     </p>
-     <br />
-   <% end %>
-   <% form_tag :action => 'csv', :page => params[:page] do %>
-     <div class="btn_box space20_bottom">
-       <%= hidden_field_tag 'type', params[:type] %>
-       <% %w(month date_from date_to sale_start_from sale_start_to).each do | name | %>
-         <%- (1..3).each do | i | -%>
-           <%= hidden_field 'search', "#{name}(#{i}i)" %>
-         <%- end -%>
-       <% end %>
-       <% %w(by_month by_date type).each do | name | %>
-         <%= hidden_field('search', name) if @search.send(name) %>
-       <% end %>
-       <%= submit_tag '検索結果を CSV ダウンロード', :class=>"btn"  %>
-       <%= image_tag("btn_side.gif", :width => "6", :height => "34", :class => "btn_side", :alt => "") %>
-     </div>
-   <% end %>
-   <p><%= image_tag url_for(:action=>:graph), :alt=>'' %></p>
+    <% if @links %>
+      <p>
+        <%= @title %>(
+        <% @links and @links.each_slice(2) do | label, type | %>
+          <%= link_to_unless(params[:type]==type, label, params.merge(:type=>type)) %>
+        <% end %>)
+      </p>
+      <br />
+    <% end %>
+    
+    <% form_tag :action => 'csv', :page => params[:page] do %>
+      <div class="btn_box space20_bottom">
+        <%= hidden_field_tag 'type', params[:type] %>
+        
+        <% %w(month date_from date_to sale_start_from sale_start_to).each do | name | %>
+          <%- (1..3).each do | i | -%>
+            <%= hidden_field 'search', "#{name}(#{i}i)" %>
+          <%- end -%>
+        <% end %>
+        
+        <% %w(by_month by_date type).each do | name | %>
+          <%= hidden_field('search', name) if @search.send(name) %>
+        <% end %>
+       
+        <%= submit_tag '検索結果を CSV ダウンロード', :class=>"btn"  %>
+        <%= image_tag("btn_side.gif", :width => "6", :height => "34", :class => "btn_side", :alt => "") %> 
+      </div>
+    <% end %>
+   
+    <p><%= image_tag url_for(:action=>:graph), :alt=>'' %></p>
   </div>
+  
   <br />
+  
   <table class="data" cellspacing="1">
     <tr>
       <% @labels.each do | label | %>
         <th class="result_title"><%= label and label.sub("\n", '<br />') %></th>
       <% end %>
     </tr>
+   
     <% @records.each do |record| %>
       <tr>
         <% @list_view.each do | column | %>
         <% end %>
       </tr>
     <% end %>
+   
     <% if @total %>
       <tr>
         <% @list_view.each do | column | %>
         <% end %>
       </tr>
     <% end %>
+    
     <tr>
       <% @labels.each do | label | %>
         <th class="result_title"><%= label and label.sub("\n", '<br />') %></th>
     </tr>
   </table>
 <% end %>
-
-</div><!-- /メイン -->
diff --git a/app/views/layouts/admin/statement.html.erb b/app/views/layouts/admin/statement.html.erb
deleted file mode 100644 (file)
index e353070..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<link href="/stylesheets/admin.css" rel="Stylesheet" type="text/css" />
-<html>
-  <head>
-    <title><%= @title || "納品書" %></title>
-  </head>
-<div id="login_body">
-<div id="containar" class="clearfix">
-  <%= yield %>
-</div>
-</div>
-</html>
index c604e7e..aab822f 100644 (file)
@@ -23,7 +23,9 @@ Rails::Initializer.run do |config|
   # config.gem "aws-s3", :lib => "aws/s3"
   config.gem "thoughtbot-factory_girl", :lib => "factory_girl", :source => "http://gems.github.com"
 
-  # Only load the plugins named here, in the order given (default is alphabetical).
+  config.gem 'thinreports'
+ # Only load the plugins named here, in the order given (default is alphabetical).
   # :all can be used as a placeholder for all plugins not explicitly named
   # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
 
diff --git a/public/admin/pdf_layout/picking_list.tlf b/public/admin/pdf_layout/picking_list.tlf
new file mode 100644 (file)
index 0000000..d656fa7
--- /dev/null
@@ -0,0 +1 @@
+{"version":"0.7.6","finger-print":-1197400633,"config":{"title":"PickingList","option":{},"page":{"paper-type":"A4","orientation":"landscape","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"841.8\" height=\"595.2\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 841.8 595.2\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-list\",\"id\":\"picking_list\",\"display\":\"true\",\"desc\":null,\"footer\":{\"height\":0,\"svg\":{\"tag\":\"g\",\"content\":\"\"},\"translate\":{\"x\":-23,\"y\":-83.3}},\"footer-enabled\":\"true\",\"page-footer\":{\"height\":0,\"svg\":{\"tag\":\"g\",\"content\":\"\"},\"translate\":{\"x\":-23,\"y\":-56.9}},\"page-footer-enabled\":\"true\",\"detail\":{\"height\":25,\"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=\\\"10\\\" height=\\\"10\\\" x=\\\"55.5\\\" y=\\\"96.7\\\"></rect><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"order_date\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":75.5,\\\"y\\\":94.7,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"datetime\\\",\\\"datetime\\\":{\\\"format\\\":\\\"%Y/%m/%d\\\"}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":103,\\\"y\\\":104.9,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"order_code\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":138,\\\"y\\\":94.7,\\\"width\\\":100,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":188,\\\"y\\\":104.9,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"customer_name\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":240.5,\\\"y\\\":94.7,\\\"width\\\":95,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":288,\\\"y\\\":104.9,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"status\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":340.5,\\\"y\\\":94.7,\\\"width\\\":45,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":363,\\\"y\\\":104.9,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"product_code\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":390.5,\\\"y\\\":94.7,\\\"width\\\":125,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":453,\\\"y\\\":104.9,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><rect stroke=\\\"#000000\\\" 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=\\\"25\\\" height=\\\"25\\\" x=\\\"48\\\" y=\\\"88.2\\\"></rect><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"product_name\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":520.5,\\\"y\\\":94.7,\\\"width\\\":165,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":603,\\\"y\\\":104.9,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"category_name1\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":690.5,\\\"y\\\":94.7,\\\"width\\\":50,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":715.5,\\\"y\\\":104.9,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"category_name2\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":745.5,\\\"y\\\":94.7,\\\"width\\\":50,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":770.5,\\\"y\\\":104.9,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"quantity\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":800.5,\\\"y\\\":94.7,\\\"width\\\":33,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":817,\\\"y\\\":104.9,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><rect stroke=\\\"#000000\\\" 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=\\\"60\\\" height=\\\"25\\\" x=\\\"73\\\" y=\\\"88.2\\\"></rect><rect stroke=\\\"#000000\\\" 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=\\\"105\\\" height=\\\"25\\\" x=\\\"133\\\" y=\\\"88.2\\\"></rect><rect stroke=\\\"#000000\\\" 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=\\\"100\\\" height=\\\"25\\\" x=\\\"238\\\" y=\\\"88.2\\\"></rect><rect stroke=\\\"#000000\\\" 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=\\\"130\\\" height=\\\"25\\\" x=\\\"388\\\" y=\\\"88.2\\\"></rect><rect stroke=\\\"#000000\\\" 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=\\\"50\\\" height=\\\"25\\\" x=\\\"338\\\" y=\\\"88.2\\\"></rect><rect stroke=\\\"#000000\\\" 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=\\\"170\\\" height=\\\"25\\\" x=\\\"518\\\" y=\\\"88.2\\\"></rect><rect stroke=\\\"#000000\\\" 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=\\\"40\\\" height=\\\"25\\\" x=\\\"798\\\" y=\\\"88.2\\\"></rect><rect stroke=\\\"#000000\\\" 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=\\\"55\\\" height=\\\"25\\\" x=\\\"688\\\" y=\\\"88.2\\\"></rect><rect stroke=\\\"#000000\\\" 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=\\\"55\\\" height=\\\"25\\\" x=\\\"743\\\" y=\\\"88.2\\\"></rect>\"},\"translate\":{\"x\":-23,\"y\":-21.7}},\"header\":{\"height\":46.5,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"25\\\" height=\\\"25\\\" x=\\\"48\\\" y=\\\"74.5\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"790\\\" height=\\\"21.5\\\" x=\\\"48\\\" y=\\\"53\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"60\\\" height=\\\"25\\\" x=\\\"73\\\" y=\\\"74.5\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"105\\\" height=\\\"25\\\" x=\\\"133\\\" y=\\\"74.5\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"100\\\" height=\\\"25\\\" x=\\\"238\\\" y=\\\"74.5\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"130\\\" height=\\\"25\\\" x=\\\"388\\\" y=\\\"74.5\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"50\\\" height=\\\"25\\\" x=\\\"338\\\" y=\\\"74.5\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"170\\\" height=\\\"25\\\" x=\\\"518\\\" y=\\\"74.5\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"40\\\" height=\\\"25\\\" x=\\\"798\\\" y=\\\"74.5\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"55\\\" height=\\\"25\\\" x=\\\"688\\\" y=\\\"74.5\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"12\\\" font-family=\\\"Helvetica\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"37\\\" x-height=\\\"12\\\" x-left=\\\"85.5\\\" x-top=\\\"83\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"37\\\" height=\\\"12\\\" x=\\\"85.5\\\" y=\\\"83\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"85.5\\\" y=\\\"93.2\\\">\\u53d7\\u6ce8\\u65e5</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"12\\\" font-family=\\\"Helvetica\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"49\\\" x-height=\\\"13.7\\\" x-left=\\\"160.5\\\" x-top=\\\"83\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"49\\\" height=\\\"13.7\\\" x=\\\"160.5\\\" y=\\\"83\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"160.5\\\" y=\\\"93.2\\\">\\u53d7\\u6ce8\\u756a\\u53f7</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"12\\\" font-family=\\\"Helvetica\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"258\\\" x-top=\\\"83\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"258\\\" y=\\\"83\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"258\\\" y=\\\"93.2\\\">\\u304a\\u5ba2\\u69d8\\u6c0f\\u540d</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"12\\\" font-family=\\\"Helvetica\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"49\\\" x-height=\\\"12\\\" x-left=\\\"339\\\" x-top=\\\"83\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"49\\\" height=\\\"12\\\" x=\\\"339\\\" y=\\\"83\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"339\\\" y=\\\"93.2\\\">\\u5bfe\\u5fdc\\u72b6\\u6cc1</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"12\\\" font-family=\\\"Helvetica\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"61\\\" x-height=\\\"14\\\" x-left=\\\"423\\\" x-top=\\\"83\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"61\\\" height=\\\"14\\\" x=\\\"423\\\" y=\\\"83\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"423\\\" y=\\\"93.2\\\">\\u5546\\u54c1\\u30b3\\u30fc\\u30c9</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"12\\\" font-family=\\\"Helvetica\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"44\\\" x-height=\\\"14\\\" x-left=\\\"588\\\" x-top=\\\"83\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"44\\\" height=\\\"14\\\" x=\\\"588\\\" y=\\\"83\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"588\\\" y=\\\"93.2\\\">\\u5546\\u54c1\\u540d</text></g><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"55\\\" height=\\\"25\\\" x=\\\"743\\\" y=\\\"74.5\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"12\\\" font-family=\\\"Helvetica\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"34\\\" x-height=\\\"12\\\" x-left=\\\"755.5\\\" x-top=\\\"83\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"34\\\" height=\\\"12\\\" x=\\\"755.5\\\" y=\\\"83\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"755.5\\\" y=\\\"93.2\\\">\\u898f\\u683c2</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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"72\\\" x-height=\\\"17\\\" x-left=\\\"413\\\" x-top=\\\"58\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"72\\\" height=\\\"17\\\" x=\\\"413\\\" y=\\\"58\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"413\\\" y=\\\"68.2\\\">\\u53d7\\u4ed8\\u5546\\u54c1\\u72b6\\u6cc1</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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"33\\\" x-height=\\\"12\\\" x-left=\\\"700.5\\\" x-top=\\\"83\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"33\\\" height=\\\"12\\\" x=\\\"700.5\\\" y=\\\"83\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"700.5\\\" y=\\\"93.2\\\">\\u898f\\u683c1</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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"25\\\" x-height=\\\"12\\\" x-left=\\\"805.5\\\" x-top=\\\"83\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"25\\\" height=\\\"12\\\" x=\\\"805.5\\\" y=\\\"83\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"805.5\\\" y=\\\"93.2\\\">\\u6570\\u91cf</text></g>\"},\"translate\":{\"x\":-23,\"y\":-33}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":498.5,\"page-break\":\"true\"}SHAPE--><!--LAYOUT<g class=\"s-list\" x-id=\"picking_list\" x-header-enabled=\"true\" x-page-footer-enabled=\"true\" x-footer-enabled=\"true\" x-changing-page=\"true\" x-display=\"true\" width=\"790\" height=\"545\" x=\"25\" y=\"20\"><g class=\"s-list-header\" transform=\"translate(-23,-33) rotate(0 0 0)\" x-top=\"20\" x-height=\"46.5\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"25\" height=\"25\" x=\"48\" y=\"74.5\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"790\" height=\"21.5\" x=\"48\" y=\"53\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"60\" height=\"25\" x=\"73\" y=\"74.5\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"105\" height=\"25\" x=\"133\" y=\"74.5\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"25\" x=\"238\" y=\"74.5\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"130\" height=\"25\" x=\"388\" y=\"74.5\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"50\" height=\"25\" x=\"338\" y=\"74.5\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"170\" height=\"25\" x=\"518\" y=\"74.5\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"40\" height=\"25\" x=\"798\" y=\"74.5\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"55\" height=\"25\" x=\"688\" y=\"74.5\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"37\" x-height=\"12\" x-left=\"85.5\" x-top=\"83\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"37\" height=\"12\" x=\"85.5\" y=\"83\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"85.5\" y=\"93.2\">\u53d7\u6ce8\u65e5</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"49\" x-height=\"13.7\" x-left=\"160.5\" x-top=\"83\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"49\" height=\"13.7\" x=\"160.5\" y=\"83\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"160.5\" y=\"93.2\">\u53d7\u6ce8\u756a\u53f7</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"258\" x-top=\"83\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"258\" y=\"83\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"258\" y=\"93.2\">\u304a\u5ba2\u69d8\u6c0f\u540d</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"49\" x-height=\"12\" x-left=\"339\" x-top=\"83\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"49\" height=\"12\" x=\"339\" y=\"83\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"339\" y=\"93.2\">\u5bfe\u5fdc\u72b6\u6cc1</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"61\" x-height=\"14\" x-left=\"423\" x-top=\"83\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"61\" height=\"14\" x=\"423\" y=\"83\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"423\" y=\"93.2\">\u5546\u54c1\u30b3\u30fc\u30c9</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"44\" x-height=\"14\" x-left=\"588\" x-top=\"83\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"44\" height=\"14\" x=\"588\" y=\"83\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"588\" y=\"93.2\">\u5546\u54c1\u540d</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"55\" height=\"25\" x=\"743\" y=\"74.5\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"34\" x-height=\"12\" x-left=\"755.5\" x-top=\"83\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"34\" height=\"12\" x=\"755.5\" y=\"83\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"755.5\" y=\"93.2\">\u898f\u683c2</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=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"72\" x-height=\"17\" x-left=\"413\" x-top=\"58\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"72\" height=\"17\" x=\"413\" y=\"58\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"413\" y=\"68.2\">\u53d7\u4ed8\u5546\u54c1\u72b6\u6cc1</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=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"33\" x-height=\"12\" x-left=\"700.5\" x-top=\"83\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"33\" height=\"12\" x=\"700.5\" y=\"83\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"700.5\" y=\"93.2\">\u898f\u683c1</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=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"25\" x-height=\"12\" x-left=\"805.5\" x-top=\"83\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"25\" height=\"12\" x=\"805.5\" y=\"83\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"805.5\" y=\"93.2\">\u6570\u91cf</text></g></g><g class=\"s-list-detail\" transform=\"translate(-23,-21.7) rotate(0 0 0)\" x-top=\"66.5\" x-height=\"25\"><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=\"10\" height=\"10\" x=\"55.5\" y=\"96.7\"></rect><g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"order_date\" x-width=\"55\" x-height=\"12\" x-left=\"75.5\" x-top=\"94.7\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-format-datetime-format=\"%Y/%m/%d\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"75.5\" y=\"94.7\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"77.5\" y=\"105.7\">order_date</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"order_code\" x-width=\"100\" x-height=\"12\" x-left=\"138\" x-top=\"94.7\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"12\" x=\"138\" y=\"94.7\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"140\" y=\"105.7\">order_code</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"customer_name\" x-width=\"95\" x-height=\"12\" x-left=\"240.5\" x-top=\"94.7\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"95\" height=\"12\" x=\"240.5\" y=\"94.7\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242.5\" y=\"105.7\">customer_name</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"status\" x-width=\"45\" x-height=\"12\" x-left=\"340.5\" x-top=\"94.7\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"45\" height=\"12\" x=\"340.5\" y=\"94.7\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"342.5\" y=\"105.7\">status</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"product_code\" x-width=\"125\" x-height=\"12\" x-left=\"390.5\" x-top=\"94.7\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"125\" height=\"12\" x=\"390.5\" y=\"94.7\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"392.5\" y=\"105.7\">product_code</text></g><rect stroke=\"#000000\" 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=\"25\" height=\"25\" x=\"48\" y=\"88.2\"></rect><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"product_name\" x-width=\"165\" x-height=\"12\" x-left=\"520.5\" x-top=\"94.7\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165\" height=\"12\" x=\"520.5\" y=\"94.7\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"522.5\" y=\"105.7\">product_name</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"category_name1\" x-width=\"50\" x-height=\"12\" x-left=\"690.5\" x-top=\"94.7\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"50\" height=\"12\" x=\"690.5\" y=\"94.7\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"692.5\" y=\"105.7\">category_name1</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"category_name2\" x-width=\"50\" x-height=\"12\" x-left=\"745.5\" x-top=\"94.7\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"50\" height=\"12\" x=\"745.5\" y=\"94.7\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"747.5\" y=\"105.7\">category_name2</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"quantity\" x-width=\"33\" x-height=\"12\" x-left=\"800.5\" x-top=\"94.7\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"33\" height=\"12\" x=\"800.5\" y=\"94.7\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"802.5\" y=\"105.7\">quantity</text></g><rect stroke=\"#000000\" 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=\"60\" height=\"25\" x=\"73\" y=\"88.2\"></rect><rect stroke=\"#000000\" 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=\"105\" height=\"25\" x=\"133\" y=\"88.2\"></rect><rect stroke=\"#000000\" 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=\"100\" height=\"25\" x=\"238\" y=\"88.2\"></rect><rect stroke=\"#000000\" 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=\"130\" height=\"25\" x=\"388\" y=\"88.2\"></rect><rect stroke=\"#000000\" 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=\"50\" height=\"25\" x=\"338\" y=\"88.2\"></rect><rect stroke=\"#000000\" 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=\"170\" height=\"25\" x=\"518\" y=\"88.2\"></rect><rect stroke=\"#000000\" 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=\"40\" height=\"25\" x=\"798\" y=\"88.2\"></rect><rect stroke=\"#000000\" 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=\"55\" height=\"25\" x=\"688\" y=\"88.2\"></rect><rect stroke=\"#000000\" 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=\"55\" height=\"25\" x=\"743\" y=\"88.2\"></rect></g><g class=\"s-list-page-footer\" transform=\"translate(-23,-31.9) rotate(0 0 0)\" x-top=\"91.5\" x-height=\"0\"></g><g class=\"s-list-footer\" transform=\"translate(-23,-58.3) rotate(0 0 0)\" x-top=\"91.5\" x-height=\"0\"></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=\"27\" y=\"30.8\">picking_list</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"790\" height=\"545\" x=\"25\" y=\"20\"></rect></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"page\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":375,\"y\":575.2,\"width\":40,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":415,\"y\":583.7,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"page\" x-width=\"40\" x-height=\"10\" x-left=\"375\" x-top=\"575.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"40\" height=\"10\" x=\"375\" y=\"575.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"377\" y=\"586.2\">page</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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"13\" x-height=\"15\" x-left=\"415\" x-top=\"575.2\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"13\" height=\"15\" x=\"415\" y=\"575.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"421.5\" y=\"585.4\">/</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"page_total\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":430,\"y\":575.2,\"width\":40,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":430,\"y\":583.7,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"page_total\" x-width=\"40\" x-height=\"10\" x-left=\"430\" x-top=\"575.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"40\" height=\"10\" x=\"430\" y=\"575.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"432\" y=\"586.2\">page_total</text></g>LAYOUT--></g></svg>","state":{"layout-guide":[{"type":"x","position":84.2},{"type":"y","position":60}]}}
\ No newline at end of file
diff --git a/public/admin/pdf_layout/statement.tlf b/public/admin/pdf_layout/statement.tlf
new file mode 100644 (file)
index 0000000..3e103ba
--- /dev/null
@@ -0,0 +1 @@
+{"version":"0.7.6","finger-print":-2131177844,"config":{"title":"statement","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\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-list\",\"id\":\"product\",\"display\":\"true\",\"desc\":null,\"footer\":{\"height\":199,\"svg\":{\"tag\":\"g\",\"content\":\"<!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"customer_zipcode\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":395,\\\"y\\\":702.8,\\\"width\\\":110,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":395,\\\"y\\\":713,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"start\\\"}}}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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"21.2\\\" x-height=\\\"18\\\" x-left=\\\"375\\\" x-top=\\\"702.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"21.2\\\" height=\\\"18\\\" x=\\\"375\\\" y=\\\"702.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"385.6\\\" y=\\\"713\\\">\\u3012</text></g><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"recieve_date\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":400,\\\"y\\\":649.8,\\\"width\\\":82,\\\"height\\\":10},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"datetime\\\",\\\"datetime\\\":{\\\"format\\\":\\\"%Y/%m/%d \\\"}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":441,\\\"y\\\":658.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"10\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}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=\\\"Helvetica\\\" font-size=\\\"10\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"10\\\" x-left=\\\"410.9\\\" x-top=\\\"634.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"10\\\" x=\\\"410.9\\\" y=\\\"634.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"440.9\\\" y=\\\"643.3\\\">\\u3054\\u6ce8\\u6587\\u65e5</text></g><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"140\\\" height=\\\"25\\\" x=\\\"355\\\" y=\\\"609.8\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"495\\\" y=\\\"609.8\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"495\\\" y=\\\"634.8\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"495\\\" y=\\\"659.8\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"495\\\" y=\\\"684.8\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"495\\\" y=\\\"709.8\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"2\\\" 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=\\\"70\\\" height=\\\"25\\\" x=\\\"495\\\" y=\\\"734.8\\\"></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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"395\\\" x-top=\\\"616.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"395\\\" y=\\\"616.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"425\\\" y=\\\"627\\\">\\u9001\\u6599</text></g><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"140\\\" height=\\\"25\\\" x=\\\"355\\\" y=\\\"659.8\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"140\\\" height=\\\"25\\\" x=\\\"355\\\" y=\\\"634.8\\\"></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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"395\\\" x-top=\\\"641.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"395\\\" y=\\\"641.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"425\\\" y=\\\"652\\\">\\u624b\\u6570\\u6599</text></g><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"140\\\" height=\\\"25\\\" x=\\\"355\\\" y=\\\"684.8\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"140\\\" height=\\\"25\\\" x=\\\"355\\\" y=\\\"709.8\\\"></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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"395\\\" x-top=\\\"666.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"395\\\" y=\\\"666.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"425\\\" y=\\\"677\\\">\\u5408\\u8a08</text></g><rect stroke=\\\"#000000\\\" stroke-width=\\\"2\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"140\\\" height=\\\"25\\\" x=\\\"355\\\" y=\\\"734.8\\\"></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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"72\\\" x-height=\\\"12\\\" x-left=\\\"390\\\" x-top=\\\"691.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"72\\\" height=\\\"12\\\" x=\\\"390\\\" y=\\\"691.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"426\\\" y=\\\"702\\\">\\u4f7f\\u7528\\u30dd\\u30a4\\u30f3\\u30c8</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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"72\\\" x-height=\\\"12\\\" x-left=\\\"390\\\" x-top=\\\"716.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"72\\\" height=\\\"12\\\" x=\\\"390\\\" y=\\\"716.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"426\\\" y=\\\"727\\\">\\u8ffd\\u52a0\\u30dd\\u30a4\\u30f3\\u30c8</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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"72\\\" x-height=\\\"12\\\" x-left=\\\"390\\\" x-top=\\\"740.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"72\\\" height=\\\"12\\\" x=\\\"390\\\" y=\\\"740.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"426\\\" y=\\\"751\\\">\\u304a\\u652f\\u6255\\u3044\\u5408\\u8a08</text></g><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"deliv_fee\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":498,\\\"y\\\":616.8,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553,\\\"y\\\":627,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"charge\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":498,\\\"y\\\":641.8,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553,\\\"y\\\":652,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"delivery_total\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":498,\\\"y\\\":666.8,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553,\\\"y\\\":677,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"use_point\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":498,\\\"y\\\":691.8,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553,\\\"y\\\":702,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"add_point\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":498,\\\"y\\\":716.8,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553,\\\"y\\\":727,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"payment_total\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":498,\\\"y\\\":741.8,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553,\\\"y\\\":752,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}SHAPE---><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=\\\"70\\\" height=\\\"25\\\" x=\\\"425\\\" y=\\\"584.8\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"140\\\" height=\\\"25\\\" x=\\\"355.1\\\" y=\\\"584.8\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"495\\\" y=\\\"584.8\\\"></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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"395\\\" x-top=\\\"592.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"395\\\" y=\\\"592.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"425\\\" y=\\\"603\\\">\\u5024\\u5f15</text></g><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"discount\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":498,\\\"y\\\":591.8,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553,\\\"y\\\":602,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"555\\\" x-top=\\\"596.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"555\\\" y=\\\"596.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"559.5\\\" y=\\\"603.6\\\">\\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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"555\\\" x-top=\\\"621.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"555\\\" y=\\\"621.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"559.5\\\" y=\\\"628.6\\\">\\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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"555\\\" x-top=\\\"646.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"555\\\" y=\\\"646.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"559.5\\\" y=\\\"653.6\\\">\\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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"555\\\" x-top=\\\"746.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"555\\\" y=\\\"746.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"559.5\\\" y=\\\"753.6\\\">\\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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"555\\\" x-top=\\\"671.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"555\\\" y=\\\"671.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"559.5\\\" y=\\\"678.6\\\">\\u5186</text></g><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"140\\\" height=\\\"25\\\" x=\\\"355\\\" y=\\\"560.8\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"494.9\\\" y=\\\"560.8\\\"></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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"394.9\\\" x-top=\\\"567.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"394.9\\\" y=\\\"567.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"424.9\\\" y=\\\"578\\\">\\u5c0f\\u8a08</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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"554.9\\\" x-top=\\\"572.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"554.9\\\" y=\\\"572.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"559.4\\\" y=\\\"579.6\\\">\\u5186</text></g><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"subtotal\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":497.9,\\\"y\\\":567.8,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":552.9,\\\"y\\\":578,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"555\\\" x-top=\\\"696.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"555\\\" y=\\\"696.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"559.5\\\" y=\\\"703.6\\\">pt</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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"555\\\" x-top=\\\"721.8\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"555\\\" y=\\\"721.8\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"559.5\\\" y=\\\"728.6\\\">pt</text></g>\"},\"translate\":{\"x\":5,\"y\":-239.8}},\"footer-enabled\":\"true\",\"page-footer\":{},\"page-footer-enabled\":\"false\",\"detail\":{\"height\":25,\"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=\\\"35\\\" height=\\\"25\\\" x=\\\"20\\\" y=\\\"478.9\\\"></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=\\\"110\\\" height=\\\"25\\\" x=\\\"55\\\" y=\\\"478.9\\\"></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=\\\"50\\\" height=\\\"25\\\" x=\\\"165\\\" y=\\\"478.9\\\"></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=\\\"50\\\" height=\\\"25\\\" x=\\\"215\\\" y=\\\"478.9\\\"></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=\\\"90\\\" height=\\\"25\\\" x=\\\"265\\\" y=\\\"478.9\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"355\\\" y=\\\"478.9\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"425\\\" y=\\\"478.9\\\"></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=\\\"70\\\" height=\\\"25\\\" x=\\\"495\\\" y=\\\"478.9\\\"></rect><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"product_name\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":58,\\\"y\\\":485.9,\\\"width\\\":105,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":110.5,\\\"y\\\":496.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"category_name1\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":168,\\\"y\\\":485.9,\\\"width\\\":45,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":190.5,\\\"y\\\":496.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"product_code\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":268,\\\"y\\\":485.9,\\\"width\\\":85,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":310.5,\\\"y\\\":496.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"category_name2\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":218,\\\"y\\\":485.9,\\\"width\\\":45,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":240.5,\\\"y\\\":496.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"price\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":358,\\\"y\\\":485.9,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":413,\\\"y\\\":496.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"price_with_tax\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":428,\\\"y\\\":485.9,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":483,\\\"y\\\":496.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"subtotal\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":498,\\\"y\\\":485.9,\\\"width\\\":55,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553,\\\"y\\\":496.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\"}}}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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"415\\\" x-top=\\\"489.9\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"415\\\" y=\\\"489.9\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"419.5\\\" y=\\\"496.7\\\">\\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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"485\\\" x-top=\\\"489.9\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"485\\\" y=\\\"489.9\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"489.5\\\" y=\\\"496.7\\\">\\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=\\\"Helvetica\\\" font-size=\\\"8\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"555\\\" x-top=\\\"489.9\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"555\\\" y=\\\"489.9\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"559.5\\\" y=\\\"496.7\\\">\\u5186</text></g><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"quantity\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":23,\\\"y\\\":486.9,\\\"width\\\":30,\\\"height\\\":12},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"fit\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":38,\\\"y\\\":497.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\"}}}SHAPE--->\"},\"translate\":{\"x\":5,\"y\":-157.9}},\"header\":{\"height\":41,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"545\\\" height=\\\"16\\\" x=\\\"20\\\" y=\\\"432.1\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"10\\\" font-family=\\\"Helvetica\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"73\\\" x-height=\\\"10\\\" x-left=\\\"256\\\" x-top=\\\"435.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"73\\\" height=\\\"10\\\" x=\\\"256\\\" y=\\\"435.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"292.5\\\" y=\\\"443.6\\\">\\u53d7\\u4ed8\\u5546\\u54c1\\u60c5\\u5831</text></g><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"35\\\" height=\\\"25\\\" x=\\\"20\\\" y=\\\"448.1\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"110\\\" height=\\\"25\\\" x=\\\"55\\\" y=\\\"448.1\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"12\\\" font-family=\\\"Helvetica\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"25\\\" x-height=\\\"12\\\" x-left=\\\"26\\\" x-top=\\\"456.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"25\\\" height=\\\"12\\\" x=\\\"26\\\" y=\\\"456.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"38.5\\\" y=\\\"466.3\\\">\\u6570\\u91cf</text></g><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"50\\\" height=\\\"25\\\" x=\\\"165\\\" y=\\\"448.1\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"50\\\" height=\\\"25\\\" x=\\\"215\\\" y=\\\"448.1\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"90\\\" height=\\\"25\\\" x=\\\"265\\\" y=\\\"448.1\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"70\\\" height=\\\"25\\\" x=\\\"355\\\" y=\\\"448.1\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"70\\\" height=\\\"25\\\" x=\\\"425\\\" y=\\\"448.1\\\"></rect><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#dbeef3\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"70\\\" height=\\\"25\\\" x=\\\"495\\\" y=\\\"448.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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"36\\\" x-height=\\\"12\\\" x-left=\\\"90\\\" x-top=\\\"456.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"36\\\" height=\\\"12\\\" x=\\\"90\\\" y=\\\"456.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"108\\\" y=\\\"466.3\\\">\\u5546\\u54c1\\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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"36\\\" x-height=\\\"12\\\" x-left=\\\"173\\\" x-top=\\\"456.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"36\\\" height=\\\"12\\\" x=\\\"173\\\" y=\\\"456.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"191\\\" y=\\\"466.3\\\">\\u898f\\u683c1</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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"36\\\" x-height=\\\"12\\\" x-left=\\\"225\\\" x-top=\\\"456.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"36\\\" height=\\\"12\\\" x=\\\"225\\\" y=\\\"456.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"243\\\" y=\\\"466.3\\\">\\u898f\\u683c2</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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"280\\\" x-top=\\\"456.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"280\\\" y=\\\"456.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"310\\\" y=\\\"466.3\\\">\\u5546\\u54c1\\u30b3\\u30fc\\u30c9</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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"360\\\" x-top=\\\"456.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"360\\\" y=\\\"456.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"390\\\" y=\\\"466.3\\\">\\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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"430\\\" x-top=\\\"456.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"430\\\" y=\\\"456.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"460\\\" y=\\\"466.3\\\">\\u7a0e\\u8fbc\\u307f\\u4fa1\\u683c</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=\\\"Helvetica\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"500\\\" x-top=\\\"456.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"500\\\" y=\\\"456.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"530\\\" y=\\\"466.3\\\">\\u5c0f\\u8a08</text></g>\"},\"translate\":{\"x\":5,\"y\":-152.1}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":500.79999999999995,\"page-break\":\"true\"}SHAPE--><!--LAYOUT<g class=\"s-list\" x-id=\"product\" x-header-enabled=\"true\" x-page-footer-enabled=\"false\" x-footer-enabled=\"true\" x-changing-page=\"true\" x-display=\"true\" width=\"550.2\" height=\"541.8\" x=\"25\" y=\"280\"><g class=\"s-list-header\" transform=\"translate(5,-152.1) rotate(0 0 0)\" x-top=\"280\" x-height=\"41\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"545\" height=\"16\" x=\"20\" y=\"432.1\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"73\" x-height=\"10\" x-left=\"256\" x-top=\"435.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"73\" height=\"10\" x=\"256\" y=\"435.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"292.5\" y=\"443.6\">\u53d7\u4ed8\u5546\u54c1\u60c5\u5831</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"35\" height=\"25\" x=\"20\" y=\"448.1\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"110\" height=\"25\" x=\"55\" y=\"448.1\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"25\" x-height=\"12\" x-left=\"26\" x-top=\"456.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"25\" height=\"12\" x=\"26\" y=\"456.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"38.5\" y=\"466.3\">\u6570\u91cf</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"50\" height=\"25\" x=\"165\" y=\"448.1\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"50\" height=\"25\" x=\"215\" y=\"448.1\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"90\" height=\"25\" x=\"265\" y=\"448.1\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"70\" height=\"25\" x=\"355\" y=\"448.1\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"70\" height=\"25\" x=\"425\" y=\"448.1\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"70\" height=\"25\" x=\"495\" y=\"448.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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"36\" x-height=\"12\" x-left=\"90\" x-top=\"456.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"12\" x=\"90\" y=\"456.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"108\" y=\"466.3\">\u5546\u54c1\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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"36\" x-height=\"12\" x-left=\"173\" x-top=\"456.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"12\" x=\"173\" y=\"456.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"191\" y=\"466.3\">\u898f\u683c1</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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"36\" x-height=\"12\" x-left=\"225\" x-top=\"456.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"12\" x=\"225\" y=\"456.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"243\" y=\"466.3\">\u898f\u683c2</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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"280\" x-top=\"456.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"280\" y=\"456.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"310\" y=\"466.3\">\u5546\u54c1\u30b3\u30fc\u30c9</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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"360\" x-top=\"456.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"360\" y=\"456.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"390\" y=\"466.3\">\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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"430\" x-top=\"456.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"430\" y=\"456.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"460\" y=\"466.3\">\u7a0e\u8fbc\u307f\u4fa1\u683c</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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"500\" x-top=\"456.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"500\" y=\"456.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"530\" y=\"466.3\">\u5c0f\u8a08</text></g></g><g class=\"s-list-detail\" transform=\"translate(5,-157.9) rotate(0 0 0)\" x-top=\"321\" x-height=\"25\"><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=\"35\" height=\"25\" x=\"20\" y=\"478.9\"></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=\"110\" height=\"25\" x=\"55\" y=\"478.9\"></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=\"50\" height=\"25\" x=\"165\" y=\"478.9\"></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=\"50\" height=\"25\" x=\"215\" y=\"478.9\"></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=\"90\" height=\"25\" x=\"265\" y=\"478.9\"></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=\"70\" height=\"25\" x=\"355\" y=\"478.9\"></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=\"70\" height=\"25\" x=\"425\" y=\"478.9\"></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=\"70\" height=\"25\" x=\"495\" y=\"478.9\"></rect><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"product_name\" x-width=\"105\" x-height=\"12\" x-left=\"58\" x-top=\"485.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"105\" height=\"12\" x=\"58\" y=\"485.9\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"60\" y=\"496.9\">product_name</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"category_name1\" x-width=\"45\" x-height=\"12\" x-left=\"168\" x-top=\"485.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"45\" height=\"12\" x=\"168\" y=\"485.9\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"170\" y=\"496.9\">category_name1</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"product_code\" x-width=\"85\" x-height=\"12\" x-left=\"268\" x-top=\"485.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"85\" height=\"12\" x=\"268\" y=\"485.9\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"270\" y=\"496.9\">product_code</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"category_name2\" x-width=\"45\" x-height=\"12\" x-left=\"218\" x-top=\"485.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"45\" height=\"12\" x=\"218\" y=\"485.9\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"220\" y=\"496.9\">category_name2</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"price\" x-width=\"55\" x-height=\"12\" x-left=\"358\" x-top=\"485.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"358\" y=\"485.9\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"360\" y=\"496.9\">price</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"price_with_tax\" x-width=\"55\" x-height=\"12\" x-left=\"428\" x-top=\"485.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"428\" y=\"485.9\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"430\" y=\"496.9\">price_with_tax</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"subtotal\" x-width=\"55\" x-height=\"12\" x-left=\"498\" x-top=\"485.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"498\" y=\"485.9\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"500\" y=\"496.9\">subtotal</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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"415\" x-top=\"489.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"415\" y=\"489.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"419.5\" y=\"496.7\">\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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"485\" x-top=\"489.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"485\" y=\"489.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"489.5\" y=\"496.7\">\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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"555\" x-top=\"489.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"555\" y=\"489.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"559.5\" y=\"496.7\">\u5186</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"quantity\" x-width=\"30\" x-height=\"12\" x-left=\"23\" x-top=\"486.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"30\" height=\"12\" x=\"23\" y=\"486.9\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"25\" y=\"497.9\">quantity</text></g></g><g class=\"s-list-page-footer\" transform=\"translate(5,-179.7) rotate(0 0 0)\" x-top=\"346\" x-height=\"0\" display=\"none\"></g><g class=\"s-list-footer\" transform=\"translate(5,-214.8) rotate(0 0 0)\" x-top=\"346\" x-height=\"199\"><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"customer_zipcode\" x-width=\"110\" x-height=\"12\" x-left=\"395\" x-top=\"702.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"110\" height=\"12\" x=\"395\" y=\"702.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"397\" y=\"713.8\">customer_zipcode</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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"21.2\" x-height=\"18\" x-left=\"375\" x-top=\"702.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"21.2\" height=\"18\" x=\"375\" y=\"702.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"385.6\" y=\"713\">\u3012</text></g><g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"recieve_date\" x-width=\"82\" x-height=\"10\" x-left=\"400\" x-top=\"649.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-format-datetime-format=\"%Y/%m/%d \" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"82\" height=\"10\" x=\"400\" y=\"649.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"402\" y=\"660.8\">recieve_date</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=\"Helvetica\" font-size=\"10\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"10\" x-left=\"410.9\" x-top=\"634.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"10\" x=\"410.9\" y=\"634.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"440.9\" y=\"643.3\">\u3054\u6ce8\u6587\u65e5</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"140\" height=\"25\" x=\"355\" y=\"609.8\"></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=\"70\" height=\"25\" x=\"495\" y=\"609.8\"></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=\"70\" height=\"25\" x=\"495\" y=\"634.8\"></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=\"70\" height=\"25\" x=\"495\" y=\"659.8\"></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=\"70\" height=\"25\" x=\"495\" y=\"684.8\"></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=\"70\" height=\"25\" x=\"495\" y=\"709.8\"></rect><rect stroke=\"#000000\" stroke-width=\"2\" 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=\"70\" height=\"25\" x=\"495\" y=\"734.8\"></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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"395\" x-top=\"616.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"395\" y=\"616.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"627\">\u9001\u6599</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"140\" height=\"25\" x=\"355\" y=\"659.8\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"140\" height=\"25\" x=\"355\" y=\"634.8\"></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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"395\" x-top=\"641.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"395\" y=\"641.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"652\">\u624b\u6570\u6599</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"140\" height=\"25\" x=\"355\" y=\"684.8\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"140\" height=\"25\" x=\"355\" y=\"709.8\"></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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"395\" x-top=\"666.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"395\" y=\"666.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"677\">\u5408\u8a08</text></g><rect stroke=\"#000000\" stroke-width=\"2\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"140\" height=\"25\" x=\"355\" y=\"734.8\"></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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"72\" x-height=\"12\" x-left=\"390\" x-top=\"691.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"72\" height=\"12\" x=\"390\" y=\"691.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"426\" y=\"702\">\u4f7f\u7528\u30dd\u30a4\u30f3\u30c8</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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"72\" x-height=\"12\" x-left=\"390\" x-top=\"716.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"72\" height=\"12\" x=\"390\" y=\"716.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"426\" y=\"727\">\u8ffd\u52a0\u30dd\u30a4\u30f3\u30c8</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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"72\" x-height=\"12\" x-left=\"390\" x-top=\"740.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"72\" height=\"12\" x=\"390\" y=\"740.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"426\" y=\"751\">\u304a\u652f\u6255\u3044\u5408\u8a08</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"deliv_fee\" x-width=\"55\" x-height=\"12\" x-left=\"498\" x-top=\"616.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"498\" y=\"616.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"500\" y=\"627.8\">deliv_fee</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"charge\" x-width=\"55\" x-height=\"12\" x-left=\"498\" x-top=\"641.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"498\" y=\"641.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"500\" y=\"652.8\">charge</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"delivery_total\" x-width=\"55\" x-height=\"12\" x-left=\"498\" x-top=\"666.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"498\" y=\"666.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"500\" y=\"677.8\">delivery_total</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"use_point\" x-width=\"55\" x-height=\"12\" x-left=\"498\" x-top=\"691.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"498\" y=\"691.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"500\" y=\"702.8\">use_point</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"add_point\" x-width=\"55\" x-height=\"12\" x-left=\"498\" x-top=\"716.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"498\" y=\"716.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"500\" y=\"727.8\">add_point</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"payment_total\" x-width=\"55\" x-height=\"12\" x-left=\"498\" x-top=\"741.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"498\" y=\"741.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"500\" y=\"752.8\">payment_total</text></g><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=\"70\" height=\"25\" x=\"425\" y=\"584.8\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"140\" height=\"25\" x=\"355.1\" y=\"584.8\"></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=\"70\" height=\"25\" x=\"495\" y=\"584.8\"></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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"395\" x-top=\"592.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"395\" y=\"592.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"603\">\u5024\u5f15</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"discount\" x-width=\"55\" x-height=\"12\" x-left=\"498\" x-top=\"591.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"498\" y=\"591.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"500\" y=\"602.8\">discount</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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"555\" x-top=\"596.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"555\" y=\"596.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"559.5\" y=\"603.6\">\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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"555\" x-top=\"621.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"555\" y=\"621.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"559.5\" y=\"628.6\">\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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"555\" x-top=\"646.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"555\" y=\"646.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"559.5\" y=\"653.6\">\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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"555\" x-top=\"746.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"555\" y=\"746.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"559.5\" y=\"753.6\">\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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"555\" x-top=\"671.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"555\" y=\"671.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"559.5\" y=\"678.6\">\u5186</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#dbeef3\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"140\" height=\"25\" x=\"355\" y=\"560.8\"></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=\"70\" height=\"25\" x=\"494.9\" y=\"560.8\"></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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"394.9\" x-top=\"567.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"394.9\" y=\"567.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"424.9\" y=\"578\">\u5c0f\u8a08</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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"554.9\" x-top=\"572.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"554.9\" y=\"572.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"559.4\" y=\"579.6\">\u5186</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"subtotal\" x-width=\"55\" x-height=\"12\" x-left=\"497.9\" x-top=\"567.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"55\" height=\"12\" x=\"497.9\" y=\"567.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\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"499.9\" y=\"578.8\">subtotal</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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"555\" x-top=\"696.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"555\" y=\"696.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"559.5\" y=\"703.6\">pt</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=\"Helvetica\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"555\" x-top=\"721.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"555\" y=\"721.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"559.5\" y=\"728.6\">pt</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=\"27\" y=\"290.8\">product</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"550.2\" height=\"541.8\" x=\"25\" y=\"280\"></rect></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"55\" x-height=\"18\" x-left=\"270.1\" x-top=\"34\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"55\" height=\"18\" x=\"270.1\" y=\"34\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.6\" y=\"49.3\">\u7d0d\u54c1\u66f8</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"create_date\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":460,\"y\":90,\"width\":82,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y/%m/%d\"}},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":501,\"y\":98.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"middle\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"create_date\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"82\" x-height=\"10\" x-left=\"460\" x-top=\"90\" x-overflow=\"fit\" x-format-datetime-format=\"%Y/%m/%d\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"82\" height=\"10\" x=\"460\" y=\"90\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"462\" y=\"101\">create_date</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"customer_zipcode\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":40,\"y\":145,\"width\":110,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":40,\"y\":145,\"width\":110,\"height\":12,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"customer_zipcode\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"110\" x-height=\"12\" x-left=\"40\" x-top=\"145\" x-overflow=\"fit\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"110\" height=\"12\" x=\"40\" y=\"145\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"42\" y=\"156\">customer_zipcode</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"customer_address\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":25,\"y\":170,\"width\":260,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":25,\"y\":180.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"customer_address\" x-width=\"260\" x-height=\"12\" x-left=\"25\" x-top=\"170\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"260\" height=\"12\" x=\"25\" y=\"170\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"27\" y=\"181\">customer_address</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"customer_name\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"top\",\"line-height\":\"\",\"box\":{\"x\":25,\"y\":195,\"width\":172,\"height\":22},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":25,\"y\":195,\"width\":172,\"height\":22,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"end\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"customer_name\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"end\" text-decoration=\"none\" x-width=\"172\" x-height=\"22\" x-left=\"25\" x-top=\"195\" x-overflow=\"fit\" x-valign=\"top\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"172\" height=\"22\" x=\"25\" y=\"195\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"27\" y=\"206\">customer_name</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"14\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"17\" x-height=\"20\" x-left=\"205\" x-top=\"197\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"17\" height=\"20\" x=\"205\" y=\"197\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"213.5\" y=\"208.9\">\u69d8</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"12\" x-height=\"11\" x-left=\"25\" x-top=\"144\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"12\" height=\"11\" x=\"25\" y=\"144\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"31\" y=\"152.5\">\u3012</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"shop_zipcode\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":320,\"y\":145,\"width\":100,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":320,\"y\":145,\"width\":100,\"height\":12,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"shop_zipcode\" x-width=\"100\" x-height=\"12\" x-left=\"320\" x-top=\"145\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"12\" x=\"320\" y=\"145\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"322\" y=\"156\">shop_zipcode</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"shop_address\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":305,\"y\":170,\"width\":260,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":305,\"y\":180.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"shop_address\" x-width=\"260\" x-height=\"12\" x-left=\"305\" x-top=\"170\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"260\" height=\"12\" x=\"305\" y=\"170\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"307\" y=\"181\">shop_address</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"shop_name\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":305,\"y\":195,\"width\":172,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":477,\"y\":205.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"shop_name\" x-width=\"172\" x-height=\"12\" x-left=\"305\" x-top=\"195\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"172\" height=\"12\" x=\"305\" y=\"195\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"307\" y=\"206\">shop_name</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=\"Helvetica\" font-size=\"10\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"12\" x-height=\"11\" x-left=\"305\" x-top=\"144\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"12\" height=\"11\" x=\"305\" y=\"144\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"311\" y=\"152.5\">\u3012</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"61\" x-height=\"10\" x-left=\"470.9\" x-top=\"75\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"61\" height=\"10\" x=\"470.9\" y=\"75\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"500.9\" y=\"83.5\">\u7d0d\u54c1\u66f8\u767a\u884c\u65e5</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"order_code\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":256.6,\"y\":91,\"width\":82,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":297.6,\"y\":99.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"order_code\" x-width=\"82\" x-height=\"10\" x-left=\"256.6\" x-top=\"91\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"82\" height=\"10\" x=\"256.6\" y=\"91\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"258.6\" y=\"102\">order_code</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=\"Helvetica\" font-size=\"10\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"10\" x-left=\"267.6\" x-top=\"75\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"10\" x=\"267.6\" y=\"75\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.6\" y=\"83.5\">\u3054\u6ce8\u6587\u756a\u53f7</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"recieve_date\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":45,\"y\":90,\"width\":82,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y/%m/%d \"}},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":86,\"y\":98.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"recieve_date\" x-width=\"82\" x-height=\"10\" x-left=\"45\" x-top=\"90\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"fit\" x-format-datetime-format=\"%Y/%m/%d \"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"82\" height=\"10\" x=\"45\" y=\"90\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"47\" y=\"101\">recieve_date</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=\"Helvetica\" font-size=\"10\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"10\" x-left=\"55.9\" x-top=\"75\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"10\" x=\"55.9\" y=\"75\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"85.9\" y=\"83.5\">\u3054\u6ce8\u6587\u65e5</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"20\" x-height=\"10\" x-left=\"435\" x-top=\"147\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"20\" height=\"10\" x=\"435\" y=\"147\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"445\" y=\"155.5\">TEL</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"shop_tel\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":460,\"y\":145,\"width\":110,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":460,\"y\":155.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"shop_tel\" x-width=\"110\" x-height=\"12\" x-left=\"460\" x-top=\"145\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"110\" height=\"12\" x=\"460\" y=\"145\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"462\" y=\"156\">shop_tel</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"14\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"337\" x-height=\"28\" x-left=\"129.1\" x-top=\"245\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"337\" height=\"28\" x=\"129.1\" y=\"245\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.6\" y=\"256.9\">\u6bce\u5ea6\u304a\u8cb7\u3044\u4e0a\u3052\u3044\u305f\u3060\u304d\u8aa0\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.6\" y=\"270.9\">\u4e0b\u8a18\u306e\u901a\u308a\u306b\u7d0d\u54c1\u3044\u305f\u3057\u307e\u3059\u3002</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"page\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":250,\"y\":825,\"width\":40,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":290,\"y\":833.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"page\" x-width=\"40\" x-height=\"10\" x-left=\"250\" x-top=\"825\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"40\" height=\"10\" x=\"250\" y=\"825\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"252\" y=\"836\">page</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=\"Helvetica\" font-size=\"12\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"13\" x-height=\"15\" x-left=\"290\" x-top=\"825\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"13\" height=\"15\" x=\"290\" y=\"825\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"296.5\" y=\"835.2\">/</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"page_total\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":305,\"y\":825,\"width\":40,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":305,\"y\":833.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"page_total\" x-width=\"40\" x-height=\"10\" x-left=\"305\" x-top=\"825\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"40\" height=\"10\" x=\"305\" y=\"825\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"307\" y=\"836\">page_total</text></g>LAYOUT--></g></svg>","state":{"layout-guide":[{"type":"x","position":296.1},{"type":"y","position":84}]}}
\ No newline at end of file
index d9f4ed2..8404442 100644 (file)
@@ -218,13 +218,6 @@ html>/**/body {
   background-color: #ffffec;
 }
 
-#statement {
-  float: none;
-  width: 707px;
-  padding: 10px 18px 18px;
-  background-color: #ffffec;
-}
-
 /*------メニュー------*/
 #menu {
   width: 190px;