コード例 #1
0
    def get(self):

        user_id = self.get_argument("user_id", "")
        ajax = int(self.get_argument("ajax", 1))

        if user_id != "":

            cart = Cart()
            cart.user_id = user_id
            lista = cart.GetCartByUserId()

            res_update_cart_price = cart.updatePrice(lista, self.current_user)

            cart2 = Cart()
            cart2.user_id = user_id
            lista = cart2.GetCartByUserId()

            suma = 0
            for l in lista:
                suma += l["subtotal"]

            if ajax:
                self.render("store/carro_ajax.html",
                            data=lista,
                            suma=suma,
                            url_bodega=url_bodega)
            else:
                self.render("store/cart.html", data=lista, suma=suma)
        else:

            self.write("error")
コード例 #2
0
    def post(self):

        post_office_id = self.get_argument("post_office_id", "")
        shipping_type = self.get_argument("shipping_type", 1)

        if self.current_user:

            # print self.current_user

            user_id = self.current_user["id"]

            cart = Cart()
            cart.user_id = user_id

            lista = cart.GetCartByUserId()

            if len(lista) <= 0:
                self.render("beauty_error.html",
                            message="Carro est&aacute; vac&iacute;o")

            suma = 0

            for l in lista:
                suma += l["subtotal"]

            costo_despacho = int(self.get_argument("shipping_price", 0))

            self.render("store/checkout-5.html",
                        data=lista,
                        suma=suma,
                        costo_despacho=costo_despacho,
                        post_office_id=post_office_id,
                        shipping_type=shipping_type)
        else:
            self.redirect("/auth/login")
コード例 #3
0
    def post(self):

        # obtener id de la bodega web
        id_bodega = cellar_id
        cellar = Cellar()
        res_cellar = cellar.GetWebCellar()
        if "success" in res_cellar:
            id_bodega = res_cellar["success"]

        # obtener carro del usuario logueado
        cart = Cart()
        cart.user_id = self.current_user["id"]

        lista = cart.GetCartByUserId()

        final_name = self.saveVoucher()

        order = Order()

        if len(lista) > 0:

            response_obj = self.saveOrder(lista, order, final_name)

            # si se guardo el pedido de forma exitosa
            if "success" in response_obj:

                self.saveOrderDetail(lista, order)
                self.notifyEmails(lista, order, self.current_user)

                cart = Cart()
                cart.user_id = self.current_user["id"]

                carro = cart.GetCartByUserId()
                self.moveStock(lista, carro, id_bodega, order.id)

                self.render("store/success.html",
                            webpay="no",
                            detalle=lista,
                            order=order)
            else:
                self.render("beauty_error.html",
                            message="{}".format(response_obj["error"]))
        else:
            self.render("beauty_error.html",
                        message="Carro se encuentra vacío")
コード例 #4
0
    def post(self):

        if self.current_user:

            shipping_type = self.get_argument("shipping_type", 1)
            costo_despacho = int(self.get_argument("shipping_price", 0))
            post_office_id = self.get_argument("post_office_id", "")

            user_id = self.current_user["id"]

            cart = Cart()
            cart.user_id = user_id

            lista = cart.GetCartByUserId()

            if len(lista) <= 0:
                self.render("beauty_error.html",
                            message="Carro est&aacute; vac&iacute;o")

            suma = 0

            for l in lista:
                c = Cart()
                c.InitById(l["id"])
                c.shipping_type = shipping_type
                c.Edit()
                suma += l["subtotal"]

            if self.current_user['type_id'] != User().getUserTypeID(
                    UserType.EMPRESA):
                self.render("store/checkout-4.html",
                            data=lista,
                            suma=suma,
                            costo_despacho=costo_despacho,
                            pytz=pytz,
                            post_office_id=post_office_id,
                            shipping_type=shipping_type)
            else:
                self.render("wholesaler/checkout-5.html",
                            data=lista,
                            suma=suma,
                            iva=iva,
                            pytz=pytz)
        else:
            self.redirect("/auth/login")
コード例 #5
0
ファイル: others_handler.py プロジェクト: chachun88/gdf
    def post(self):

        TBK_TIPO_TRANSACCION = self.get_argument("TBK_TIPO_TRANSACCION", "")
        TBK_MONTO = self.get_argument("TBK_MONTO", "")
        TBK_ID_SESION = self.get_argument("TBK_ID_SESION", "")
        TBK_URL_EXITO = self.get_argument("TBK_URL_EXITO", "")
        TBK_URL_FRACASO = self.get_argument("TBK_URL_FRACASO", "")

        payment_type = self.get_argument("payment_type", 2)
        costo_despacho = int(self.get_argument("shipping_price", 0))
        iva = int(self.get_argument("tax", 0))

        user_id = self.current_user["id"]

        order = Order()

        cart = Cart()
        cart.user_id = user_id

        lista = cart.GetCartByUserId()

        if len(lista) > 0:

            subtotal = 0
            cantidad_items = 0
            cantidad_productos = 0
            id_facturacion = 0
            id_despacho = 0
            total = 0
            info_despacho = ''
            info_facturacion = ''

            for l in lista:
                c = Cart()
                c.InitById(l["id"])
                c.payment_type = payment_type
                c.Edit()
                subtotal += l["subtotal"]
                cantidad_items += l["quantity"]
                cantidad_productos += 1
                id_facturacion = l["billing_id"]
                id_despacho = l["shipping_id"]
                total += l["subtotal"]
                info_despacho = l['shipping_info']
                info_facturacion = l['billing_info']

            order.date = datetime.now(
                pytz.timezone('Chile/Continental')).isoformat()
            order.type = Order.TIPO_WEB
            order.subtotal = subtotal
            order.shipping = costo_despacho
            order.tax = iva
            order.total = total + costo_despacho + iva
            order.items_quantity = cantidad_items
            order.products_quantity = cantidad_productos
            order.user_id = user_id
            order.billing_id = id_facturacion
            order.shipping_id = id_despacho
            order.payment_type = payment_type
            order.voucher = ""
            order.state = Order.ESTADO_PENDIENTE
            order.shipping_info = info_despacho
            order.billing_info = info_facturacion

            response_obj = order.Save()

            if "success" in response_obj:

                for l in lista:

                    detail = OrderDetail()
                    detail.order_id = order.id
                    detail.quantity = l["quantity"]
                    detail.subtotal = l["subtotal"]
                    detail.product_id = l["product_id"]
                    detail.size = l["size"]
                    detail.price = l["price"]
                    detail.Save()

                    # res_obj = detail.Save()
                    # if "error" in res_obj:
                    #     print "{}".format(res_obj["error"])

            # else:

            #     self.write(response_obj["error"])
            #     return

        if os.name != "nt":
            myPath = "{}webpay/dato{}.log" \
                .format(project_path, TBK_ID_SESION)
        else:
            myPath = "C:\Users\YiChun\Documents\giani\webpay\dato{}.log" \
                .format(TBK_ID_SESION)

        f = open(myPath, "w+")
        linea = "{};{}".format(TBK_MONTO, order.id)
        f.write(linea)
        f.close()

        data = {
            "TBK_TIPO_TRANSACCION": TBK_TIPO_TRANSACCION,
            "TBK_MONTO": TBK_MONTO,
            "TBK_ORDEN_COMPRA": order.id,
            "TBK_ID_SESION": TBK_ID_SESION,
            "TBK_URL_EXITO": TBK_URL_EXITO,
            "TBK_URL_FRACASO": TBK_URL_FRACASO,
            "shipping": costo_despacho,
            "subtotal": subtotal
        }

        # self.write(json_util.dumps(data))
        user_id = self.current_user["id"]
        cart = Cart()
        cart.user_id = user_id
        lista = cart.GetCartByUserId()

        self.render("transbank.html", data=data, lista=lista)
コード例 #6
0
ファイル: others_handler.py プロジェクト: chachun88/gdf
    def moveStock(order_detail, user_id):
        try:
            id_bodega = cellar_id
            id_bodega_reserva = shipping_cellar

            cellar = Cellar()
            res_cellar = cellar.GetWebCellar()

            if "success" in res_cellar:
                id_bodega = res_cellar["success"]
            else:
                ExitoHandler.sendError("obtener id de bodega web {}".format(
                    res_cellar["error"]))

            res_reservation_cellar = cellar.GetReservationCellar()

            if "success" in res_reservation_cellar:
                id_bodega_reserva = res_reservation_cellar["success"]
            else:
                ExitoHandler.sendError(
                    "obtener id de bodega reserva {}".format(
                        res_reservation_cellar["error"]))

            cart = Cart()
            cart.user_id = user_id

            carro = cart.GetCartByUserId()

            if len(carro) > 0:

                res_remove_cart = cart.RemoveByUserId()

                if "error" in res_remove_cart:
                    ExitoHandler.sendError("vaciar carro {}".format(
                        res_remove_cart["error"]))

            for l in order_detail:

                if not l['moved']:

                    kardex = Kardex()

                    producto = Product()
                    response = producto.InitById(l["product_id"])

                    if "success" in response:

                        kardex.product_sku = producto.sku
                        kardex.cellar_identifier = id_bodega
                        kardex.operation_type = Kardex.OPERATION_MOV_OUT

                        _s = Size()
                        _s.name = l["size"]
                        res_name = _s.initByName()

                        if "success" in res_name:
                            kardex.size_id = _s.id
                        else:
                            ExitoHandler.sendError(
                                "obtener size_id para product_id {}, {}".
                                format(l["product_id"], res_name["error"]))

                        kardex.date = datetime.now(
                            pytz.timezone('Chile/Continental')).isoformat()
                        kardex.user = "******"
                        kardex.units = l["quantity"]

                        res_kardex = kardex.Insert()

                        if "error" in res_kardex:
                            ExitoHandler.sendError(
                                "sacar de bodega web product_id {}, {}".format(
                                    l["product_id"], res_kardex["error"]))
                        else:
                            kardex.cellar_identifier = id_bodega_reserva
                            kardex.operation_type = Kardex.OPERATION_MOV_IN

                            res_kardex = kardex.Insert()

                            product = Product()
                            product.updateSold(producto.sku)

                            if "error" in res_kardex:
                                ExitoHandler.sendError(
                                    "move a bodega reserva product_id {}, {}".
                                    format(l["product_id"],
                                           res_kardex["error"]))
                            else:
                                od = OrderDetail()
                                res_moved = od.MarkAsMoved(l['id'])
                                if "error" in res_moved:
                                    ExitoHandler.sendError(
                                        "mark as moved id {}".format(l['id']),
                                        res_moved["error"])

                    else:
                        ExitoHandler.sendError(
                            "initizalizar producto {}, {}".format(
                                l["product_id"], res_remove_cart["error"]))
        except Exception, e:
            ExitoHandler.sendError("mover stock {}".format(str(e)))
            pass
コード例 #7
0
    def get(self):

        if self.current_user:

            cart = Cart()
            cart.user_id = self.current_user["id"]

            lista = cart.GetCartByUserId()

            cellar = Cellar()
            res_web_cellar = cellar.GetWebCellar()

            if self.current_user["type_id"] == User().getUserTypeID(
                    UserType.EMPRESA):
                total_quantity = 0
                for item in lista:
                    total_quantity += item["quantity"]
                if total_quantity < 15:
                    self.write(
                        json_util.dumps(
                            {"error": "La cantidad mínima es de 15 pares"}))
                    return

            if "success" in res_web_cellar:
                web_cellar_id = res_web_cellar["success"]

                k = Kardex()
                res_checkstock = k.checkStock(lista, web_cellar_id)

                if "error" in res_checkstock:
                    self.write(json_util.dumps(res_checkstock))
                else:
                    res_update_cart_price = cart.updatePrice(
                        lista, self.current_user)
                    if res_update_cart_price["success"] > 0:
                        self.write(
                            json_util.dumps({
                                "alert":
                                "Alerta! El precio de algunos productos han sido actualizados"
                            }))
                    else:
                        self.write(json_util.dumps(res_update_cart_price))

            else:

                self.write(json_util.dumps(res_web_cellar))

        else:

            user_id = self.get_argument("user_id", 0)

            cart = Cart()
            cart.user_id = user_id

            lista = cart.GetCartByUserId()

            cellar = Cellar()
            res_web_cellar = cellar.GetWebCellar()

            if "success" in res_web_cellar:
                web_cellar_id = res_web_cellar["success"]

                k = Kardex()
                res_checkstock = k.checkStock(lista, web_cellar_id)

                if "error" in res_checkstock:
                    self.write(json_util.dumps(res_checkstock))
                else:
                    res_update_cart_price = cart.updatePrice(
                        lista, self.current_user)
                    if res_update_cart_price["success"] > 0:
                        self.write(
                            json_util.dumps({
                                "alert":
                                "Alerta! El precio de algunos productos han sido actualizados"
                            }))
                    else:
                        self.write(json_util.dumps(res_update_cart_price))

            else:

                self.write(json_util.dumps(res_web_cellar))
コード例 #8
0
    def get(self):

        if self.current_user:

            user_id = self.current_user["id"]

            contact = Contact()
            response_obj = contact.ListByUserId(user_id)

            contactos = []
            cities = []

            if "success" in response_obj:
                contactos = json_util.loads(response_obj["success"])
            # else:
            #     self.render("beauty_error.html",message="Error al obtener la lista de contactos:{}".format(response_obj["error"]))
            #     return

            # use globals default to avoid exception
            web_cellar_id = cellar_id

            c = Cellar()
            res_cellar_id = c.GetWebCellar()

            if "success" in res_cellar_id:
                web_cellar_id = res_cellar_id["success"]

            cart = Cart()
            cart.user_id = user_id
            lista = cart.GetCartByUserId()

            suma = 0

            for l in lista:
                suma += l["subtotal"]

            res_web_cellar = c.InitById(web_cellar_id)

            if "success" in res_web_cellar:
                cellar_city_id = c.city_id

            city = City()
            city.from_city_id = cellar_city_id
            res_city = city.ListByFromCityId()
            # print res_city

            post_office_list = []

            po = PostOffice()
            res_po = po.ListOnlyWithShippingCost()

            if "success" in res_po:
                post_office_list = res_po["success"]

            if suma > 0:
                if "success" in res_city:
                    cities = res_city["success"]

                self.render("store/checkout-1.html",
                            contactos=contactos,
                            data=lista,
                            suma=suma,
                            cities=cities,
                            post_office_list=post_office_list)
            else:
                self.render("beauty_error.html",
                            message="Carro est&aacute; vac&iacute;o")

        else:
            self.redirect("/auth/login")
コード例 #9
0
    def post(self):

        if self.current_user:

            costo_despacho = int(self.get_argument("shipping_price", 0))
            user_id = self.current_user["id"]
            nombre = self.get_argument("name", self.current_user["name"])
            apellido = self.get_argument("lastname",
                                         self.current_user["lastname"])
            email = self.get_argument("email", self.current_user["email"])
            direccion = self.get_argument("address", "")
            ciudad = self.get_argument("city_id", "")
            codigo_postal = self.get_argument("zip_code", "")
            informacion_adicional = self.get_argument("additional_info", "")
            telefono = self.get_argument("telephone", "")
            id_contacto = self.get_argument("contact_id", "")
            misma_direccion = self.get_argument("same_address", "")
            comuna = self.get_argument("town", "")
            rut = self.get_argument("rut", "")
            shipping_type = self.get_argument("shipping_type", 1)
            post_office_id = self.get_argument("post_office_id", "")

            cart = Cart()
            cart.user_id = user_id

            lista = cart.GetCartByUserId()

            if len(lista) <= 0:
                self.render("beauty_error.html",
                            message="Carro est&aacute; vac&iacute;o")

            if misma_direccion != "on":

                contact = Contact()

                contact.name = nombre
                contact.lastname = apellido
                contact.telephone = telefono
                contact.email = email
                contact.address = direccion
                contact.city = ciudad
                contact.zip_code = codigo_postal
                contact.user_id = user_id
                contact.additional_info = informacion_adicional
                contact.town = comuna
                contact.rut = rut

                operacion = ""

                if id_contacto != "":
                    contact.id = id_contacto
                    response_obj = contact.Edit()
                    operacion = "editar"
                else:
                    response_obj = contact.Save()
                    operacion = "guardar"

                if "error" in response_obj:
                    self.render("beauty_error.html",
                                message="Error al {} contacto {}".format(
                                    operacion, response_obj["error"]))
                else:
                    suma = 0

                    for l in lista:
                        c = Cart()
                        c.InitById(l["id"])
                        c.billing_id = contact.id
                        c.billing_info = contact.additional_info
                        c.Edit()
                        suma += l["subtotal"]

                    # self.render("store/checkout-2.html",contactos=contactos,data=lista,suma=suma,selected_address=direccion)
                    if self.current_user['type_id'] == User().getUserTypeID(
                            UserType.EMPRESA):
                        self.render("wholesaler/checkout-4.html",
                                    data=lista,
                                    suma=suma,
                                    iva=iva)
                    else:
                        self.render("store/checkout-3.html",
                                    data=lista,
                                    suma=suma,
                                    costo_despacho=costo_despacho,
                                    shipping_type=shipping_type,
                                    post_office_id=post_office_id)
            else:

                contact = Contact()
                cart = Cart()
                cart.user_id = user_id

                lista = cart.GetCartByUserId()

                billing_info = ''
                suma = 0

                try:
                    billing_info = contact.getAdditionalInfo(
                        c.shipping_id)['success']
                except:
                    pass

                for l in lista:
                    c = Cart()
                    c.InitById(l["id"])
                    c.billing_info = billing_info
                    c.billing_id = c.shipping_id
                    c.Edit()
                    suma += l["subtotal"]

                if self.current_user['type_id'] == User().getUserTypeID(
                        UserType.EMPRESA):
                    self.render("wholesaler/checkout-4.html",
                                data=lista,
                                suma=suma,
                                iva=iva)
                else:
                    self.render("store/checkout-3.html",
                                data=lista,
                                suma=suma,
                                costo_despacho=costo_despacho,
                                shipping_type=shipping_type,
                                post_office_id=post_office_id)

        else:

            self.redirect("/auth/login")
コード例 #10
0
    def get(self):

        if self.current_user:
            user_id = self.current_user["id"]
            nombre = self.get_argument("name", self.current_user["name"])
            apellido = self.get_argument("lastname",
                                         self.current_user["lastname"])
            email = self.get_argument("email", self.current_user["email"])
            direccion = self.get_argument("address", "")
            ciudad = self.get_argument("city_id", "")
            codigo_postal = self.get_argument("zip_code", "")
            informacion_adicional = self.get_argument("additional_info", "")
            telefono = self.get_argument("telephone", "")
            id_contacto = self.get_argument("contact_id", "")
            comuna = self.get_argument("town", "")
            rut = self.get_argument("rut", "")
            shipping_type = self.get_argument("shipping_type", "")
            post_office_id = self.get_argument("post_office_id", "")

            shipping_type_id = 1

            cart = Cart()
            cart.user_id = user_id

            lista = cart.GetCartByUserId()

            if len(lista) <= 0:
                self.render("beauty_error.html",
                            message="Carro est&aacute; vac&iacute;o")

            contact = Contact()

            contact.name = nombre
            contact.lastname = apellido
            contact.telephone = telefono
            contact.email = email
            contact.address = direccion
            if shipping_type == "chilexpress":
                po = PostOffice()
                po.InitById(post_office_id)
                post_office_name = po.name
                contact.address = "Oficina {}".format(post_office_name)
            contact.city = ciudad
            contact.zip_code = codigo_postal
            contact.user_id = user_id
            contact.additional_info = informacion_adicional
            contact.town = comuna
            contact.rut = rut

            operacion = ""

            if id_contacto != "":
                contact.id = id_contacto
                response_obj = contact.Edit()
                operacion = "editar"
            else:
                response_obj = contact.Save()
                operacion = "guardar"

            if "error" in response_obj:
                self.render("beauty_error.html",
                            message="Error al {} contacto {}".format(
                                operacion, response_obj["error"]))
            else:

                items = 0
                suma = 0

                for l in lista:
                    c = Cart()
                    response_obj = c.InitById(l["id"])

                    if "success" in response_obj:
                        c.shipping_id = contact.id
                        c.shipping_info = contact.additional_info
                        c.Edit()
                    else:
                        print response_obj["error"]

                    suma += l["subtotal"]
                    items += l["quantity"]

                contactos = []
                cities = []

                response_obj = contact.ListByUserId(user_id)

                city = City()
                res_city = city.List()

                if "success" in response_obj:
                    contactos = json_util.loads(response_obj["success"])

                if "success" in res_city:
                    cities = res_city["success"]

                c = Cellar()
                res_cellar_id = c.GetWebCellar()

                web_cellar_id = cellar_id

                if "success" in res_cellar_id:
                    web_cellar_id = res_cellar_id["success"]

                res_web_cellar = c.InitById(web_cellar_id)

                if "success" in res_web_cellar:
                    if shipping_type != "chilexpress":
                        cellar_city_id = c.city_id

                        shipping = Shipping()
                        shipping.from_city_id = int(cellar_city_id)
                        shipping.to_city_id = int(ciudad)
                        res = shipping.GetGianiPrice()
                        if "error" in res:
                            self.render(
                                "beauty_error.html",
                                message="Error al calcular costo de despacho, {}"
                                .format(res["error"]))
                    else:
                        shipping_type_id = 2
                        shipping = Shipping()
                        shipping.post_office_id = post_office_id
                        res = shipping.GetPriceByPostOfficeId()

                    if "error" in res:
                        self.render(
                            "beauty_error.html",
                            message=
                            "Error al calcular costo de despacho de Chilexpress, {}"
                            .format(res["error"]))
                    else:
                        if shipping.charge_type == 1:
                            costo_despacho = shipping.price * items
                        else:
                            costo_despacho = shipping.price

                        self.render("store/checkout-2.html",
                                    contactos=contactos,
                                    data=lista,
                                    suma=suma,
                                    selected_address=direccion,
                                    cities=cities,
                                    costo_despacho=costo_despacho,
                                    shipping_type=shipping_type_id,
                                    post_office_id=post_office_id)
        else:

            self.redirect("/auth/login")
コード例 #11
0
    def post(self):

        post_office_id = self.get_argument("post_office_id", "")
        shipping_type = self.get_argument("shipping_type", 1)
        cart_id = self.get_argument("cart_id", "")
        ciudad = None

        items = 0

        c = Cart()
        c.user_id = self.current_user["id"]
        detail = c.GetCartByUserId()

        for d in detail:
            items += int(d["quantity"])

        if cart_id != "":
            cart = Cart()
            res = cart.InitById(cart_id)

            if "success" in res:
                contact = Contact()
                res_contact = contact.InitById(cart.shipping_id)
                if "success" in res_contact:
                    ciudad = res_contact["success"]["city_id"]

        c = Cellar()
        res_cellar_id = c.GetWebCellar()

        web_cellar_id = cellar_id

        if "success" in res_cellar_id:
            web_cellar_id = res_cellar_id["success"]

        res_web_cellar = c.InitById(web_cellar_id)

        if "success" in res_web_cellar:
            if int(shipping_type) == 1:
                cellar_city_id = c.city_id
                shipping = Shipping()
                shipping.from_city_id = int(cellar_city_id)
                shipping.to_city_id = int(ciudad)
                res = shipping.GetGianiPrice()
            else:
                shipping = Shipping()
                shipping.post_office_id = post_office_id
                res = shipping.GetPriceByPostOfficeId()

            if "error" in res:
                self.write(
                    json_util.dumps({
                        "state": "error",
                        "message": res["error"]
                    }))
            else:
                if shipping.charge_type == 1:
                    costo_despacho = shipping.price * items
                else:
                    costo_despacho = shipping.price

                self.write(
                    json_util.dumps({
                        "state": "ok",
                        "shipping_cost": costo_despacho
                    }))
        else:
            self.write(
                json_util.dumps({
                    "state": "error",
                    "message": res_web_cellar["error"]
                }))