Rename Delivery.delivered_on to date
This aligns it with column names of StockTaking and us to use inheritance in a next step to share common code between the entities.
This commit is contained in:
parent
7b2072251e
commit
a5582e9542
18 changed files with 35 additions and 30 deletions
|
|
@ -3,13 +3,13 @@
|
|||
%table.table.table-striped
|
||||
%thead
|
||||
%tr
|
||||
%th= heading_helper Delivery, :delivered_on
|
||||
%th= heading_helper Delivery, :date
|
||||
%th.numeric= t 'deliveries.invoice_amount'
|
||||
%th= heading_helper Delivery, :note
|
||||
%tbody
|
||||
- for delivery in @deliveries
|
||||
%tr
|
||||
%td=h delivery.delivered_on
|
||||
%td=h delivery.date
|
||||
%td.numeric= link_to_invoice(delivery)
|
||||
%td= truncate delivery.note
|
||||
%td
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue