File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { Prisma , Reimbursement_Status_Type } from '@prisma/client' ;
22import { wbsPipe , SpendingBarData , ReimbursementRequestData } from 'shared' ;
33import prisma from '../prisma/prisma' ;
4- import { getReimbursementRequestQueryArgs } from '../prisma-query-args/reimbursement-requests.query-args' ;
54import { NotFoundException } from './errors.utils' ;
6- import { getTeamQueryArgs } from '../prisma-query-args/teams.query-args' ;
75
86export const getProjectSegmentedWhereInput = (
97 organizationId : string ,
@@ -214,7 +212,7 @@ export const getReimbursementRequestsByProject = async (
214212 } ,
215213 select : {
216214 reimbursementStatuses : true ,
217- totalCost : true ,
215+ totalCost : true
218216 }
219217 } ) ;
220218
@@ -314,7 +312,7 @@ export const getReimbursementRequestsByTeam = async (
314312 } ,
315313 select : {
316314 reimbursementStatuses : true ,
317- totalCost : true ,
315+ totalCost : true
318316 }
319317 } ) ;
320318
@@ -668,7 +666,7 @@ export const getReimbursementRequestCategoryData = async (
668666 } ,
669667 select : {
670668 reimbursementStatuses : true ,
671- totalCost : true ,
669+ totalCost : true
672670 }
673671 } ) ;
674672
You can’t perform that action at this time.
0 commit comments