Skip to content

Commit

Permalink
fix(bug): 負担金の単位が「点」になっていたため、「円」に修正
Browse files Browse the repository at this point in the history
  • Loading branch information
yokenzan committed Dec 20, 2023
1 parent 9ad8487 commit ac9ce78
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def build_kouhi_futan_iryou(kouhi, kyuufu, index)
new_current_line_with(format % ['合計点数', to_currency(kyuufu.goukei_tensuu), '点'])
stack_to_temp

new_current_line_with(format % ['一部負担金', to_currency(kyuufu.ichibu_futankin), ''])
new_current_line_with(format % ['一部負担金', to_currency(kyuufu.ichibu_futankin), ''])
stack_to_temp

if kyuufu.kyuufu_taishou_ichibu_futankin
new_current_line_with(format % ['給付対象一部負担金', to_currency(kyuufu.kyuufu_taishou_ichibu_futankin), ''])
new_current_line_with(format % ['給付対象一部負担金', to_currency(kyuufu.kyuufu_taishou_ichibu_futankin), ''])
stack_to_temp
end

Expand Down

0 comments on commit ac9ce78

Please sign in to comment.