Updated the table class files to allow a nullable ad special ID and changed the enum in the new modify record form to a boolean. Added a form to manage ad special keywords, still needs to handle removing them properly.
This commit is contained in:
@@ -328,7 +328,7 @@ namespace AdvertsingProfitControl
|
||||
db.Suppliers.Add(supplier);
|
||||
}
|
||||
invoiceObject.InvoiceDate = DateTime.Parse(invoice.Rows[i][0].ToString());
|
||||
invoiceObject.InvoiceNumber = int.Parse(invoice.Rows[i][2].ToString());
|
||||
invoiceObject.InvoiceNumber = invoice.Rows[i][2].ToString();
|
||||
invoiceObject.InvoiceNetAmountAtCost = decimal.Parse(invoice.Rows[i][3].ToString());
|
||||
invoiceObject.InvoiceNetAmount = decimal.Parse(invoice.Rows[i][4].ToString());
|
||||
invoiceObject.InvoiceNote = invoice.Rows[i][5].ToString();
|
||||
|
||||
Reference in New Issue
Block a user