Add edit functionality for financial links

This commit is contained in:
Patrick Gansterer 2018-10-11 22:16:50 +02:00
parent f0a55fb951
commit 707501e3f8
13 changed files with 169 additions and 6 deletions

View file

@ -12,6 +12,7 @@ class Invoice < ActiveRecord::Base
validate :valid_attachment
scope :unpaid, -> { where(paid_on: nil) }
scope :without_financial_link, -> { where(financial_link: nil) }
attr_accessor :delete_attachment