# Configuring Your SCO Accounts

Welcome to customization heaven.


Your default accounts module, found under JSM | SelfCheckout V3 -> SystemConfig -> Accounts, is structured as follows:

--[[
	           _______ __  ___
	          / / ___//  |/  /
	     __  / /\__ \/ /|_/ / 
	    / /_/ /___/ / /  / /  
	    \____//____/_/  /_/
 	      Self Checkout v3

    For additional security, it is recomended to only login with an operator barcode, however passcodes can be used if prefered.
	
]]--

local OperatorID = {		
	["1"] = {
		["Name"] = "DefaultCashier",
		["Type"] = "Employee",
		["Password"] = "1234"
	},	
	["2"] = {
		["Name"] = "DefaultManager",
		["Type"] = "Manager",
		["Password"] = "1234"
	},
	["3"] = {
		["Name"] = "DefaultAdministrator",
		["Type"] = "Administrator",
		["Password"] = "1234"
	},
}
return OperatorID

# Syntax

# OperatorID

The dictionary key (for example, the "1", "2", etc. above) is the ID you will log in with.


Example:

local OperatorID = {
	["4321"] = {
		["Name"] = "Store Employees",
		["Type"] = "Employee",
		["Password"] = "1345"
	},	
	["62"] = {
		["Name"] = "Karen Manager",
		["Type"] = "Manager",
		["Password"] = "7568"
	},
	["387"] = {
		["Name"] = "Maintenance Staff",
		["Type"] = "Administrator",
		["Password"] = "2456"
	},
	["875"] = {
		["Name"] = "Ownership",
		["Type"] = "Administrator",
		["Password"] = "4876"
	},
}
return OperatorID