diff --git a/app/models/qbo_estimate.rb b/app/models/qbo_estimate.rb index ee220b7..615a774 100644 --- a/app/models/qbo_estimate.rb +++ b/app/models/qbo_estimate.rb @@ -53,6 +53,7 @@ class QboEstimate < ActiveRecord::Base qbo_estimate.doc_number = estimate.doc_number qbo_estimate.customer_id = estimate.customer_ref.value qbo_estimate.id = estimate.id + qbo_estimate.txn_date = estimate.txn_date qbo_estimate.save! end diff --git a/app/models/qbo_invoice.rb b/app/models/qbo_invoice.rb index befb625..d8e8125 100644 --- a/app/models/qbo_invoice.rb +++ b/app/models/qbo_invoice.rb @@ -65,6 +65,7 @@ class QboInvoice < ActiveRecord::Base qbo_invoice.doc_number = invoice.doc_number qbo_invoice.id = invoice.id qbo_invoice.customer_id = invoice.customer_ref + qbo_invoice.txn_date = invoice.txn_date qbo_invoice.save! unless issue.qbo_invoices.include?(qbo_invoice) diff --git a/db/migrate/032_add_txn_dates.rb b/db/migrate/032_add_txn_dates.rb new file mode 100644 index 0000000..799770b --- /dev/null +++ b/db/migrate/032_add_txn_dates.rb @@ -0,0 +1,16 @@ +#The MIT License (MIT) +# +#Copyright (c) 2022 rick barrette +# +#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +# +#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +# +#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +class AddTxnDates < ActiveRecord::Migration[5.1] + def change + add_column :qbo_invoices, :txn_date, :date + add_column :qbo_estimates, :txn_date, :date + end +end