This commit is contained in:
@@ -349,7 +349,7 @@ function initNavPanel() {
|
||||
sub.push({
|
||||
title: "CustomerServiceRequestList",
|
||||
icon: "$ayiConciergeBell",
|
||||
route: "/svc-csr-list",
|
||||
route: "/svc-csr",
|
||||
key: key++
|
||||
});
|
||||
}
|
||||
|
||||
@@ -371,10 +371,16 @@ export default new Router({
|
||||
import(/* webpackChunkName: "svc" */ "./views/svc-project.vue")
|
||||
},
|
||||
{
|
||||
path: "/svc-csr-list",
|
||||
name: "svc-csr-list",
|
||||
path: "/svc-csr",
|
||||
name: "svc-csr",
|
||||
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 ##############################
|
||||
{
|
||||
|
||||
@@ -14,7 +14,7 @@ export default {
|
||||
isMain: true,
|
||||
icon: "$ayiConciergeBell",
|
||||
title: "CustomerServiceRequestList",
|
||||
helpUrl: "form-svc-csr-list"
|
||||
helpUrl: "form-svc-csr"
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -143,8 +143,8 @@ describe("SMOKE", () => {
|
||||
cy.url().should("include", "/svc-projects/1");
|
||||
cy.get("[data-cy=name]");
|
||||
|
||||
cy.visit("/svc-csr-list");
|
||||
cy.url().should("include", "/svc-csr-list");
|
||||
cy.visit("/svc-csr");
|
||||
cy.url().should("include", "/svc-csr");
|
||||
cy.get("[data-cy=underconstruction]");
|
||||
|
||||
//################# INVENTORY
|
||||
|
||||
Reference in New Issue
Block a user