mirror of
https://github.com/peter-tanner/money-manager.git
synced 2024-11-30 22:30:18 +08:00
10 lines
220 B
Python
10 lines
220 B
Python
|
from django.db import models
|
||
|
from expenses.models import Timesheet
|
||
|
|
||
|
|
||
|
class SaleSummary(Timesheet):
|
||
|
class Meta:
|
||
|
proxy = True
|
||
|
verbose_name = "Sale Summary"
|
||
|
verbose_name_plural = "Sales Summary"
|