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
b92de8a936
commit
cd56ed1ab4
|
@ -6,8 +6,8 @@ public class InvoiceDetailRequest {
|
||||||
int poLineItemNum;
|
int poLineItemNum;
|
||||||
int serviceTypeId;
|
int serviceTypeId;
|
||||||
String desc;
|
String desc;
|
||||||
double percentCompletion;
|
double qty;
|
||||||
double hours;
|
double fee;
|
||||||
|
|
||||||
public String getInvoiceNum() {
|
public String getInvoiceNum() {
|
||||||
return invoiceNum;
|
return invoiceNum;
|
||||||
|
@ -49,29 +49,19 @@ public class InvoiceDetailRequest {
|
||||||
this.desc = desc;
|
this.desc = desc;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getPercentCompletion() {
|
public double getQty() {
|
||||||
return percentCompletion;
|
return qty;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPercentCompletion(double percentCompletion) {
|
public void setQty(double qty) {
|
||||||
this.percentCompletion = percentCompletion;
|
this.qty = qty;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getHours() {
|
public double getFee() {
|
||||||
return hours;
|
return fee;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setHours(double hours) {
|
public void setFee(double fee) {
|
||||||
this.hours = hours;
|
this.fee = fee;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getAnount() {
|
|
||||||
return anount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAnount(double anount) {
|
|
||||||
this.anount = anount;
|
|
||||||
}
|
|
||||||
|
|
||||||
double anount;
|
|
||||||
}
|
}
|
|
@ -8,6 +8,7 @@ public class PODetailRequest {
|
||||||
String serviceDesc;
|
String serviceDesc;
|
||||||
int feeTypeId;
|
int feeTypeId;
|
||||||
Double qty;
|
Double qty;
|
||||||
|
Double fee;
|
||||||
int serviceTypeId;
|
int serviceTypeId;
|
||||||
|
|
||||||
public String getPoNum() {
|
public String getPoNum() {
|
||||||
|
@ -50,6 +51,14 @@ public class PODetailRequest {
|
||||||
this.qty = qty;
|
this.qty = qty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Double getFee() {
|
||||||
|
return fee;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFee(Double fee) {
|
||||||
|
this.fee = fee;
|
||||||
|
}
|
||||||
|
|
||||||
public int getServiceTypeId() {
|
public int getServiceTypeId() {
|
||||||
return serviceTypeId;
|
return serviceTypeId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,7 @@ public class POMasterRequest {
|
||||||
Date PODate;
|
Date PODate;
|
||||||
Double contractAmt;
|
Double contractAmt;
|
||||||
Integer customerId;
|
Integer customerId;
|
||||||
|
String astuteProjectNumber;
|
||||||
|
|
||||||
public String getPoNum() {
|
public String getPoNum() {
|
||||||
return poNum;
|
return poNum;
|
||||||
|
@ -50,5 +51,11 @@ public class POMasterRequest {
|
||||||
this.customerId = customerId;
|
this.customerId = customerId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getAstuteProjectNumber() {
|
||||||
|
return astuteProjectNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAstuteProjectNumber(String astuteProjectNumber) {
|
||||||
|
this.astuteProjectNumber = astuteProjectNumber;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user