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({
title: "CustomerServiceRequestList",
icon: "$ayiConciergeBell",
route: "/svc-csr-list",
route: "/svc-csr",
key: key++
});
}

View File

@@ -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 ##############################
{

View File

@@ -14,7 +14,7 @@ export default {
isMain: true,
icon: "$ayiConciergeBell",
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.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