2
0
mirror of https://github.com/frappe/books.git synced 2025-02-02 12:08:27 +00:00

incr: add inventory icon

This commit is contained in:
18alantom 2022-10-05 14:05:45 +05:30
parent 36e6988abe
commit afcc5fb2b2
4 changed files with 50 additions and 4 deletions

View File

@ -17,7 +17,7 @@
<script>
import Base from '../base';
export default {
name: 'IconReports',
name: 'IconGST',
extends: Base,
};
</script>

View File

@ -0,0 +1,33 @@
<template>
<svg
width="20"
height="20"
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.4943 0.151836C7.88385 -0.0506121 8.33973 -0.0506121 8.72928 0.151836L17.0957 4.49986L14.7724 5.70728L5.78847 1.03835L7.4943 0.151836Z"
:fill="lightColor"
/>
<path
d="M9.88794 8.24572L0.904053 3.57679L4.11554 1.90778L13.0994 6.57671L9.88794 8.24572Z"
:fill="lightColor"
/>
<path
d="M10.6569 9.58498L17.9952 5.77127C17.9984 5.81193 18 5.85301 18 5.89441V12.453C18 12.9868 17.7304 13.4692 17.3093 13.7319L10.6569 17.8806L10.6569 9.58498Z"
:fill="darkColor"
/>
<path
d="M9.11923 9.58498L9.11923 18L0.78452 13.6684C0.313082 13.4234 0 12.9121 0 12.336V4.97134C0 4.92994 0.00161725 4.88887 0.00479439 4.84821L9.11923 9.58498Z"
:fill="darkColor"
/>
</svg>
</template>
<script>
import Base from '../base';
export default {
name: 'IconInventory',
extends: Base,
};
</script>

View File

@ -6,7 +6,7 @@ export default {
props: ['active'],
computed: {
lightColor() {
return this.active ? uicolors.blue['300'] : uicolors.gray['400'];
return this.active ? uicolors.blue['300'] : uicolors.gray['500'];
},
darkColor() {
return this.active ? uicolors.blue['500'] : uicolors.gray['700'];

View File

@ -53,6 +53,18 @@ function getRegionalSidebar(): SidebarRoot[] {
];
}
function getInventorySidebar(): SidebarRoot[] {
return [
{
label: t`Inventory`,
name: 'inventory',
icon: 'inventory',
iconSize: '18',
route: '/',
},
];
}
function getCompleteSidebar(): SidebarConfig {
return [
{
@ -188,7 +200,8 @@ function getCompleteSidebar(): SidebarConfig {
},
],
},
...getRegionalSidebar(),
getInventorySidebar(),
getRegionalSidebar(),
{
label: t`Setup`,
name: 'setup',
@ -218,5 +231,5 @@ function getCompleteSidebar(): SidebarConfig {
},
],
},
];
].flat();
}