This commit is contained in:
2018-08-31 20:30:58 +00:00
parent f6a9af8ff1
commit 5a8f81f57f
2 changed files with 10 additions and 9 deletions

View File

@@ -25,6 +25,7 @@ Overall plan for now: anything standing in the way of making the initial client
- Then test
- V7 import tags and other objects make sure the proper attribution and dates are set in the event log,
- Right now it looks like it just defaults to manager and today and created and that's it.
- Is 35char long enough for tags? Why is there a limit? Can it be 50?
- Why are inactive users allowed to login?
- Seed data is seeding users inactive, sb active
- Event log make sure can set the date and time to prior values for importing

View File

@@ -264,31 +264,31 @@ namespace AyaNova.Biz
switch (SourceType)
{
case "GZTW.AyaNova.BLL.Region":
ShortTypeName = "region";
ShortTypeName = "rgn";
break;
case "GZTW.AyaNova.BLL.UnitModelCategory":
ShortTypeName = "unit-mdl-ctgry";
ShortTypeName = "unitmdlctgry";
break;
case "GZTW.AyaNova.BLL.UnitServiceType":
ShortTypeName = "unit-svc-typ";
ShortTypeName = "unitsvtyp";
break;
case "GZTW.AyaNova.BLL.WorkorderItemType":
ShortTypeName = "wo-item-typ";
ShortTypeName = "woitemtyp";
break;
case "GZTW.AyaNova.BLL.ClientGroup":
ShortTypeName = "clnt-grp";
ShortTypeName = "clntgrp";
break;
case "GZTW.AyaNova.BLL.WorkorderCategory":
ShortTypeName = "wo-ctgry";
ShortTypeName = "woctgry";
break;
case "GZTW.AyaNova.BLL.PartCategory":
ShortTypeName = "prt-ctgry";
ShortTypeName = "prtctgry";
break;
case "GZTW.AyaNova.BLL.DispatchZone":
ShortTypeName = "dspch-zn";
ShortTypeName = "dspchzn";
break;
case "GZTW.AyaNova.BLL.ScheduleableUserGroup":
ShortTypeName = "schd-usr-grp";
ShortTypeName = "schdusrgrp";
break;
}