Update media file interface and how bills are returned.

This commit is contained in:
Patrick Fic
2022-05-05 15:45:42 -07:00
parent 7754dc4653
commit 270be1d360
10 changed files with 101 additions and 1987 deletions

View File

@@ -8,6 +8,6 @@ export function PathToRoFolder(jobid: string) {
export function PathToRoBillsFolder(jobid: string) {
return path.join(FolderPaths.Jobs, jobid, FolderPaths.BillsSubDir);
}
export function PathToVendorBillsFile(vendor: string) {
return path.join(FolderPaths.Vendors, vendor);
export function PathToVendorBillsFile(vendorid: string) {
return path.join(FolderPaths.Vendors, vendorid);
}