mirror of
https://github.com/dyiop/astute.git
synced 2025-04-06 21:30:20 -04:00
Add files via upload
This commit is contained in:
parent
7ff04150a2
commit
496c8a6fa9
|
@ -11,16 +11,17 @@ public class Invoice {
|
||||||
Double billAmt;
|
Double billAmt;
|
||||||
String specialNotes;
|
String specialNotes;
|
||||||
String certification;
|
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.invoiceNumber = invoiceNumber;
|
||||||
this.invoiceDate = invoiceDate;
|
this.invoiceDate = invoiceDate;
|
||||||
this.poNum = poNum;
|
this.poNum = poNum;
|
||||||
this.changeOrderNum = changeOrderNum;
|
|
||||||
this.pmtStatus = pmtStatus;
|
this.pmtStatus = pmtStatus;
|
||||||
this.billAmt = billAmt;
|
this.billAmt = billAmt;
|
||||||
this.specialNotes = specialNotes;
|
this.specialNotes = specialNotes;
|
||||||
this.certification = certification;
|
this.certification = certification;
|
||||||
|
this.invoiceStatus = invoiceStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getInvoiceNumber() {
|
public String getInvoiceNumber() {
|
||||||
|
@ -88,4 +89,11 @@ public class Invoice {
|
||||||
this.certification = certification;
|
this.certification = certification;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getInvoiceStatus() {
|
||||||
|
return invoiceStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInvoiceStatus(int invoiceStatus) {
|
||||||
|
this.invoiceStatus = invoiceStatus;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user