change querie to stmt

This commit is contained in:
Kenneth Kehl
2024-11-21 09:38:43 -08:00
parent 4a03f5b58b
commit 1a1de39949
7 changed files with 91 additions and 93 deletions

View File

@@ -65,7 +65,7 @@ def fetch_sms_free_allowance_remainder_until_date(end_date):
def fetch_sms_billing_for_all_services(start_date, end_date): def fetch_sms_billing_for_all_services(start_date, end_date):
# ASSUMPTION: AnnualBilling has been populated for year. # ASSUMPTION: AnnualBilling has been populated for year.
allowance_left_at_start_date_querie = fetch_sms_free_allowance_remainder_until_date( allowance_left_at_start_date_stmt = fetch_sms_free_allowance_remainder_until_date(
start_date start_date
).subquery() ).subquery()
@@ -76,14 +76,14 @@ def fetch_sms_billing_for_all_services(start_date, end_date):
# subtract sms_billable_units units accrued since report's start date to get up-to-date # subtract sms_billable_units units accrued since report's start date to get up-to-date
# allowance remainder # allowance remainder
sms_allowance_left = func.greatest( sms_allowance_left = func.greatest(
allowance_left_at_start_date_querie.c.sms_remainder - sms_billable_units, 0 allowance_left_at_start_date_stmt.c.sms_remainder - sms_billable_units, 0
) )
# billable units here are for period between start date and end date only, so to see # billable units here are for period between start date and end date only, so to see
# how many are chargeable, we need to see how much free allowance was used up in the # how many are chargeable, we need to see how much free allowance was used up in the
# period up until report's start date and then do a subtraction # period up until report's start date and then do a subtraction
chargeable_sms = func.greatest( chargeable_sms = func.greatest(
sms_billable_units - allowance_left_at_start_date_querie.c.sms_remainder, 0 sms_billable_units - allowance_left_at_start_date_stmt.c.sms_remainder, 0
) )
sms_cost = chargeable_sms * FactBilling.rate sms_cost = chargeable_sms * FactBilling.rate
@@ -93,7 +93,7 @@ def fetch_sms_billing_for_all_services(start_date, end_date):
Organization.id.label("organization_id"), Organization.id.label("organization_id"),
Service.name.label("service_name"), Service.name.label("service_name"),
Service.id.label("service_id"), Service.id.label("service_id"),
allowance_left_at_start_date_querie.c.free_sms_fragment_limit, allowance_left_at_start_date_stmt.c.free_sms_fragment_limit,
FactBilling.rate.label("sms_rate"), FactBilling.rate.label("sms_rate"),
sms_allowance_left.label("sms_remainder"), sms_allowance_left.label("sms_remainder"),
sms_billable_units.label("sms_billable_units"), sms_billable_units.label("sms_billable_units"),
@@ -102,8 +102,8 @@ def fetch_sms_billing_for_all_services(start_date, end_date):
) )
.select_from(Service) .select_from(Service)
.outerjoin( .outerjoin(
allowance_left_at_start_date_querie, allowance_left_at_start_date_stmt,
Service.id == allowance_left_at_start_date_querie.c.service_id, Service.id == allowance_left_at_start_date_stmt.c.service_id,
) )
.outerjoin(Service.organization) .outerjoin(Service.organization)
.join( .join(
@@ -120,8 +120,8 @@ def fetch_sms_billing_for_all_services(start_date, end_date):
Organization.id, Organization.id,
Service.id, Service.id,
Service.name, Service.name,
allowance_left_at_start_date_querie.c.free_sms_fragment_limit, allowance_left_at_start_date_stmt.c.free_sms_fragment_limit,
allowance_left_at_start_date_querie.c.sms_remainder, allowance_left_at_start_date_stmt.c.sms_remainder,
FactBilling.rate, FactBilling.rate,
) )
.order_by(Organization.name, Service.name) .order_by(Organization.name, Service.name)
@@ -151,15 +151,15 @@ def fetch_billing_totals_for_year(service_id, year):
union( union(
*[ *[
select( select(
querie.c.notification_type.label("notification_type"), stmt.c.notification_type.label("notification_type"),
querie.c.rate.label("rate"), stmt.c.rate.label("rate"),
func.sum(querie.c.notifications_sent).label("notifications_sent"), func.sum(stmt.c.notifications_sent).label("notifications_sent"),
func.sum(querie.c.chargeable_units).label("chargeable_units"), func.sum(stmt.c.chargeable_units).label("chargeable_units"),
func.sum(querie.c.cost).label("cost"), func.sum(stmt.c.cost).label("cost"),
func.sum(querie.c.free_allowance_used).label("free_allowance_used"), func.sum(stmt.c.free_allowance_used).label("free_allowance_used"),
func.sum(querie.c.charged_units).label("charged_units"), func.sum(stmt.c.charged_units).label("charged_units"),
).group_by(querie.c.rate, querie.c.notification_type) ).group_by(stmt.c.rate, stmt.c.notification_type)
for querie in [ for stmt in [
query_service_sms_usage_for_year(service_id, year).subquery(), query_service_sms_usage_for_year(service_id, year).subquery(),
query_service_email_usage_for_year(service_id, year).subquery(), query_service_email_usage_for_year(service_id, year).subquery(),
] ]
@@ -206,22 +206,22 @@ def fetch_monthly_billing_for_year(service_id, year):
union( union(
*[ *[
select( select(
querie.c.rate.label("rate"), stmt.c.rate.label("rate"),
querie.c.notification_type.label("notification_type"), stmt.c.notification_type.label("notification_type"),
func.date_trunc("month", querie.c.local_date) func.date_trunc("month", stmt.c.local_date)
.cast(Date) .cast(Date)
.label("month"), .label("month"),
func.sum(querie.c.notifications_sent).label("notifications_sent"), func.sum(stmt.c.notifications_sent).label("notifications_sent"),
func.sum(querie.c.chargeable_units).label("chargeable_units"), func.sum(stmt.c.chargeable_units).label("chargeable_units"),
func.sum(querie.c.cost).label("cost"), func.sum(stmt.c.cost).label("cost"),
func.sum(querie.c.free_allowance_used).label("free_allowance_used"), func.sum(stmt.c.free_allowance_used).label("free_allowance_used"),
func.sum(querie.c.charged_units).label("charged_units"), func.sum(stmt.c.charged_units).label("charged_units"),
).group_by( ).group_by(
querie.c.rate, stmt.c.rate,
querie.c.notification_type, stmt.c.notification_type,
"month", "month",
) )
for querie in [ for stmt in [
query_service_sms_usage_for_year(service_id, year).subquery(), query_service_sms_usage_for_year(service_id, year).subquery(),
query_service_email_usage_for_year(service_id, year).subquery(), query_service_email_usage_for_year(service_id, year).subquery(),
] ]
@@ -586,12 +586,12 @@ def fetch_email_usage_for_organization(organization_id, start_date, end_date):
def fetch_sms_billing_for_organization(organization_id, financial_year): def fetch_sms_billing_for_organization(organization_id, financial_year):
# ASSUMPTION: AnnualBilling has been populated for year. # ASSUMPTION: AnnualBilling has been populated for year.
ft_billing_subquerie = query_organization_sms_usage_for_year( ft_billing_substmt = query_organization_sms_usage_for_year(
organization_id, financial_year organization_id, financial_year
).subquery() ).subquery()
sms_billable_units = func.sum( sms_billable_units = func.sum(
func.coalesce(ft_billing_subquerie.c.chargeable_units, 0) func.coalesce(ft_billing_substmt.c.chargeable_units, 0)
) )
# subtract sms_billable_units units accrued since report's start date to get up-to-date # subtract sms_billable_units units accrued since report's start date to get up-to-date
@@ -600,8 +600,8 @@ def fetch_sms_billing_for_organization(organization_id, financial_year):
AnnualBilling.free_sms_fragment_limit - sms_billable_units, 0 AnnualBilling.free_sms_fragment_limit - sms_billable_units, 0
) )
chargeable_sms = func.sum(ft_billing_subquerie.c.charged_units) chargeable_sms = func.sum(ft_billing_substmt.c.charged_units)
sms_cost = func.sum(ft_billing_subquerie.c.cost) sms_cost = func.sum(ft_billing_substmt.c.cost)
query = ( query = (
select( select(
@@ -622,9 +622,7 @@ def fetch_sms_billing_for_organization(organization_id, financial_year):
AnnualBilling.financial_year_start == financial_year, AnnualBilling.financial_year_start == financial_year,
), ),
) )
.outerjoin( .outerjoin(ft_billing_substmt, Service.id == ft_billing_substmt.c.service_id)
ft_billing_subquerie, Service.id == ft_billing_subquerie.c.service_id
)
.filter( .filter(
Service.organization_id == organization_id, Service.restricted.is_(False) Service.organization_id == organization_id, Service.restricted.is_(False)
) )

View File

@@ -191,7 +191,7 @@ def fetch_notification_status_for_service_for_today_and_7_previous_days(
all_stats_alias = aliased(all_stats_union, name="all_stats") all_stats_alias = aliased(all_stats_union, name="all_stats")
# Final query with optional template joins # Final query with optional template joins
querie = select( stmt = select(
*( *(
[ [
TemplateFolder.name.label("folder"), TemplateFolder.name.label("folder"),
@@ -214,8 +214,8 @@ def fetch_notification_status_for_service_for_today_and_7_previous_days(
) )
if by_template: if by_template:
querie = ( stmt = (
querie.join(Template, all_stats_alias.c.template_id == Template.id) stmt.join(Template, all_stats_alias.c.template_id == Template.id)
.join(User, Template.created_by_id == User.id) .join(User, Template.created_by_id == User.id)
.outerjoin( .outerjoin(
template_folder_map, Template.id == template_folder_map.c.template_id template_folder_map, Template.id == template_folder_map.c.template_id
@@ -227,7 +227,7 @@ def fetch_notification_status_for_service_for_today_and_7_previous_days(
) )
# Group by all necessary fields except date_used # Group by all necessary fields except date_used
querie = querie.group_by( stmt = stmt.group_by(
*( *(
[ [
TemplateFolder.name, TemplateFolder.name,
@@ -245,7 +245,7 @@ def fetch_notification_status_for_service_for_today_and_7_previous_days(
) )
# Execute the query using Flask-SQLAlchemy's session # Execute the query using Flask-SQLAlchemy's session
result = db.session.execute(querie) result = db.session.execute(stmt)
return result.mappings().all() return result.mappings().all()
@@ -361,7 +361,7 @@ def fetch_stats_for_all_services_by_date_range(
if start_date <= utc_now().date() <= end_date: if start_date <= utc_now().date() <= end_date:
today = get_midnight_in_utc(utc_now()) today = get_midnight_in_utc(utc_now())
subquerie = ( substmt = (
select( select(
Notification.notification_type.label("notification_type"), Notification.notification_type.label("notification_type"),
Notification.status.label("status"), Notification.status.label("status"),
@@ -377,8 +377,8 @@ def fetch_stats_for_all_services_by_date_range(
) )
) )
if not include_from_test_key: if not include_from_test_key:
subquerie = subquerie.filter(Notification.key_type != KeyType.TEST) substmt = substmt.filter(Notification.key_type != KeyType.TEST)
subquerie = subquerie.subquery() substmt = substmt.subquery()
stats_for_today = select( stats_for_today = select(
Service.id.label("service_id"), Service.id.label("service_id"),
@@ -386,10 +386,10 @@ def fetch_stats_for_all_services_by_date_range(
Service.restricted.label("restricted"), Service.restricted.label("restricted"),
Service.active.label("active"), Service.active.label("active"),
Service.created_at.label("created_at"), Service.created_at.label("created_at"),
subquerie.c.notification_type.cast(db.Text).label("notification_type"), substmt.c.notification_type.cast(db.Text).label("notification_type"),
subquerie.c.status.cast(db.Text).label("status"), substmt.c.status.cast(db.Text).label("status"),
subquerie.c.count.label("count"), substmt.c.count.label("count"),
).outerjoin(subquerie, subquerie.c.service_id == Service.id) ).outerjoin(substmt, substmt.c.service_id == Service.id)
all_stats_table = stats.union_all(stats_for_today).subquery() all_stats_table = stats.union_all(stats_for_today).subquery()
query = ( query = (
@@ -515,7 +515,7 @@ def fetch_monthly_template_usage_for_service(start_date, end_date, service_id):
def get_total_notifications_for_date_range(start_date, end_date): def get_total_notifications_for_date_range(start_date, end_date):
querie = ( stmt = (
select( select(
FactNotificationStatus.local_date.label("local_date"), FactNotificationStatus.local_date.label("local_date"),
func.sum( func.sum(
@@ -546,11 +546,11 @@ def get_total_notifications_for_date_range(start_date, end_date):
.order_by(FactNotificationStatus.local_date) .order_by(FactNotificationStatus.local_date)
) )
if start_date and end_date: if start_date and end_date:
querie = querie.filter( stmt = stmt.filter(
FactNotificationStatus.local_date >= start_date, FactNotificationStatus.local_date >= start_date,
FactNotificationStatus.local_date <= end_date, FactNotificationStatus.local_date <= end_date,
) )
return db.session.execute(querie).all() return db.session.execute(stmt).all()
def fetch_monthly_notification_statuses_per_service(start_date, end_date): def fetch_monthly_notification_statuses_per_service(start_date, end_date):

View File

@@ -84,7 +84,7 @@ def dao_count_inbound_sms_for_service(service_id, limit_days):
def _insert_inbound_sms_history(subquery, query_limit=10000): def _insert_inbound_sms_history(subquery, query_limit=10000):
offset = 0 offset = 0
subquery_select = select(subquery) subquery_select = select(subquery)
inbound_sms_querie = select( inbound_sms_stmt = select(
InboundSms.id, InboundSms.id,
InboundSms.created_at, InboundSms.created_at,
InboundSms.service_id, InboundSms.service_id,
@@ -94,13 +94,13 @@ def _insert_inbound_sms_history(subquery, query_limit=10000):
InboundSms.provider, InboundSms.provider,
).where(InboundSms.id.in_(subquery_select)) ).where(InboundSms.id.in_(subquery_select))
count_query = select(func.count()).select_from(inbound_sms_querie.subquery()) count_query = select(func.count()).select_from(inbound_sms_stmt.subquery())
inbound_sms_count = db.session.execute(count_query).scalar() or 0 inbound_sms_count = db.session.execute(count_query).scalar() or 0
while offset < inbound_sms_count: while offset < inbound_sms_count:
statement = insert(InboundSmsHistory).from_select( statement = insert(InboundSmsHistory).from_select(
InboundSmsHistory.__table__.c, InboundSmsHistory.__table__.c,
inbound_sms_querie.limit(query_limit).offset(offset), inbound_sms_stmt.limit(query_limit).offset(offset),
) )
statement = statement.on_conflict_do_nothing( statement = statement.on_conflict_do_nothing(

View File

@@ -194,11 +194,11 @@ def get_notifications_for_job(
if page_size is None: if page_size is None:
page_size = current_app.config["PAGE_SIZE"] page_size = current_app.config["PAGE_SIZE"]
querie = select(Notification).filter_by(service_id=service_id, job_id=job_id) stmt = select(Notification).filter_by(service_id=service_id, job_id=job_id)
querie = _filter_query(querie, filter_dict) stmt = _filter_query(stmt, filter_dict)
querie = querie.order_by(asc(Notification.job_row_number)) stmt = stmt.order_by(asc(Notification.job_row_number))
results = db.session.execute(querie).scalars().all() results = db.session.execute(stmt).scalars().all()
page_size = current_app.config["PAGE_SIZE"] page_size = current_app.config["PAGE_SIZE"]
offset = (page - 1) * page_size offset = (page - 1) * page_size
@@ -298,22 +298,22 @@ def get_notifications_for_service(
if client_reference is not None: if client_reference is not None:
filters.append(Notification.client_reference == client_reference) filters.append(Notification.client_reference == client_reference)
querie = select(Notification).where(*filters) stmt = select(Notification).where(*filters)
querie = _filter_query(querie, filter_dict) stmt = _filter_query(stmt, filter_dict)
if personalisation: if personalisation:
querie = querie.options(joinedload(Notification.template)) stmt = stmt.options(joinedload(Notification.template))
querie = querie.order_by(desc(Notification.created_at)) stmt = stmt.order_by(desc(Notification.created_at))
results = db.session.execute(querie).scalars().all() results = db.session.execute(stmt).scalars().all()
offset = (page - 1) * page_size offset = (page - 1) * page_size
paginated_results = results[offset : offset + page_size] paginated_results = results[offset : offset + page_size]
pagination = Pagination(paginated_results, page, page_size, len(results)) pagination = Pagination(paginated_results, page, page_size, len(results))
return pagination return pagination
def _filter_query(querie, filter_dict=None): def _filter_query(stmt, filter_dict=None):
if filter_dict is None: if filter_dict is None:
return querie return stmt
multidict = MultiDict(filter_dict) multidict = MultiDict(filter_dict)
@@ -321,14 +321,14 @@ def _filter_query(querie, filter_dict=None):
statuses = multidict.getlist("status") statuses = multidict.getlist("status")
if statuses: if statuses:
querie = querie.where(Notification.status.in_(statuses)) stmt = stmt.where(Notification.status.in_(statuses))
# filter by template # filter by template
template_types = multidict.getlist("template_type") template_types = multidict.getlist("template_type")
if template_types: if template_types:
querie = querie.where(Notification.notification_type.in_(template_types)) stmt = stmt.where(Notification.notification_type.in_(template_types))
return querie return stmt
def sanitize_successful_notification_by_id(notification_id, carrier, provider_response): def sanitize_successful_notification_by_id(notification_id, carrier, provider_response):

View File

@@ -102,7 +102,7 @@ def dao_get_provider_stats():
current_datetime = utc_now() current_datetime = utc_now()
first_day_of_the_month = current_datetime.date().replace(day=1) first_day_of_the_month = current_datetime.date().replace(day=1)
subquerie = ( substmt = (
db.session.query( db.session.query(
FactBilling.provider, FactBilling.provider,
func.sum(FactBilling.billable_units * FactBilling.rate_multiplier).label( func.sum(FactBilling.billable_units * FactBilling.rate_multiplier).label(
@@ -127,11 +127,11 @@ def dao_get_provider_stats():
ProviderDetails.updated_at, ProviderDetails.updated_at,
ProviderDetails.supports_international, ProviderDetails.supports_international,
User.name.label("created_by_name"), User.name.label("created_by_name"),
func.coalesce(subquerie.c.current_month_billable_sms, 0).label( func.coalesce(substmt.c.current_month_billable_sms, 0).label(
"current_month_billable_sms" "current_month_billable_sms"
), ),
) )
.outerjoin(subquerie, ProviderDetails.identifier == subquerie.c.provider) .outerjoin(substmt, ProviderDetails.identifier == substmt.c.provider)
.outerjoin(User, ProviderDetails.created_by_id == User.id) .outerjoin(User, ProviderDetails.created_by_id == User.id)
.order_by( .order_by(
ProviderDetails.notification_type, ProviderDetails.notification_type,

View File

@@ -514,7 +514,7 @@ def dao_fetch_todays_stats_for_all_services(
start_date = get_midnight_in_utc(today) start_date = get_midnight_in_utc(today)
end_date = get_midnight_in_utc(today + timedelta(days=1)) end_date = get_midnight_in_utc(today + timedelta(days=1))
subquerie = ( substmt = (
select( select(
Notification.notification_type, Notification.notification_type,
Notification.status, Notification.status,
@@ -530,9 +530,9 @@ def dao_fetch_todays_stats_for_all_services(
) )
if not include_from_test_key: if not include_from_test_key:
subquerie = subquerie.filter(Notification.key_type != KeyType.TEST) substmt = substmt.filter(Notification.key_type != KeyType.TEST)
subquerie = subquerie.subquery() substmt = substmt.subquery()
stmt = ( stmt = (
select( select(
@@ -541,11 +541,11 @@ def dao_fetch_todays_stats_for_all_services(
Service.restricted, Service.restricted,
Service.active, Service.active,
Service.created_at, Service.created_at,
subquerie.c.notification_type, substmt.c.notification_type,
subquerie.c.status, substmt.c.status,
subquerie.c.count, substmt.c.count,
) )
.outerjoin(subquerie, subquerie.c.service_id == Service.id) .outerjoin(substmt, substmt.c.service_id == Service.id)
.order_by(Service.id) .order_by(Service.id)
) )
@@ -617,7 +617,7 @@ def dao_find_services_sending_to_tv_numbers(start_date, end_date, threshold=500)
def dao_find_services_with_high_failure_rates(start_date, end_date, threshold=10000): def dao_find_services_with_high_failure_rates(start_date, end_date, threshold=10000):
subquerie = ( substmt = (
select( select(
func.count(Notification.id).label("total_count"), func.count(Notification.id).label("total_count"),
Notification.service_id.label("service_id"), Notification.service_id.label("service_id"),
@@ -637,19 +637,19 @@ def dao_find_services_with_high_failure_rates(start_date, end_date, threshold=10
.having(func.count(Notification.id) >= threshold) .having(func.count(Notification.id) >= threshold)
) )
subquerie = subquerie.subquery() substmt = substmt.subquery()
stmt = ( stmt = (
select( select(
Notification.service_id.label("service_id"), Notification.service_id.label("service_id"),
func.count(Notification.id).label("permanent_failure_count"), func.count(Notification.id).label("permanent_failure_count"),
subquerie.c.total_count.label("total_count"), substmt.c.total_count.label("total_count"),
( (
cast(func.count(Notification.id), Float) cast(func.count(Notification.id), Float)
/ cast(subquerie.c.total_count, Float) / cast(substmt.c.total_count, Float)
).label("permanent_failure_rate"), ).label("permanent_failure_rate"),
) )
.join(subquerie, subquerie.c.service_id == Notification.service_id) .join(substmt, substmt.c.service_id == Notification.service_id)
.filter( .filter(
Notification.service_id == Service.id, Notification.service_id == Service.id,
Notification.created_at >= start_date, Notification.created_at >= start_date,
@@ -660,10 +660,10 @@ def dao_find_services_with_high_failure_rates(start_date, end_date, threshold=10
Service.restricted == False, # noqa Service.restricted == False, # noqa
Service.active == True, # noqa Service.active == True, # noqa
) )
.group_by(Notification.service_id, subquerie.c.total_count) .group_by(Notification.service_id, substmt.c.total_count)
.having( .having(
cast(func.count(Notification.id), Float) cast(func.count(Notification.id), Float)
/ cast(subquerie.c.total_count, Float) / cast(substmt.c.total_count, Float)
>= 0.25 >= 0.25
) )
) )

View File

@@ -52,7 +52,7 @@ def dao_get_uploads_by_service_id(service_id, limit_days=None, page=1, page_size
if limit_days is not None: if limit_days is not None:
jobs_query_filter.append(Job.created_at >= midnight_n_days_ago(limit_days)) jobs_query_filter.append(Job.created_at >= midnight_n_days_ago(limit_days))
jobs_querie = ( jobs_stmt = (
select( select(
Job.id, Job.id,
Job.original_file_name, Job.original_file_name,
@@ -95,7 +95,7 @@ def dao_get_uploads_by_service_id(service_id, limit_days=None, page=1, page_size
Notification.created_at >= midnight_n_days_ago(limit_days) Notification.created_at >= midnight_n_days_ago(limit_days)
) )
letters_subquerie = ( letters_substmt = (
select( select(
func.count().label("notification_count"), func.count().label("notification_count"),
_naive_gmt_to_utc(_get_printing_datetime(Notification.created_at)).label( _naive_gmt_to_utc(_get_printing_datetime(Notification.created_at)).label(
@@ -117,28 +117,28 @@ def dao_get_uploads_by_service_id(service_id, limit_days=None, page=1, page_size
.subquery() .subquery()
) )
letters_querie = ( letters_stmt = (
select( select(
literal(None).label("id"), literal(None).label("id"),
literal("Uploaded letters").label("original_file_name"), literal("Uploaded letters").label("original_file_name"),
letters_subquerie.c.notification_count.label("notification_count"), letters_substmt.c.notification_count.label("notification_count"),
literal("letter").label("template_type"), literal("letter").label("template_type"),
literal(None).label("days_of_retention"), literal(None).label("days_of_retention"),
letters_subquerie.c.printing_at.label("created_at"), letters_substmt.c.printing_at.label("created_at"),
literal(None).label("scheduled_for"), literal(None).label("scheduled_for"),
letters_subquerie.c.printing_at.label("processing_started"), letters_substmt.c.printing_at.label("processing_started"),
literal(None).label("status"), literal(None).label("status"),
literal("letter_day").label("upload_type"), literal("letter_day").label("upload_type"),
literal(None).label("recipient"), literal(None).label("recipient"),
) )
.select_from(Notification) .select_from(Notification)
.group_by( .group_by(
letters_subquerie.c.notification_count, letters_substmt.c.notification_count,
letters_subquerie.c.printing_at, letters_substmt.c.printing_at,
) )
) )
stmt = union(jobs_querie, letters_querie).order_by( stmt = union(jobs_stmt, letters_stmt).order_by(
desc("processing_started"), desc("created_at") desc("processing_started"), desc("created_at")
) )