def client_panel(call): if base.is_seller(call.message.chat.id): bot.edit_message_text(const.welcome_client, chat_id=call.message.chat.id, message_id=call.message.message_id) bot.edit_message_reply_markup(chat_id=call.message.chat.id, message_id=call.message.message_id, reply_markup=markups.show_types()) else: sent = bot.send_message(call.message.chat.id, "Пожалуйста, введите свой номер телефона", reply_markup=markups.return_to_menu(call.message.chat.id)) bot.register_next_step_handler(sent, registracy_panel_seller)
def hello(message): if message.text != 'Сделать заказ' and message.text != 'Отзывы' and message.text != 'Поддержка' and message.text != 'Стать продавцом' and message.text != 'Как работает': a = random.randint(50, 100) keyboard = telebot.types.ReplyKeyboardMarkup(resize_keyboard=True) keyboard.row('Органика', 'Синтетика') keyboard.row('Прочее', 'Назад') bot.send_message( message.chat.id, 'В городе {name} найдено '.format(name=message.text) + str(a) + ' результатов.') print(message.text) bot.send_message(message.chat.id, 'Выберите нужную категорию.', reply_markup=markups.show_types(message.chat.id))
def client_panel(message): bot.send_message(message.chat.id, 'Выберите категорию:', reply_markup=markups.show_types(message.chat.id))
def handle_add_item_end(message): bot.send_message(message.chat.id, "Добавлено!\n Меню:", reply_markup=markups.show_types(message.chat.id)) const.user_adding_item_step.pop(message.chat.id)
def handle_minus(call): bot.send_message(chat_id=call.message.chat.id, text='Выберите категорию:', reply_markup=markups.show_types(call.message.chat.id))
def send_menu(message): bot.send_message(message.chat.id, 'Выберите нужную категорию.', reply_markup=markups.show_types(message.chat.id))
def registracy_panel_seller(message): base.add_client(message) bot.send_message(248835526, 'Новая заявка на регистрацию. {name} '.format(name=message.text) + ' id= ' + str(message.from_user.id)) bot.send_message(message.chat.id, 'Выберите категорию:', reply_markup=markups.show_types())