Implements the school fees gestion for a student and a payment table containing a history of all the financial transactions of the system

This commit is contained in:
2024-04-08 14:50:37 +02:00
parent 194b14f02b
commit e6e147af26
11 changed files with 238 additions and 15 deletions

View File

@ -0,0 +1,9 @@
import {restGet, restPatch, restPost} from "@/rest/restConsumer.js";
export async function getCurrentMinerval(userRegNo){
return restGet("/minerval/"+userRegNo)
}
export async function editMinerval(updatedMinerval){
return restPatch("/minerval", updatedMinerval)
}

View File

@ -0,0 +1,6 @@
import {restPost} from "@/rest/restConsumer.js";
export async function postPayment(payment){
return restPost("/payment", payment)
}