After code cleanup

This commit is contained in:
2022-07-09 04:17:38 +00:00
parent aaed4430f1
commit f9baf2b3df
53 changed files with 255 additions and 465 deletions

View File

@@ -1,29 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyaNovaQBI
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 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; }
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;
@@ -34,6 +28,6 @@ namespace AyaNovaQBI
grid.DisplayLayout.Bands[1].Columns["StatusARGB"].Hidden=true;
grid.DisplayLayout.Bands[1].Columns["Linked"].Hidden=true;
*/
}
}
}