Merge branch 'release/2024-01-26' into feature/IO-1532-Tracking-Department-Cycle-Times
This commit is contained in:
@@ -2676,6 +2676,31 @@
|
|||||||
- table:
|
- table:
|
||||||
name: job_ar_schema
|
name: job_ar_schema
|
||||||
schema: public
|
schema: public
|
||||||
|
object_relationships:
|
||||||
|
- name: job
|
||||||
|
using:
|
||||||
|
foreign_key_constraint_on: id
|
||||||
|
select_permissions:
|
||||||
|
- role: user
|
||||||
|
permission:
|
||||||
|
columns:
|
||||||
|
- id
|
||||||
|
- ro_number
|
||||||
|
- clm_total
|
||||||
|
- total_payments
|
||||||
|
- balance
|
||||||
|
- date_invoiced
|
||||||
|
- shopid
|
||||||
|
filter:
|
||||||
|
job:
|
||||||
|
bodyshop:
|
||||||
|
associations:
|
||||||
|
_and:
|
||||||
|
- active:
|
||||||
|
_eq: true
|
||||||
|
- user:
|
||||||
|
authid:
|
||||||
|
_eq: X-Hasura-User-Id
|
||||||
- table:
|
- table:
|
||||||
name: job_conversations
|
name: job_conversations
|
||||||
schema: public
|
schema: public
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
alter table "public"."eula_acceptances" rename column "business_name" to "buisness_name";
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
alter table "public"."eula_acceptances" rename column "buisness_name" to "business_name";
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
alter table "public"."eula_acceptances" alter column "phone_number" set not null;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
alter table "public"."eula_acceptances" alter column "phone_number" drop not null;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
alter table "public"."eula_acceptances" alter column "address" set not null;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
alter table "public"."eula_acceptances" alter column "address" drop not null;
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
-- Could not auto-generate a down migration.
|
||||||
|
-- Please write an appropriate down migration for the SQL below:
|
||||||
|
-- alter table "public"."job_ar_schema" add column "shopid" uuid
|
||||||
|
-- null;
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
alter table "public"."job_ar_schema" add column "shopid" uuid
|
||||||
|
null;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
alter table "public"."job_ar_schema" drop constraint "job_ar_schema_id_fkey";
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
alter table "public"."job_ar_schema"
|
||||||
|
add constraint "job_ar_schema_id_fkey"
|
||||||
|
foreign key ("id")
|
||||||
|
references "public"."jobs"
|
||||||
|
("id") on update restrict on delete restrict;
|
||||||
35
hasura/migrations/1705952926623_run_sql_migration/down.sql
Normal file
35
hasura/migrations/1705952926623_run_sql_migration/down.sql
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
-- Could not auto-generate a down migration.
|
||||||
|
-- Please write an appropriate down migration for the SQL below:
|
||||||
|
-- CREATE OR REPLACE FUNCTION public.jobs_ar_summary ()
|
||||||
|
-- RETURNS SETOF job_ar_schema
|
||||||
|
-- LANGUAGE plpgsql
|
||||||
|
-- STABLE
|
||||||
|
-- AS $function$
|
||||||
|
-- BEGIN
|
||||||
|
--
|
||||||
|
-- RETURN query
|
||||||
|
-- select
|
||||||
|
-- j.id,
|
||||||
|
-- j.ro_number,
|
||||||
|
-- j.clm_total,
|
||||||
|
-- coalesce (p.total_payments,0) as total_payments,
|
||||||
|
-- j.clm_total - coalesce (p.total_payments,0) as balance,
|
||||||
|
-- j.date_invoiced,
|
||||||
|
-- j.shopid
|
||||||
|
-- from
|
||||||
|
-- jobs j
|
||||||
|
-- left join (
|
||||||
|
-- select
|
||||||
|
-- p.jobid,
|
||||||
|
-- coalesce (sum(p.amount),0) as total_payments
|
||||||
|
-- from
|
||||||
|
-- payments p
|
||||||
|
-- group by
|
||||||
|
-- p.jobid
|
||||||
|
-- ) p on
|
||||||
|
-- j.id = p.jobid
|
||||||
|
-- where j.remove_from_ar = false and j.date_invoiced is not null and j.clm_total - coalesce (p.total_payments,0) > 0;
|
||||||
|
--
|
||||||
|
--
|
||||||
|
-- END
|
||||||
|
-- $function$;
|
||||||
33
hasura/migrations/1705952926623_run_sql_migration/up.sql
Normal file
33
hasura/migrations/1705952926623_run_sql_migration/up.sql
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
CREATE OR REPLACE FUNCTION public.jobs_ar_summary ()
|
||||||
|
RETURNS SETOF job_ar_schema
|
||||||
|
LANGUAGE plpgsql
|
||||||
|
STABLE
|
||||||
|
AS $function$
|
||||||
|
BEGIN
|
||||||
|
|
||||||
|
RETURN query
|
||||||
|
select
|
||||||
|
j.id,
|
||||||
|
j.ro_number,
|
||||||
|
j.clm_total,
|
||||||
|
coalesce (p.total_payments,0) as total_payments,
|
||||||
|
j.clm_total - coalesce (p.total_payments,0) as balance,
|
||||||
|
j.date_invoiced,
|
||||||
|
j.shopid
|
||||||
|
from
|
||||||
|
jobs j
|
||||||
|
left join (
|
||||||
|
select
|
||||||
|
p.jobid,
|
||||||
|
coalesce (sum(p.amount),0) as total_payments
|
||||||
|
from
|
||||||
|
payments p
|
||||||
|
group by
|
||||||
|
p.jobid
|
||||||
|
) p on
|
||||||
|
j.id = p.jobid
|
||||||
|
where j.remove_from_ar = false and j.date_invoiced is not null and j.clm_total - coalesce (p.total_payments,0) > 0;
|
||||||
|
|
||||||
|
|
||||||
|
END
|
||||||
|
$function$;
|
||||||
Reference in New Issue
Block a user