replaced clients/s with customer/s (2)

This commit is contained in:
Johanna Kuehner
2024-03-04 20:07:31 +01:00
parent 889eb3571f
commit fa29921afe
13 changed files with 77 additions and 77 deletions

View File

@ -142,7 +142,7 @@ export default defineEventHandler(async (event) => {
}
if (event.path.startsWith("/api/getSelectedMVTsByCustomer")) {
// get selected maintenance visit templates object by client from backend
// get selected maintenance visit templates object by customer from backend
let filteredCustomer = null;
const path = event._path;
const pathSegments = path.split('/');

View File

@ -141,7 +141,7 @@ export default defineEventHandler(async (event) => {
}
if (event.path.startsWith("/api/getSelectedPOTsByCustomer")) {
// get selected production order templates object by client from backend
// get selected production order templates object by customer from backend
let filteredCustomer = null;
const path = event._path;
const pathSegments = path.split('/');

View File

@ -53,7 +53,7 @@ export default defineEventHandler(async (event) => {
}
if (event.path.startsWith("/api/getSelectedSolutionsByCustomer")) {
// get selected solutions object by client from backend
// get selected solutions object by customer from backend
let filteredCustomer = null;
const path = event._path;
const pathSegments = path.split('/');