This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
v-model="selectedTrialUserId"
|
||||
:items="selectLists.trialUsers"
|
||||
item-text="name"
|
||||
item-value="id"
|
||||
item-value="l"
|
||||
label="Trial mode example users"
|
||||
prepend-icon="fa-question-circle"
|
||||
@click:prepend="trialHelpClick"
|
||||
@@ -88,7 +88,7 @@
|
||||
<script>
|
||||
/* xeslint-disable */
|
||||
import auth from "../api/auth";
|
||||
let TRIAL_MODE = false;
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
@@ -105,128 +105,112 @@ export default {
|
||||
selectLists: {
|
||||
trialUsers: [
|
||||
{
|
||||
name: "AyaNova administrator - all rights",
|
||||
id: 1,
|
||||
name: "AyaNova administrator - all",
|
||||
l: "manager",
|
||||
p: "l3tm3in"
|
||||
},
|
||||
{
|
||||
name: "Business admin - full rights",
|
||||
id: 2,
|
||||
name: "Accounting",
|
||||
l: "Accounting",
|
||||
p: "Accounting"
|
||||
},
|
||||
{
|
||||
name: "Business admin",
|
||||
l: "BizAdminFull",
|
||||
p: "BizAdminFull"
|
||||
},
|
||||
{
|
||||
name: "Business admin - limited rights",
|
||||
id: 3,
|
||||
name: "Business admin - limited",
|
||||
l: "BizAdminLimited",
|
||||
p: "BizAdminLimited"
|
||||
},
|
||||
{
|
||||
name: "Customer - full rights",
|
||||
id: 4,
|
||||
name: "Customer",
|
||||
l: "CustomerFull",
|
||||
p: "CustomerFull"
|
||||
},
|
||||
{
|
||||
name: "Customer - limited rights",
|
||||
id: 5,
|
||||
name: "Customer - limited",
|
||||
l: "CustomerLimited",
|
||||
p: "CustomerLimited"
|
||||
},
|
||||
{
|
||||
name: "Dispatcher - full rights",
|
||||
id: 6,
|
||||
name: "Dispatcher",
|
||||
l: "DispatchFull",
|
||||
p: "DispatchFull"
|
||||
},
|
||||
{
|
||||
name: "Dispatcher - limited rights",
|
||||
id: 7,
|
||||
name: "Dispatcher - limited",
|
||||
l: "DispatchLimited",
|
||||
p: "DispatchLimited"
|
||||
},
|
||||
{
|
||||
name: "Head office (customer) - full rights",
|
||||
id: 8,
|
||||
name: "Head office",
|
||||
l: "HeadOffice",
|
||||
p: "HeadOffice"
|
||||
},
|
||||
{
|
||||
name: "InventoryFull - full rights",
|
||||
id: 4,
|
||||
name: "Inventory",
|
||||
l: "InventoryFull",
|
||||
p: "InventoryFull"
|
||||
},
|
||||
{
|
||||
name: "InventoryLimited - limited rights",
|
||||
id: 5,
|
||||
name: "Inventory - limited",
|
||||
l: "InventoryLimited",
|
||||
p: "InventoryLimited"
|
||||
},
|
||||
{
|
||||
name: "OpsAdminFull - full rights",
|
||||
id: 4,
|
||||
name: "Operations",
|
||||
l: "OpsAdminFull",
|
||||
p: "OpsAdminFull"
|
||||
},
|
||||
{
|
||||
name: "OpsAdminLimited - limited rights",
|
||||
id: 5,
|
||||
name: "Operations - limited",
|
||||
l: "OpsAdminLimited",
|
||||
p: "OpsAdminLimited"
|
||||
},
|
||||
{
|
||||
name: "SalesFull - full rights",
|
||||
id: 4,
|
||||
name: "Sales",
|
||||
l: "SalesFull",
|
||||
p: "SalesFull"
|
||||
},
|
||||
{
|
||||
name: "SalesLimited - limited rights",
|
||||
id: 5,
|
||||
name: "Sales - limited",
|
||||
l: "SalesLimited",
|
||||
p: "SalesLimited"
|
||||
},
|
||||
{
|
||||
name: "SubContractorFull - full rights",
|
||||
id: 4,
|
||||
name: "Subcontractor",
|
||||
l: "SubContractorFull",
|
||||
p: "SubContractorFull"
|
||||
},
|
||||
{
|
||||
name: "SubContractorLimited - limited rights",
|
||||
id: 5,
|
||||
name: "Subcontractor - limited",
|
||||
l: "SubContractorLimited",
|
||||
p: "SubContractorLimited"
|
||||
},
|
||||
{
|
||||
name: "TechFull - full rights",
|
||||
id: 4,
|
||||
name: "Technician",
|
||||
l: "TechFull",
|
||||
p: "TechFull"
|
||||
},
|
||||
{
|
||||
name: "TechLimited - limited rights",
|
||||
id: 5,
|
||||
name: "Technician - limited",
|
||||
l: "TechLimited",
|
||||
p: "TechLimited"
|
||||
},
|
||||
{
|
||||
name: "Translation - Deutshe / German",
|
||||
id: 4,
|
||||
name: "Translation - Deutsch / German",
|
||||
l: "de",
|
||||
p: "de"
|
||||
},
|
||||
{
|
||||
name: "Translation - Espanol / Spanish",
|
||||
id: 5,
|
||||
name: "Translation - Español / Spanish",
|
||||
l: "es",
|
||||
p: "es"
|
||||
},
|
||||
{
|
||||
name: "Translation - Francais / French",
|
||||
id: 5,
|
||||
name: "Translation - Français / French",
|
||||
l: "fr",
|
||||
p: "fr"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user