@accounter/server
Version:
The test suite is split into three Vitest projects for efficiency and isolation:
43 lines (40 loc) • 1.49 kB
text/typescript
import { gql } from 'graphql-modules';
export default gql`
extend type Mutation {
generateRevaluationCharge(ownerId: UUID!, date: TimelessDate!): FinancialCharge!
@auth(role: ACCOUNTANT)
generateBankDepositsRevaluationCharge(ownerId: UUID!, date: TimelessDate!): FinancialCharge!
@auth(role: ACCOUNTANT)
generateTaxExpensesCharge(ownerId: UUID!, year: TimelessDate!): FinancialCharge!
@auth(role: ACCOUNTANT)
generateDepreciationCharge(ownerId: UUID!, year: TimelessDate!): FinancialCharge!
@auth(role: ACCOUNTANT)
generateRecoveryReserveCharge(ownerId: UUID!, year: TimelessDate!): FinancialCharge!
@auth(role: ACCOUNTANT)
generateVacationReserveCharge(ownerId: UUID!, year: TimelessDate!): FinancialCharge!
@auth(role: ACCOUNTANT)
generateBalanceCharge(
description: String!
balanceRecords: [InsertMiscExpenseInput!]!
): FinancialCharge! @auth(role: ACCOUNTANT)
}
" financial charge "
type FinancialCharge implements Charge {
id: UUID!
type: ChargeType!
vat: FinancialAmount
withholdingTax: FinancialAmount
totalAmount: FinancialAmount
property: Boolean
decreasedVAT: Boolean
isInvoicePaymentDifferentCurrency: Boolean
userDescription: String
minEventDate: DateTime
minDebitDate: DateTime
minDocumentsDate: DateTime
metadata: ChargeMetadata
yearsOfRelevance: [YearOfRelevance!]
optionalVAT: Boolean
optionalDocuments: Boolean
}
`;