Skip to content

Commit

Permalink
Update Visma GraphQL schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ON IT BOT committed Sep 6, 2024
1 parent 481c31f commit be92213
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions src/visma/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -683060,7 +683060,7 @@ type GeneralLedgerAccountProcessings {
filter: FilterExpression_GeneralLedgerAccount
): GeneralLedgerAccountProcessings_AutomaticEntries

"""Changes account no. on all rows were "new account no." is filled in"""
"""Changes account no. on all rows where "New account no." is filled in"""
changeAccountNo(
"""An object that defines the filter for the processing"""
filter: FilterExpression_GeneralLedgerAccount
Expand Down Expand Up @@ -686466,14 +686466,14 @@ type BatchProcessings {
filter: FilterExpression_Batch
): BatchProcessings_UpdateSupplierTransactions

"""Create batch with reversal of pre-registration"""
"""Creates a batch with reversal of pre-registration"""
reversePreRegistration(
"""An object that defines the filter for the processing"""
filter: FilterExpression_Batch
): BatchProcessings_ReversePreRegistration

"""
Send vouchers and invoices to Visma.net Approval to be handled in the approval flow
Sends vouchers and invoices to Visma.net Approval to be handled in the approval flow
"""
sendToApproval(
"""An object that defines the filter for the processing"""
Expand Down Expand Up @@ -686509,6 +686509,12 @@ type BatchProcessings {
filter: FilterExpression_Batch
args: BatchProcessings_ViewDocuments_Parameters
): BatchProcessings_ViewDocuments

"""Retrieves and updates the latest status from Visma.net Approval"""
fetchApprovalStatus(
"""An object that defines the filter for the processing"""
filter: FilterExpression_Batch
): BatchProcessings_FetchApprovalStatus
}

type BatchProcessings_UpdateSupplierTransactions {
Expand Down Expand Up @@ -686584,6 +686590,10 @@ input BatchProcessings_ViewDocuments_Parameters {
returnFileBytes: Byte
}

type BatchProcessings_FetchApprovalStatus {
succeeded: Boolean
}

type VoucherProcessings {
"""Posts the interim posting on the voucher line to selected periods"""
accrualAccounting(
Expand Down Expand Up @@ -687102,6 +687112,7 @@ type CompanyInformationProcessings {
changeStandardCurrency(
"""An object that defines the filter for the processing"""
filter: FilterExpression_CompanyInformation
args: CompanyInformationProcessings_ChangeStandardCurrency_Parameters
): CompanyInformationProcessings_ChangeStandardCurrency

"""Defines rules for handling prices and discounts"""
Expand Down Expand Up @@ -687377,6 +687388,15 @@ type CompanyInformationProcessings_ChangeStandardCurrency {
succeeded: Boolean
}

input CompanyInformationProcessings_ChangeStandardCurrency_Parameters {
oldStandardCurrencyNo: Int
newStandardCurrencyNo: Int
convertValues: Byte
convertionFactor: Decimal
makeBatchWithDifferences: Byte
regenerateAccountingBalances: Byte
}

type CompanyInformationProcessings_PriceAndDiscountProcessing {
succeeded: Boolean
}
Expand Down

0 comments on commit be92213

Please sign in to comment.