def select_all_product_id(self): """ Возвращает все id товара в заказе """ result = self._session.query(Order.product_id).all() self.close() return utility._convert(result)
def select_all_order_id(self): """ Возвращает все id заказа """ result = self._session.query(Order.id).all() self.close() return utility._convert(result)
def select_all_product_id(self): """ Возвращает все id товара в заказе """ result = self._session.query(Order.product_id).all() self.close() # конвертируем результат выборки в вид [1,3,5...] return utility._convert(result)