def getCart():
    if 'Shoppingcart' not in session or len(session['Shoppingcart']) <= 0:
        return render_template('products/carts.html',
                               empty=True,
                               brands=brands(),
                               categories=categories())
    subtotals = 0
    discounttotal = 0
    for key, product in session['Shoppingcart'].items():
        discounttotal += (product['discount'] / 100) * float(
            product['price']) * int(product['quantity'])
        subtotals += float(product['price']) * int(product['quantity'])
    return render_template('products/carts.html',
                           discounttotal=discounttotal,
                           subtotals=subtotals,
                           brands=brands(),
                           categories=categories())
Example #2
0
def getCart():
    if 'Shoppingcart' not in session or len(session['Shoppingcart']) <= 0:
        return redirect(url_for('landing'))
    subtotal = 0
    grandtotal = 0
    for key, product in session['Shoppingcart'].items():
        discount = (product['discount'] / 100) * float(product['price'])
        subtotal += float(product['price']) * int(product['quantity'])
        subtotal -= discount
        tax = ("%.2f" % (.06 * float(subtotal)))
        grandtotal = float("%.2f" % (1.06 * subtotal))

    #Customer Login Logic
    form = CustomerLoginFrom()
    if form.validate_on_submit():
        user = Register.query.filter_by(email=form.email.data).first()
        if user and bcrypt.check_password_hash(user.password,
                                               form.password.data):
            login_user(user)
            flash('You are login now!', 'success')
            next = request.args.get('next')
            return redirect(next or url_for('store'))
        flash('Incorrect email and password', 'danger')
        return redirect(url_for('store'))

    #Customer Register Logic
    form_R = CustomerRegisterForm()
    if form.validate_on_submit():
        hash_password = bcrypt.generate_password_hash(form.password.data)
        register = Register(name=form.name.data,
                            username=form.username.data,
                            email=form.email.data,
                            password=hash_password,
                            country=form.country.data,
                            city=form.city.data,
                            contact=form.contact.data,
                            address=form.address.data,
                            zipcode=form.zipcode.data)
        db.session.add(register)
        flash(f'Welcome {form.name.data} Thank you for registering', 'success')
        db.session.commit()
        return redirect(url_for('store'))

    products = Addproduct.query.filter(Addproduct.stock > 0).order_by(
        Addproduct.id.desc())
    product = Addproduct.query.get_or_404(1)

    return render_template('products/carts.html',
                           tax=tax,
                           grandtotal=grandtotal,
                           brands=brands(),
                           categories=categories(),
                           form_R=form_R,
                           form=form,
                           products=products,
                           product=product)
Example #3
0
def getCart():
    if 'Shoppingcart' not in session or len(session['Shoppingcart']) <= 0:
        return redirect(url_for('home'))
    subtotal = 0
    for key, product in session['Shoppingcart'].items():
        subtotal += float(product['price']) * int(product['quantity'])

    return render_template('products/carts.html',
                           subtotal=subtotal,
                           categories=categories())
Example #4
0
def getCheckout():
    subtotal = 0
    ongkir = 0
    for key, product in session["Shoppingcart"].items():
        subtotal += float(product['price']) * int(product['quantity'])
        subtotal += ongkir
    return render_template('customer/checkout.html',
                           subtotal=subtotal,
                           ongkir=ongkir,
                           categoris=categories())
Example #5
0
def getCart():
    if "Shoppingcart" not in session:
        return redirect(request.referrer)
    subtotal = 0
    ongkir = 0
    for key, product in session["Shoppingcart"].items():
        subtotal += float(product['price']) * int(product['quantity'])
        subtotal += ongkir
    return render_template('products/carts.html',
                           subtotal=subtotal,
                           ongkir=ongkir,
                           categories=categories())
Example #6
0
def getCart():
    if 'Shoppingcart' not in session or len(session['Shoppingcart']) <= 0:
        return redirect(url_for('home'))
    subtotal = 0
    grandtotal = 0
    for key, product in session['Shoppingcart'].items():
        discount = (product['discount'] / 100) * float(product['price'])
        subtotal += float(product['price']) * int(product['quantity'])
        subtotal -= discount
        tax = ("%.2f" % (.06 * float(subtotal)))
        grandtotal = float("%.2f" % (1.06 * subtotal))
    return render_template('products/carts.html',
                           tax=tax,
                           grandtotal=grandtotal,
                           brands=brands(),
                           categories=categories())