Change RO number to jobid.
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import path from "path";
|
||||
import { FolderPaths } from "./serverInit";
|
||||
|
||||
export function PathToRoFolder(ro_number: string) {
|
||||
return path.join(FolderPaths.Jobs, ro_number);
|
||||
export function PathToRoFolder(jobid: string) {
|
||||
return path.join(FolderPaths.Jobs, jobid);
|
||||
}
|
||||
|
||||
export function PathToRoBillsFolder(ro_number: string) {
|
||||
return path.join(FolderPaths.Jobs, ro_number, FolderPaths.BillsSubDir);
|
||||
export function PathToRoBillsFolder(jobid: string) {
|
||||
return path.join(FolderPaths.Jobs, jobid, FolderPaths.BillsSubDir);
|
||||
}
|
||||
export function PathToVendorBillsFile(vendor: string) {
|
||||
return path.join(FolderPaths.Vendors, vendor);
|
||||
|
||||
Reference in New Issue
Block a user