Here I have 3 models
Customer Book Book_Manager
id id id
first description customer_id
last book_managers visible
email
password
The association is has follow
class Customer < ActiveRecord::Base
has_many :book_managers
has_many :books, :through => :book_managers
end
class BookManager < ActiveRecord::Base
belongs_to :customer
has_many :books
end
class Book < ActiveRecord::Base
belongs_to :book_manager
def customer
book_manager.customer
end
end
Now i can create a new customer and create a new book in rails console by the following
cust.book_managers.build :visible => true
cust.book_managers.first.books.build :description => 'the odyssey'
cust.save!
And view it this way
cust = Customer.find 1
cust.books
Book.first.customer
The code above worked in the rails console. But I need to make it work in the controller. Its like a profile pages, the customer go into customer#edit and see the models books. At that point there could be nothing if the first time, or if something was there previously the last book would be in the text field description. I try the code below before but the book_manager wasn't updated
@book = @customer.books.order("created_at DESC").first
If the textfield is modify or created then it would create a new book_manager and books and with the proper association. Also note a visible boolean dropdown menu would be there to allow true or false if visible and be modify on the book_manager model.
Sorry for the grammar i am french.
I had the follow but doesn't seem to work quite well
class BooksController < ApplicationController
def create
@book = current_customer.book_managers.build()
@book = @customer.book_managers.first.books.build(params[:book])
if @book.save
flash[:success] = "Book Created"
redirect_to root_url
else
render 'customer/edit'
end
end
end