Example #1
0
    def edit(self, id):
        c.product_category = ProductCategory.find_by_id(id)

        defaults = h.object_to_defaults(c.product_category, 'product_category')

        form = render('/product_category/edit.mako')
        return htmlfill.render(form, defaults)
    def edit(self, id):
        c.product_category = ProductCategory.find_by_id(id)

        defaults = h.object_to_defaults(c.product_category, 'product_category')

        form = render('/product_category/edit.mako')
        return htmlfill.render(form, defaults)
Example #3
0
    def delete(self, id):
        """Delete the product_category

        GET will return a form asking for approval.

        POST requests will delete the item.
        """
        c.product_category = ProductCategory.find_by_id(id)
        return render('/product_category/confirm_delete.mako')
    def delete(self, id):
        """Delete the product_category

        GET will return a form asking for approval.

        POST requests will delete the item.
        """
        c.product_category = ProductCategory.find_by_id(id)
        return render('/product_category/confirm_delete.mako')
Example #5
0
    def _edit(self, id):
        product_category = ProductCategory.find_by_id(id)

        for key in self.form_result['product_category']:
            setattr(product_category, key, self.form_result['product_category'][key])

        # update the objects with the validated form data
        meta.Session.commit()
        h.flash("The product_category has been updated successfully.")
        redirect_to(action='view', id=id)
    def _edit(self, id):
        product_category = ProductCategory.find_by_id(id)

        for key in self.form_result['product_category']:
            setattr(product_category, key, self.form_result['product_category'][key])

        # update the objects with the validated form data
        meta.Session.commit()
        h.flash("The product_category has been updated successfully.")
        redirect_to(action='view', id=id)
Example #7
0
    def _delete(self, id):
        c.product_category = ProductCategory.find_by_id(id)
        # For some reason cascading isn't working for me. Likely I just don't understand SA so I'll do it this way:
        # first delete all of the products
        for product in c.product_category.products:
            # We also delete all of the productincludes for the products
            for include in ProductInclude.find_by_product(product.id):
                meta.Session.delete(include)
            meta.Session.commit()
            meta.Session.delete(product)
        meta.Session.commit()
        # Also delete any includes of the category
        for include in ProductInclude.find_by_category(id):
            meta.Session.delete(include)
        meta.Session.commit()
        meta.Session.delete(c.product_category)
        meta.Session.commit()

        h.flash("Category has been deleted.")
        redirect_to('index')
    def _delete(self, id):
        c.product_category = ProductCategory.find_by_id(id)
        # For some reason cascading isn't working for me. Likely I just don't understand SA so I'll do it this way:
        # first delete all of the products
        for product in c.product_category.products:
            # We also delete all of the productincludes for the products
            for include in ProductInclude.find_by_product(product.id):
                meta.Session.delete(include)
            meta.Session.commit()
            meta.Session.delete(product)
        meta.Session.commit()
        # Also delete any includes of the category
        for include in ProductInclude.find_by_category(id):
            meta.Session.delete(include)
        meta.Session.commit()
        meta.Session.delete(c.product_category)
        meta.Session.commit()

        h.flash("Category has been deleted.")
        redirect_to('index')
Example #9
0
 def stats(self, id):
     c.can_edit = True
     c.product_category = ProductCategory.find_by_id(id)
     c.product_categories = ProductCategory.find_all()
     return render('/product_category/stats.mako')
Example #10
0
 def view(self, id):
     c.product_category = ProductCategory.find_by_id(id)
     return render('/product_category/view.mako')
 def stats(self, id):
     c.can_edit = True
     c.product_category = ProductCategory.find_by_id(id)
     c.product_categories = ProductCategory.find_all()
     return render('/product_category/stats.mako')
 def view(self, id):
     c.product_category = ProductCategory.find_by_id(id)
     return render('/product_category/view.mako')