This commit is contained in:
2021-01-07 15:05:58 +00:00
parent 21a422ab47
commit b99115be1e
4 changed files with 13 additions and 7 deletions

View File

@@ -349,7 +349,7 @@ function initNavPanel() {
sub.push({ sub.push({
title: "CustomerServiceRequestList", title: "CustomerServiceRequestList",
icon: "$ayiConciergeBell", icon: "$ayiConciergeBell",
route: "/svc-csr-list", route: "/svc-csr",
key: key++ key: key++
}); });
} }

View File

@@ -371,10 +371,16 @@ export default new Router({
import(/* webpackChunkName: "svc" */ "./views/svc-project.vue") import(/* webpackChunkName: "svc" */ "./views/svc-project.vue")
}, },
{ {
path: "/svc-csr-list", path: "/svc-csr",
name: "svc-csr-list", name: "svc-csr",
component: () => component: () =>
import(/* webpackChunkName: "svc" */ "./views/svc-csr-list.vue") import(/* webpackChunkName: "svc" */ "./views/svc-csrs.vue")
},
{
path: "/svc-csr/:recordid",
name: "csr-edit",
component: () =>
import(/* webpackChunkName: "svc" */ "./views/svc-csr.vue")
}, },
//######################### INVENTORY GROUP ############################## //######################### INVENTORY GROUP ##############################
{ {

View File

@@ -14,7 +14,7 @@ export default {
isMain: true, isMain: true,
icon: "$ayiConciergeBell", icon: "$ayiConciergeBell",
title: "CustomerServiceRequestList", title: "CustomerServiceRequestList",
helpUrl: "form-svc-csr-list" helpUrl: "form-svc-csr"
}); });
} }
}; };

View File

@@ -143,8 +143,8 @@ describe("SMOKE", () => {
cy.url().should("include", "/svc-projects/1"); cy.url().should("include", "/svc-projects/1");
cy.get("[data-cy=name]"); cy.get("[data-cy=name]");
cy.visit("/svc-csr-list"); cy.visit("/svc-csr");
cy.url().should("include", "/svc-csr-list"); cy.url().should("include", "/svc-csr");
cy.get("[data-cy=underconstruction]"); cy.get("[data-cy=underconstruction]");
//################# INVENTORY //################# INVENTORY