I have written cron job to call a method(generate_invoice) written in my model called Invoice,which in turn call a method from other application which gives an array of details and each detail has two ids which i use to create invoice following is my method defined in Invoice model...
@ibtxn = Ibtxn.root_context_by_branch_id
@ibtxn.each do |t|
@inv = Invoice.new
@inv.number = "INV1810"
@inv.date = Date.today
@inv.customer = Customer.find(t.customer_id)
end
where "root_context_by_branch_id" is method defined on other application,
@inv.customer means Invoice has relationship with Customer which says Invoice has_one customer and
Customer is a model.
Now when cron job runs its not able to find Customer using Customer.find(t.customer_id) because of that i am not able to create invoice.
Any help will be appreciated...
whenevergem,and i do not know much about HA and background job in rails/neo4j. – Heena Hussain Oct 19 '12 at 10:14