Add files via upload

This commit is contained in:
gopi17701 2018-07-24 22:07:16 -04:00 committed by GitHub
parent 7ff04150a2
commit 496c8a6fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,16 +11,17 @@ public class Invoice {
Double billAmt;
String specialNotes;
String certification;
int invoiceStatus;
public Invoice(String invoiceNumber, Date invoiceDate, String poNum, String changeOrderNum, int pmtStatus, Double billAmt, String specialNotes, String certification) {
public Invoice(String invoiceNumber, Date invoiceDate, String poNum, int pmtStatus, Double billAmt, String specialNotes, String certification, int invoiceStatus) {
this.invoiceNumber = invoiceNumber;
this.invoiceDate = invoiceDate;
this.poNum = poNum;
this.changeOrderNum = changeOrderNum;
this.pmtStatus = pmtStatus;
this.billAmt = billAmt;
this.specialNotes = specialNotes;
this.certification = certification;
this.invoiceStatus = invoiceStatus;
}
public String getInvoiceNumber() {
@ -88,4 +89,11 @@ public class Invoice {
this.certification = certification;
}
public int getInvoiceStatus() {
return invoiceStatus;
}
public void setInvoiceStatus(int invoiceStatus) {
this.invoiceStatus = invoiceStatus;
}
}