117 lines
4.8 KiB
C#
117 lines
4.8 KiB
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json.Linq;
|
|
using AyaNova.Models;
|
|
using AyaNova.Biz;
|
|
namespace AyaNova.DataList
|
|
{
|
|
internal class PartInventoryOnHandDataList : AyaDataList
|
|
{
|
|
public PartInventoryOnHandDataList()
|
|
{
|
|
|
|
DefaultListObjectType = AyaType.PartInventory;
|
|
SQLFrom = "from vpartinventorynow "
|
|
+ "left join apart on (vpartinventorynow.partid=apart.id) "
|
|
+ "left join apartwarehouse on (vpartinventorynow.partwarehouseid=apartwarehouse.id) ";
|
|
var RoleSet = BizRoles.GetRoleSet(DefaultListObjectType);
|
|
AllowedRoles = RoleSet.ReadFullRecord | RoleSet.Change;
|
|
|
|
//######## DEFAULT VIEW WHEN NO VIEW CHOSEN ############
|
|
//Default ListView - show all transactions in order
|
|
dynamic dlistView = new JArray();
|
|
dynamic cm = null;
|
|
|
|
cm = new JObject();
|
|
cm.fld = "PartPartNumber";
|
|
cm.sort = "+";
|
|
dlistView.Add(cm);
|
|
|
|
cm = new JObject();
|
|
cm.fld = "PartWarehouseName";
|
|
cm.sort = "+";
|
|
dlistView.Add(cm);
|
|
|
|
cm = new JObject();
|
|
cm.fld = "PartInventoryBalance";
|
|
dlistView.Add(cm);
|
|
|
|
// cm = new JObject();
|
|
// cm.fld = "PartInventoryTransactionDescription";
|
|
// dlistView.Add(cm);
|
|
|
|
DefaultListView = dlistView.ToString(Newtonsoft.Json.Formatting.None);
|
|
|
|
//NOTE: Due to the join, all the sql id and name fields that can conflict with the joined table need to be specified completely
|
|
FieldDefinitions = new List<AyaDataListFieldDefinition>();
|
|
|
|
// FieldDefinitions.Add(new AyaDataListFieldDefinition
|
|
// {
|
|
// TKey = "PartInventoryTransactionSource",
|
|
// FieldKey = "PartInventoryTransactionSource",
|
|
// UiFieldDataType = (int)UiFieldDataType.Text,
|
|
// SqlIdColumnName = "vpartinventorynow.sourceid",
|
|
// SqlValueColumnName = "AYGETNAME(vpartinventorynow.sourceid, vpartinventorynow.sourcetype)",
|
|
// SqlAyTypeColumnName = "vpartinventorynow.sourcetype"
|
|
// });
|
|
|
|
FieldDefinitions.Add(new AyaDataListFieldDefinition
|
|
{
|
|
TKey = "PartPartNumber",
|
|
FieldKey = "PartPartNumber",
|
|
AyaObjectType = (int)AyaType.Part,
|
|
UiFieldDataType = (int)UiFieldDataType.Text,
|
|
SqlIdColumnName = "apart.id",
|
|
SqlValueColumnName = "apart.partnumber"
|
|
});
|
|
|
|
FieldDefinitions.Add(new AyaDataListFieldDefinition
|
|
{
|
|
TKey = "PartWarehouseName",
|
|
FieldKey = "PartWarehouseName",
|
|
AyaObjectType = (int)AyaType.PartWarehouse,
|
|
UiFieldDataType = (int)UiFieldDataType.Text,
|
|
SqlIdColumnName = "apartwarehouse.id",
|
|
SqlValueColumnName = "apartwarehouse.name"
|
|
});
|
|
|
|
FieldDefinitions.Add(new AyaDataListFieldDefinition
|
|
{
|
|
TKey = "PartInventoryTransactionDescription",
|
|
FieldKey = "PartInventoryTransactionDescription",
|
|
AyaObjectType = (int)AyaType.PartInventory,
|
|
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
|
|
IsRowId = true
|
|
});
|
|
|
|
// FieldDefinitions.Add(new AyaDataListFieldDefinition
|
|
// {
|
|
// TKey = "PartInventoryTransactionEntryDate",
|
|
// FieldKey = "PartInventoryTransactionEntryDate",
|
|
// UiFieldDataType = (int)UiFieldDataType.DateTime,
|
|
// SqlValueColumnName = "vpartinventorynow.entrydate"
|
|
// });
|
|
|
|
// FieldDefinitions.Add(new AyaDataListFieldDefinition
|
|
// {
|
|
// TKey = "PartInventoryTransactionQuantity",
|
|
// FieldKey = "PartInventoryTransactionQuantity",
|
|
// UiFieldDataType = (int)UiFieldDataType.Decimal,
|
|
// SqlValueColumnName = "vpartinventorynow.quantity"
|
|
// });
|
|
|
|
FieldDefinitions.Add(new AyaDataListFieldDefinition
|
|
{
|
|
TKey = "PartInventoryBalance",
|
|
FieldKey = "PartInventoryBalance",
|
|
UiFieldDataType = (int)UiFieldDataType.Decimal,
|
|
SqlValueColumnName = "vpartinventorynow.balance"
|
|
});
|
|
|
|
}
|
|
|
|
|
|
}//eoc
|
|
}//eons |