push
github
56 of 145 branches covered (38.62%)
48 of 50 new or added lines in 5 files covered. (96.0%)
3395 existing lines in 78 files now uncovered.8599 of 20189 relevant lines covered (42.59%)
701.76 hits per line
UNCOV
1
|
<script setup> |
|
UNCOV
2
|
|
× |
UNCOV
3
|
import { usePricegroupsStore } from "@/store/pricegroups";
|
× |
UNCOV
4
|
import { useI18n } from "vue-i18n";
|
× |
UNCOV
5
|
import ConfigTable from "@/components/ConfigTable.vue";
|
× |
UNCOV
6
|
|
× |
UNCOV
7
|
const { t } = useI18n();
|
× |
UNCOV
8
|
const COLUMNS = [
|
× |
UNCOV
9
|
{ key: "description", type: "text", head: t("Description") }, |
× |
UNCOV
10
|
]; |
× |
UNCOV
11
|
|
× |
UNCOV
12
|
const pricegroupsStore = usePricegroupsStore();
|
× |
13 |
|
× |
UNCOV
14
|
</script> |
× |
UNCOV
15
|
|
× |
16 |
<template>
|
× |
17 |
<h1 class="listtop">{{ t("Configure pricegroups") }}</h1> |
× |
UNCOV
18
|
<ConfigTable |
× |
UNCOV
19
|
:columns="COLUMNS"
|
× |
UNCOV
20
|
:store="pricegroupsStore"
|
× |
UNCOV
21
|
storeId="id"
|
× |
22 |
editRole="pricegroup_edit"
|
× |
23 |
createRole="pricegroup_create" />
|
× |
UNCOV
24
|
</template>
|
× |
25 |
|