i18n simple_form move of invoices
This commit is contained in:
parent
6ba971fe15
commit
67e29620f4
4 changed files with 40 additions and 40 deletions
|
@ -5,14 +5,14 @@
|
||||||
%table.table.table-striped
|
%table.table.table-striped
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%th= t 'simple_form.labels.invoice.number'
|
%th= heading_helper Invoice, :number
|
||||||
%th= t 'simple_form.labels.invoice.supplier'
|
%th= heading_helper Invoice, :supplier
|
||||||
%th= t 'simple_form.labels.invoice.date'
|
%th= heading_helper Invoice, :date
|
||||||
%th= t 'simple_form.labels.invoice.paid_on'
|
%th= heading_helper Invoice, :paid_on
|
||||||
%th= t 'simple_form.labels.invoice.amount'
|
%th= heading_helper Invoice, :amount
|
||||||
%th= t 'simple_form.labels.invoice.delivery'
|
%th= heading_helper Invoice, :delivery
|
||||||
%th= t 'simple_form.labels.invoice.order'
|
%th= heading_helper Invoice, :order
|
||||||
%th= t 'simple_form.labels.invoice.note'
|
%th= heading_helper Invoice, :note
|
||||||
%th
|
%th
|
||||||
%th
|
%th
|
||||||
%tbody
|
%tbody
|
||||||
|
|
|
@ -1,38 +1,38 @@
|
||||||
- title t('.title', number: @invoice.number)
|
- title t('.title', number: @invoice.number)
|
||||||
|
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.supplier') + ':'
|
%b= heading_helper(Invoice, :supplier) + ':'
|
||||||
= @invoice.supplier.name
|
= @invoice.supplier.name
|
||||||
|
|
||||||
- if @invoice.delivery
|
- if @invoice.delivery
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.delivery') + ':'
|
%b= heading_helper(Invoice, :delivery) + ':'
|
||||||
= t('finance.invoices.linked', what_link: link_to(t('finance.invoices.linked_delivery'), [@invoice.supplier,@invoice.delivery])).html_safe
|
= t('finance.invoices.linked', what_link: link_to(t('finance.invoices.linked_delivery'), [@invoice.supplier,@invoice.delivery])).html_safe
|
||||||
- if @invoice.order
|
- if @invoice.order
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.order') + ':'
|
%b= heading_helper(Invoice, :order) + ':'
|
||||||
= t('finance.invoices.linked', what_link: link_to(t('finance.invoices.linked_order'), @invoice.order)).html_safe
|
= t('finance.invoices.linked', what_link: link_to(t('finance.invoices.linked_order'), @invoice.order)).html_safe
|
||||||
|
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.number') + ':'
|
%b= heading_helper(Invoice, :number) + ':'
|
||||||
= @invoice.number
|
= @invoice.number
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.date') + ':'
|
%b= heading_helper(Invoice, :date) + ':'
|
||||||
= @invoice.date
|
= @invoice.date
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.paid_on') + ':'
|
%b= heading_helper(Invoice, :paid_on) + ':'
|
||||||
= @invoice.paid_on
|
= @invoice.paid_on
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.amount') + ':'
|
%b= heading_helper(Invoice, :amount) + ':'
|
||||||
= number_to_currency @invoice.amount
|
= number_to_currency @invoice.amount
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.deposit') + ':'
|
%b= heading_helper(Invoice, :deposit) + ':'
|
||||||
= number_to_currency @invoice.deposit
|
= number_to_currency @invoice.deposit
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.deposit_credit') + ':'
|
%b= heading_helper(Invoice, :deposit_credit) + ':'
|
||||||
= number_to_currency @invoice.deposit_credit
|
= number_to_currency @invoice.deposit_credit
|
||||||
%p
|
%p
|
||||||
%b= t('simple_form.labels.invoice.note') + ':'
|
%b= heading_helper(Invoice, :note) + ':'
|
||||||
=h @invoice.note
|
=h @invoice.note
|
||||||
|
|
||||||
= link_to t('ui.edit'), edit_finance_invoice_path(@invoice)
|
= link_to t('ui.edit'), edit_finance_invoice_path(@invoice)
|
||||||
|
|
|
@ -53,6 +53,17 @@ de:
|
||||||
financial_transaction:
|
financial_transaction:
|
||||||
amount: Betrag
|
amount: Betrag
|
||||||
note: Notiz
|
note: Notiz
|
||||||
|
invoice:
|
||||||
|
amount: Betrag
|
||||||
|
date: Rechnungsdatum
|
||||||
|
delivery: Lieferung
|
||||||
|
deposit: Pfand berechnet
|
||||||
|
deposit_credit: Pfand gutgeschrieben
|
||||||
|
note: Notiz
|
||||||
|
number: Nummer
|
||||||
|
order: Bestellung
|
||||||
|
paid_on: Bezahlt am
|
||||||
|
supplier: Lieferant
|
||||||
stock_article:
|
stock_article:
|
||||||
price: Nettopreis
|
price: Nettopreis
|
||||||
supplier:
|
supplier:
|
||||||
|
@ -1619,17 +1630,6 @@ de:
|
||||||
group_order_article:
|
group_order_article:
|
||||||
ordergroup_id: Bestellgruppe
|
ordergroup_id: Bestellgruppe
|
||||||
result: Menge
|
result: Menge
|
||||||
invoice:
|
|
||||||
amount: Betrag
|
|
||||||
date: Rechnungsdatum
|
|
||||||
delivery: Lieferung
|
|
||||||
deposit: Pfand berechnet
|
|
||||||
deposit_credit: Pfand gutgeschrieben
|
|
||||||
note: Notiz
|
|
||||||
number: Nummer
|
|
||||||
order: Bestellung
|
|
||||||
paid_on: Bezahlt am
|
|
||||||
supplier: Lieferant
|
|
||||||
message:
|
message:
|
||||||
body: Inhalt
|
body: Inhalt
|
||||||
group_id: Gruppe
|
group_id: Gruppe
|
||||||
|
|
|
@ -63,6 +63,17 @@ en:
|
||||||
financial_transaction:
|
financial_transaction:
|
||||||
amount: amount
|
amount: amount
|
||||||
note: note
|
note: note
|
||||||
|
invoice:
|
||||||
|
amount: Amount
|
||||||
|
date: Billing date
|
||||||
|
delivery: Delivery
|
||||||
|
deposit: Deposit charged
|
||||||
|
deposit_credit: Deposit returned
|
||||||
|
note: Note
|
||||||
|
number: Number
|
||||||
|
order: Order
|
||||||
|
paid_on: Paid on
|
||||||
|
supplier: Supplier
|
||||||
stock_article:
|
stock_article:
|
||||||
price: Price
|
price: Price
|
||||||
supplier:
|
supplier:
|
||||||
|
@ -1628,17 +1639,6 @@ en:
|
||||||
group_order_article:
|
group_order_article:
|
||||||
ordergroup_id: Ordergroup
|
ordergroup_id: Ordergroup
|
||||||
result: Amount
|
result: Amount
|
||||||
invoice:
|
|
||||||
amount: Amount
|
|
||||||
date: Billing date
|
|
||||||
delivery: Delivery
|
|
||||||
deposit: Deposit charged
|
|
||||||
deposit_credit: Deposit returned
|
|
||||||
note: Note
|
|
||||||
number: Number
|
|
||||||
order: Order
|
|
||||||
paid_on: Paid on
|
|
||||||
supplier: Supplier
|
|
||||||
message:
|
message:
|
||||||
body: Body
|
body: Body
|
||||||
group_id: Group
|
group_id: Group
|
||||||
|
|
Loading…
Reference in a new issue