Class: NextSges::CollectionNoteItemsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/next_sges/collection_note_items_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject

POST /collection_note_items



26
27
28
29
30
31
32
33
34
# File 'app/controllers/next_sges/collection_note_items_controller.rb', line 26

def create
  @collection_note_item = CollectionNoteItem.new(collection_note_item_params)

  if @collection_note_item.save
    redirect_to @collection_note_item, notice: 'Collection note item was successfully created.'
  else
    render :new
  end
end

#destroyObject

DELETE /collection_note_items/1



46
47
48
49
# File 'app/controllers/next_sges/collection_note_items_controller.rb', line 46

def destroy
  @collection_note_item.destroy
  redirect_to collection_note_items_url, notice: 'Collection note item was successfully destroyed.'
end

#editObject

GET /collection_note_items/1/edit



22
23
# File 'app/controllers/next_sges/collection_note_items_controller.rb', line 22

def edit
end

#indexObject

GET /collection_note_items



8
9
10
# File 'app/controllers/next_sges/collection_note_items_controller.rb', line 8

def index
  @collection_note_items = CollectionNoteItem.all
end

#newObject

GET /collection_note_items/new



17
18
19
# File 'app/controllers/next_sges/collection_note_items_controller.rb', line 17

def new
  @collection_note_item = CollectionNoteItem.new
end

#showObject

GET /collection_note_items/1



13
14
# File 'app/controllers/next_sges/collection_note_items_controller.rb', line 13

def show
end

#updateObject

PATCH/PUT /collection_note_items/1



37
38
39
40
41
42
43
# File 'app/controllers/next_sges/collection_note_items_controller.rb', line 37

def update
  if @collection_note_item.update(collection_note_item_params)
    redirect_to @collection_note_item, notice: 'Collection note item was successfully updated.'
  else
    render :edit
  end
end