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
|
|
@ -28,7 +28,7 @@
|
|||
%td><
|
||||
- invoice.deliveries.each_with_index do |delivery, index|
|
||||
= ', ' if index > 0
|
||||
= link_to format_date(delivery.delivered_on), [delivery.supplier,delivery]
|
||||
= link_to format_date(delivery.date), [delivery.supplier,delivery]
|
||||
%td><
|
||||
- invoice.orders.each_with_index do |order, index|
|
||||
= ', ' if index > 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue