34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
namespace AyaNovaQBI
|
|
{
|
|
internal class InvoiceableItem
|
|
{
|
|
public string Customer { get; set; }
|
|
public string Status { get; set; }
|
|
public string ServiceNumber { get; set; }
|
|
public string ServiceDate { get; set; }
|
|
public string Project { get; set; }
|
|
public string StatusColor { get; set; }
|
|
|
|
public long WorkorderId { get; set; }
|
|
public bool Linked { get; set; }
|
|
public long CustomerId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
grid.DisplayLayout.Bands[0].Columns["WorkingID"].Hidden=true;
|
|
grid.DisplayLayout.Bands[0].Columns["ClientID"].Hidden=true;
|
|
grid.DisplayLayout.Bands[0].Columns["Linked"].Hidden=true;
|
|
grid.DisplayLayout.Bands[0].Columns["Client"].Header.Caption="Invoice";
|
|
|
|
grid.DisplayLayout.Bands[1].Columns["InvoiceWorkingID"].Hidden=true;
|
|
grid.DisplayLayout.Bands[1].Columns["WorkorderID"].Hidden=true;
|
|
grid.DisplayLayout.Bands[1].Columns["StatusARGB"].Hidden=true;
|
|
grid.DisplayLayout.Bands[1].Columns["Linked"].Hidden=true;
|
|
*/
|
|
}
|
|
|
|
}
|