Пример #1
0
def want(call):
    new_item = temp.Item()
    const.new_items_user_adding.update([(call.message.chat.id, new_item)])
    sent = bot.send_message(call.message.chat.id,
                            "Хорошо, в среднем это занимает всего 28 секунд\n"
                            "Нажми на кнопку",
                            reply_markup=utils.phone())
    bot.register_next_step_handler(sent, send_phone)
Пример #2
0
def handle_add_item_type(call):
    new_item = temp.Item()
    const.new_items_user_adding.update([(call.message.chat.id, new_item)])
    sent = bot.send_message(call.message.chat.id,
                            "Выберите тип товара:",
                            reply_markup=markups.add_item())
    bot.register_next_step_handler(sent, base.add_item_kategory)
    const.user_adding_item_step.update([(call.message.chat.id, "Enter name")])
Пример #3
0
def item_finder(item_id):
    db = sqlite.connect("clientbase.db")
    cur = db.cursor()
    cur.execute("SELECT * FROM items WHERE id = ?", (item_id,))
    item = temp.Item()
    item.set_full_data(*cur.fetchone())
    print("\n\n\n")
    print(item.get_data())
    return item