Commit 5ba676cf by chongli

销售提交发票功能优化

parent 86f40edc
......@@ -33,7 +33,7 @@ public class InvoiceRequestBean {
private String expressNo;
//发票邮递时间
private Date sendTime;
private String sendTime;
//未开票原因
private String refusedReason;
......@@ -63,7 +63,7 @@ public class InvoiceRequestBean {
public InvoiceRequestBean(String costOfDepart, String invoiceTitle, String taxIdNum,
String contactName, String contactTel, String contactAddress,
String invoiceRemark, String expressNo, Date sendTime,
String invoiceRemark, String expressNo, String sendTime,
String refusedReason) {
super();
this.costOfDepart = costOfDepart;
......@@ -151,11 +151,11 @@ public class InvoiceRequestBean {
this.expressNo = expressNo;
}
public Date getSendTime() {
public String getSendTime() {
return sendTime;
}
public void setSendTime(Date sendTime) {
public void setSendTime(String sendTime) {
this.sendTime = sendTime;
}
......
......@@ -5,7 +5,8 @@ import java.util.Map;
public enum InvoiceRequestStatusEnum {
WAIT_HANDLE(1, "待处理"),
HANDLED(2, "已处理");
REFUSED(2, "已否决"),
INVOICED(3, "已开票");
private int value;
private String msg;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment