This commit is contained in:
38
AyaNovaQBI/InvoiceableItem.cs
Normal file
38
AyaNovaQBI/InvoiceableItem.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AyaNovaQBI
|
||||
{
|
||||
internal class InvoiceableItem
|
||||
{
|
||||
public string Status { get; set; }
|
||||
public string ServiceNumber { get; set; }
|
||||
public DateTime 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;
|
||||
*/
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user