This commit is contained in:
2021-01-22 19:47:28 +00:00
parent d6642d2dfb
commit e84323bf4e
3 changed files with 6 additions and 6 deletions

2
.vscode/launch.json vendored
View File

@@ -53,7 +53,7 @@
"AYANOVA_FOLDER_USER_FILES": "c:\\temp\\RavenTestData\\userfiles",
"AYANOVA_FOLDER_BACKUP_FILES": "c:\\temp\\RavenTestData\\backupfiles",
"AYANOVA_FOLDER_TEMPORARY_SERVER_FILES": "c:\\temp\\RavenTestData\\tempfiles",
"AYANOVA_SERVER_TEST_MODE": "true",
"AYANOVA_SERVER_TEST_MODE": "false",
"AYANOVA_SERVER_TEST_MODE_SEEDLEVEL": "small",
"AYANOVA_SERVER_TEST_MODE_TZ_OFFSET": "-7",
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\data\\code\\postgres_13\\bin\\"

View File

@@ -4,9 +4,9 @@ using AyaNova.Models;
using AyaNova.Biz;
namespace AyaNova.DataList
{
internal class PartInventoryOnHandDataList : AyaDataList
internal class PartInventoryDataList : AyaDataList
{
public PartInventoryOnHandDataList()
public PartInventoryDataList()
{
DefaultListObjectType = AyaType.PartInventory;
@@ -82,7 +82,7 @@ namespace AyaNova.DataList
UiFieldDataType = (int)UiFieldDataType.Text,
SqlIdColumnName = "vpartinventorynow.id",
SqlValueColumnName = "vpartinventorynow.description",
IsMeta=true,//only so it doesn't show in the UI but is required for report
IsMeta = true,//only so it doesn't show in the UI but is required for report
IsRowId = true
});

View File

@@ -4,9 +4,9 @@ using AyaNova.Models;
using AyaNova.Biz;
namespace AyaNova.DataList
{
internal class PartInventoryDataList : AyaDataList
internal class PartInventoryTransactionsDataList : AyaDataList
{
public PartInventoryDataList()
public PartInventoryTransactionsDataList()
{
DefaultListObjectType = AyaType.PartInventory;