2017-02-20 13:19:03 +01:00
|
|
|
import sqlalchemy
|
|
|
|
from db import PurchaseEntry, Product, User
|
|
|
|
from helpers import less
|
|
|
|
from sqlalchemy import desc
|
|
|
|
from sqlalchemy import func
|
|
|
|
from statistikkHelpers import statisticsTextOnly
|
|
|
|
from text_interface.helpermenus import Menu
|
|
|
|
|
|
|
|
__all__ = ["ProductPopularityMenu", "ProductRevenueMenu", "BalanceMenu", "LoggedStatisticsMenu"]
|
|
|
|
|
|
|
|
|
|
|
|
class ProductPopularityMenu(Menu):
|
|
|
|
def __init__(self):
|
|
|
|
Menu.__init__(self, 'Products by popularity', uses_db=True)
|
|
|
|
|
|
|
|
def _execute(self):
|
|
|
|
self.print_header()
|
|
|
|
text = ''
|
|
|
|
sub = \
|
|
|
|
self.session.query(PurchaseEntry.product_id,
|
2017-06-05 15:24:05 +02:00
|
|
|
func.sum(PurchaseEntry.amount).label('purchase_count')) \
|
|
|
|
.filter(PurchaseEntry.amount > 0).group_by(PurchaseEntry.product_id) \
|
2017-02-20 13:19:03 +01:00
|
|
|
.subquery()
|
|
|
|
product_list = \
|
|
|
|
self.session.query(Product, sub.c.purchase_count) \
|
|
|
|
.outerjoin((sub, Product.product_id == sub.c.product_id)) \
|
|
|
|
.order_by(desc(sub.c.purchase_count)) \
|
|
|
|
.filter(sub.c.purchase_count is not None) \
|
|
|
|
.all()
|
2017-06-05 15:24:05 +02:00
|
|
|
line_format = u'{0:10s} | {1:>45s}\n'
|
|
|
|
text += line_format.format('items sold', 'product')
|
|
|
|
text += '-' * (31 + Product.name_length) + '\n'
|
2017-02-20 13:19:03 +01:00
|
|
|
for product, number in product_list:
|
2017-06-05 15:24:05 +02:00
|
|
|
print(product.name)
|
|
|
|
if number is None:
|
|
|
|
continue
|
|
|
|
text += line_format.format(str(number), product.name)
|
2017-02-20 13:19:03 +01:00
|
|
|
less(text)
|
|
|
|
|
|
|
|
|
|
|
|
class ProductRevenueMenu(Menu):
|
|
|
|
def __init__(self):
|
|
|
|
Menu.__init__(self, 'Products by revenue', uses_db=True)
|
|
|
|
|
|
|
|
def _execute(self):
|
|
|
|
self.print_header()
|
|
|
|
text = ''
|
|
|
|
sub = \
|
|
|
|
self.session.query(PurchaseEntry.product_id,
|
2017-06-05 15:14:21 +02:00
|
|
|
func.sum(PurchaseEntry.amount).label('purchase_count')) \
|
|
|
|
.filter(PurchaseEntry.amount > 0).group_by(PurchaseEntry.product_id) \
|
2017-02-20 13:19:03 +01:00
|
|
|
.subquery()
|
|
|
|
product_list = \
|
|
|
|
self.session.query(Product, sub.c.purchase_count) \
|
|
|
|
.outerjoin((sub, Product.product_id == sub.c.product_id)) \
|
|
|
|
.order_by(desc(sub.c.purchase_count * Product.price)) \
|
|
|
|
.filter(sub.c.purchase_count is not None) \
|
|
|
|
.all()
|
2017-06-05 15:14:21 +02:00
|
|
|
line_format = u'{0:7s} | {1:10s} | {2:6s} | {3:>45s}\n'
|
|
|
|
text += line_format.format('revenue', 'items sold', 'price', 'product')
|
2017-02-20 13:19:03 +01:00
|
|
|
text += '-' * (31 + Product.name_length) + '\n'
|
|
|
|
for product, number in product_list:
|
2017-06-05 15:14:21 +02:00
|
|
|
print(product.name)
|
|
|
|
if number is None:
|
|
|
|
continue
|
|
|
|
text += line_format.format(str(number * product.price), str(number), str(product.price), product.name)
|
2017-02-20 13:19:03 +01:00
|
|
|
less(text)
|
|
|
|
|
|
|
|
|
|
|
|
class BalanceMenu(Menu):
|
|
|
|
def __init__(self):
|
|
|
|
Menu.__init__(self, 'Total balance of PVVVV', uses_db=True)
|
|
|
|
|
|
|
|
def _execute(self):
|
|
|
|
self.print_header()
|
|
|
|
text = ''
|
|
|
|
total_value = 0
|
2017-06-05 14:33:06 +02:00
|
|
|
product_list = self.session.query(Product).filter(Product.stock > 0).all()
|
2017-02-20 13:19:03 +01:00
|
|
|
for p in product_list:
|
|
|
|
total_value += p.stock * p.price
|
|
|
|
|
2017-06-05 15:14:21 +02:00
|
|
|
total_positive_credit = self.session.query(sqlalchemy.func.sum(User.credit)).filter(User.credit > 0).first()[0]
|
|
|
|
total_negative_credit = self.session.query(sqlalchemy.func.sum(User.credit)).filter(User.credit < 0).first()[0]
|
|
|
|
|
|
|
|
total_credit = total_positive_credit + total_negative_credit
|
2017-02-20 13:19:03 +01:00
|
|
|
total_balance = total_value - total_credit
|
|
|
|
|
|
|
|
line_format = '%15s | %5d \n'
|
|
|
|
text += line_format % ('Total value', total_value)
|
|
|
|
text += 24 * '-' + '\n'
|
2017-06-05 15:14:21 +02:00
|
|
|
text += line_format % ('Positive credit', total_positive_credit)
|
|
|
|
text += line_format % ('Negative credit', total_negative_credit)
|
2017-02-20 13:19:03 +01:00
|
|
|
text += line_format % ('Total credit', total_credit)
|
|
|
|
text += 24 * '-' + '\n'
|
|
|
|
text += line_format % ('Total balance', total_balance)
|
|
|
|
less(text)
|
|
|
|
|
|
|
|
|
|
|
|
class LoggedStatisticsMenu(Menu):
|
|
|
|
def __init__(self):
|
|
|
|
Menu.__init__(self, 'Statistics from log', uses_db=True)
|
|
|
|
|
|
|
|
def _execute(self):
|
|
|
|
statisticsTextOnly()
|