mirror of
https://github.com/stokebob/BealeEngineering.git
synced 2026-03-19 06:37:15 +00:00
Added form to view sales invoices. Feature to match and split sales invoices to purchase orders Other minor updates/improvements to UI and database functions
24 lines
566 B
C#
24 lines
566 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace BealeEngineering.Accounts
|
|
{
|
|
public partial class frmSaleInvoice : Form
|
|
{
|
|
public frmSaleInvoice(Core.Model.Sale.Invoice invoice = null)
|
|
{
|
|
InitializeComponent();
|
|
|
|
bsInvoice.DataSource = invoice;
|
|
invoiceLineListBindingSource.DataSource = invoice.InvoiceLineList;
|
|
}
|
|
}
|
|
}
|