Shopify アプリに関する話題はこちら
Thank you very much for your help.
I am using an application called "Order Printer" and I was creating a delivery note.
In the following quote, there is a total in the middle, but there is a fixed price in the table.
In the quote below, it says "合計" in the middle, but I wanted to display the total of the regular price in the table, but I couldn't implement it properly.
I'm not sure how to do this, but I'm hoping someone can help me out.
<p style="float: right; text-align: right; margin: 0;">
{{ created_at | date: "%Y/%m/%d" }}<br />
ご注文番号 {{ order_name }}
</p>
<img src="ttps://cdn.shopify.com/s/files/1/0506/3059/0658/files/image_a4119ac5-386b-4252-8c6f-33c637a85257.pn...." alt="ロゴ" height="25"/>
<div style="float: left; margin: 0 0 1.5em 0;" >
<br> <strong style="font-size: 1em;">〇〇株式会社</strong><br /><br />
〒{{ shop.zip | upcase }}<br />
{{ shop.province | replace: 'Aichi', '愛知県' | replace: 'Akita', '秋田 県' | replace: 'Aomori', '青森県' | replace: 'Chiba', '千葉県' | replace: 'Ehime', '愛 媛県' | replace: 'Fukui', '福井県' | replace: 'Fukuoka', '福岡県' | replace: 'Fukushima', '福島県' | replace: 'Gifu', '岐阜県' | replace: 'Gunma', '群馬県' | replace: 'Hiroshima', '広島県' | replace: 'Hokkaidō', '北海道' | replace: 'Hyōgo', '兵庫県' | replace: 'Ibaraki', '茨城県' | replace: 'Ishikawa', '石川県' | replace: 'Iwate', '岩手県' | replace: 'Kagawa', '香川県' | replace: 'Yamanashi', '山梨県' | replace: 'Yamaguchi', '山口県' | replace: 'Kōchi', '高知県' | replace: 'Kumamoto', '熊本県' | replace: 'Kyōto', '京都府' | replace: 'Mie', '三重県' | replace: 'Yamagata', '山形県' | replace: 'Miyazaki', '宮崎県' | replace: 'Nagano', '長野県' | replace: 'Nagasaki', '長崎県' | replace: 'Nara', '奈良県' | replace: 'Niigata', '新潟県' | replace: 'Ōita', '大分県' | replace: 'Okayama', '岡山県' | replace: 'Okinawa', '沖縄県' | replace: 'Ōsaka', '大阪府' | replace: 'Saga', '佐賀 県' | replace: 'Saitama', '埼玉県' | replace: 'Shiga', '滋賀県' | replace: 'Shimane', '島根県' | replace: 'Shizuoka', '静岡県' | replace: 'Tochigi', '栃木県' | replace: 'Tokushima', '徳島県' | replace: 'Tottori', '鳥取県' | replace: 'Toyama', '富山県' | replace: 'Tōkyō', '東京都' | replace: 'Miyagi', '宮城県' | replace: 'Wakayama', '和 歌山県' | replace: 'Kanagawa', '神奈川県' | replace: 'Kagoshima', '鹿児島県' }}
{{ shop.city }}
{{ shop.address }}
{{ shop.address2 }}<br />
Phone: {{ shop.phone }}<br />
Email: {{ shop.email }}<br />
</div><hr />
<h2 style="margin: 0 0 1em 0;">納品書</h2>
<h3 style="margin: 0 0 1em 0;border-bottom: 6px double #DD3E3E;display: inline-block;">購入商品明細</h3>
<table class="table-tabular" style="margin: 0 0 1.5em 0;">
<thead>
<tr>
<th>商品名</th>
<th style="text-align: right;">単価</th>
<th style="text-align: right;">数量</th>
{% comment %}
{% if show_line_item_taxes %}
<th style="text-align: right;">(内消費税)</th>
{% endif %}
{% endcomment %}
<th style="text-align: right;">小計</th>
</tr>
</thead>
<tbody class="line-items">
{% for line_item in line_items %}
<tr>
<td>{{ line_item.title }}<br />
{% if line_item.sku != blank %}({{ line_item.sku }}){% endif %}
</td>
<td style="text-align: right;">{{ line_item.price | money }}</td>
<td style="text-align: right;">{{ line_item.quantity }}</td>
<td style="text-align: right;">{{ line_item.line_price | money }}</td>
</tr>
{% endfor %}
<thead>
<tr>
<th>合計</th>
{{ cart.original_total_price | money }}
</tr>
</thead>
</tbody>
</table><h3 style="margin: 0 0 1em 0;border-bottom: 6px double #DD3E3E;display: inline-block;">ご請求内訳</h3>
<table class="table-tabular" style="margin: 0 0 1.5em 0;">
<tr>
<td>商品合計:</td>
<td>{{ subtotal_price | money }}</td>
</tr>
{% for discount in discounts %}
<tr>
<td> 割引 "{{ discount.code }}"</td>
<td>{{ discount.savings | money }}</td>
</tr>
{% endfor %}
<tr>
<td>(内消費税):</td>
<td>{{ tax_price | money }}</td>
</tr>
{% if shipping_address %}
<tr>
<td>送料 (税込):</td>
<td>{{ shipping_price | money }}</td>
</tr>
{% endif %}
<tr>
<td><strong>総合計 (税込):</strong></td>
<td><strong>{{ total_price | money }}</strong></td>
</tr>
{% if total_paid != total_price %}
<tr>
<td><strong>Total paid:</strong></td>
<td><strong>{{ total_paid | money }}</strong></td>
</tr>
<tr>
<td><strong>Outstanding Amount:</strong></td>
<td><strong>{{ total_price | minus: total_paid | money }}</strong></td>
</tr>
{% endif %}
</table>{% if billing_address %}
<h3 style="margin: 0 0 1em 0;border-bottom: 6px double #DD3E3E;display: inline-block;">ご請求先</h3><div style="margin: 0 0 1em 0; padding: 1em; border: 1px solid black;">
〒{{ billing_address.zip | upcase }}<br/>
{{ billing_address.province | replace: 'Aichi', '愛知県' | replace: 'Akita', '秋田 県' | replace: 'Aomori', '青森県' | replace: 'Chiba', '千葉県' | replace: 'Ehime', '愛 媛県' | replace: 'Fukui', '福井県' | replace: 'Fukuoka', '福岡県' | replace: 'Fukushima', '福島県' | replace: 'Gifu', '岐阜県' | replace: 'Gunma', '群馬県' | replace: 'Hiroshima', '広島県' | replace: 'Hokkaidō', '北海道' | replace: 'Hyōgo', '兵庫県' | replace: 'Ibaraki', '茨城県' | replace: 'Ishikawa', '石川県' | replace: 'Iwate', '岩手県' | replace: 'Kagawa', '香川県' | replace: 'Yamanashi', '山梨県' | replace: 'Yamaguchi', '山口県' | replace: 'Kōchi', '高知県' | replace: 'Kumamoto', '熊本県' | replace: 'Kyōto', '京都府' | replace: 'Mie', '三重県' | replace: 'Yamagata', '山形県' | replace: 'Miyazaki', '宮崎県' | replace: 'Nagano', '長野県' | replace: 'Nagasaki', '長崎県' | replace: 'Nara', '奈良県' | replace: 'Niigata', '新潟県' | replace: 'Ōita', '大分県' | replace: 'Okayama', '岡山県' | replace: 'Okinawa', '沖縄県' | replace: 'Ōsaka', '大阪府' | replace: 'Saga', '佐賀 県' | replace: 'Saitama', '埼玉県' | replace: 'Shiga', '滋賀県' | replace: 'Shimane', '島根県' | replace: 'Shizuoka', '静岡県' | replace: 'Tochigi', '栃木県' | replace: 'Tokushima', '徳島県' | replace: 'Tottori', '鳥取県' | replace: 'Toyama', '富山県' | replace: 'Tōkyō', '東京都' | replace: 'Miyagi', '宮城県' | replace: 'Wakayama', '和 歌山県' | replace: 'Kanagawa', '神奈川県' | replace: 'Kagoshima', '鹿児島県' }}
{{ billing_address.city }}
{{ billing_address.address1 }}
{{ billing_address.address2 }}<br/>
{% if billing_address.company %}
{{ billing_address.company }}<br/>
{% endif %}
{{ billing_address.last_name }} {{ billing_address.first_name }} 様<br/>
Phone: {{ billing_address.phone}}<br />{% endif %}
</div>
<hr />{% if note %}
<h3 style="margin: 0 0 1em 0;">ノート</h3>
<p>{{ note }}</p>
{% endif %}{% if shipping_address %}
<h3 style="margin: 0 0 1em 0;border-bottom: 6px double #DD3E3E;display: inline-block;">お届け先</h3><div style="margin: 0 0 1em 0; padding: 1em; border: 1px solid black;">
〒{{ shipping_address.zip | upcase }}<br/>
{{ shipping_address.province | replace: 'Aichi', '愛知県' | replace: 'Akita', '秋田 県' | replace: 'Aomori', '青森県' | replace: 'Chiba', '千葉県' | replace: 'Ehime', '愛 媛県' | replace: 'Fukui', '福井県' | replace: 'Fukuoka', '福岡県' | replace: 'Fukushima', '福島県' | replace: 'Gifu', '岐阜県' | replace: 'Gunma', '群馬県' | replace: 'Hiroshima', '広島県' | replace: 'Hokkaidō', '北海道' | replace: 'Hyōgo', '兵庫県' | replace: 'Ibaraki', '茨城県' | replace: 'Ishikawa', '石川県' | replace: 'Iwate', '岩手県' | replace: 'Kagawa', '香川県' | replace: 'Yamanashi', '山梨県' | replace: 'Yamaguchi', '山口県' | replace: 'Kōchi', '高知県' | replace: 'Kumamoto', '熊本県' | replace: 'Kyōto', '京都府' | replace: 'Mie', '三重県' | replace: 'Yamagata', '山形県' | replace: 'Miyazaki', '宮崎県' | replace: 'Nagano', '長野県' | replace: 'Nagasaki', '長崎県' | replace: 'Nara', '奈良県' | replace: 'Niigata', '新潟県' | replace: 'Ōita', '大分県' | replace: 'Okayama', '岡山県' | replace: 'Okinawa', '沖縄県' | replace: 'Ōsaka', '大阪府' | replace: 'Saga', '佐賀 県' | replace: 'Saitama', '埼玉県' | replace: 'Shiga', '滋賀県' | replace: 'Shimane', '島根県' | replace: 'Shizuoka', '静岡県' | replace: 'Tochigi', '栃木県' | replace: 'Tokushima', '徳島県' | replace: 'Tottori', '鳥取県' | replace: 'Toyama', '富山県' | replace: 'Tōkyō', '東京都' | replace: 'Miyagi', '宮城県' | replace: 'Wakayama', '和 歌山県' | replace: 'Kanagawa', '神奈川県' | replace: 'Kagoshima', '鹿児島県' }}
{{ shipping_address.city }}
{{ shipping_address.address1 }}
{{ shipping_address.address2 }}<br/>
{% if shipping_address.company %}
{{ shipping_address.company }}<br/>
{% endif %}
{{ shipping_address.last_name }} {{ shipping_address.first_name }} 様<br/>
Phone: {{ shipping_address.phone}}<br />{% endif %}
</div><p>ご不明な点がございましたら、<u>{{ shop.email }}</u>までご連絡ください。</p>
サポートの選択肢が増えていく中、最適となる選択の判断が難しくなっているかと存じます。今回は問題の解決に最適となるサポートの選択方法を、紹介させて頂きます。 選択肢のご紹介...
By Mirai Oct 6, 20242023年初頭、Shopifyペイメントアカウント、及びShopifyアカウント全体のセキュリティを強化する為の変更が適用されました。ユーザーのアカウントセキュリティを強化す...
By Mirai Sep 29, 2024概要: 年末/年明けは、消費者が最もショッピングを行う時期の一つです。特に、ブラックフライデー・サイバーマンデー(BFCM)は、世界中で注目される大規模なセールイベントであ...
By JapanGuru Sep 25, 2024