運搬計画PDF: 袋数を整数 or 小数1桁で表示(4桁表示を修正)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Akira
2026-03-16 17:15:14 +09:00
parent 1f26d5001b
commit 9dbbb48ee0
3 changed files with 19 additions and 3 deletions

View File

@@ -1,3 +1,4 @@
{% load fertilizer_tags %}
<!DOCTYPE html>
<html lang="ja">
<head>
@@ -47,7 +48,7 @@
<tr class="group-row">
<td class="col-name"><span class="group-star"></span>{{ group.name }}</td>
{% for total in group.totals %}
<td>{% if total %}{{ total }}{% else %}<span class="zero">-</span>{% endif %}</td>
<td>{% if total %}{{ total|bags_fmt }}{% else %}<span class="zero">-</span>{% endif %}</td>
{% endfor %}
</tr>
{# 圃場サブ行 #}
@@ -55,7 +56,7 @@
<tr class="field-row">
<td class="col-name field-indent">{{ row.field.name }}{{ row.field.area_tan }}反)</td>
{% for cell in row.cells %}
<td>{% if cell %}{{ cell }}{% else %}<span class="zero">-</span>{% endif %}</td>
<td>{% if cell %}{{ cell|bags_fmt }}{% else %}<span class="zero">-</span>{% endif %}</td>
{% endfor %}
</tr>
{% endfor %}
@@ -65,7 +66,7 @@
<tr class="total-row">
<td class="col-name">合計</td>
{% for total in page.fert_totals %}
<td>{{ total }}</td>
<td>{{ total|bags_fmt }}</td>
{% endfor %}
</tr>
</tfoot>