需求计划撤回
This commit is contained in:
parent
147732e3f0
commit
d8c7ec21d5
|
|
@ -27,6 +27,7 @@ import java.io.File;
|
|||
import java.net.URLEncoder;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* @author 黑子
|
||||
|
|
@ -450,6 +451,9 @@ public class ExportController {
|
|||
*/
|
||||
private String getStatus(String statusType,String status) {
|
||||
try {
|
||||
if(Objects.equals(statusType,"0") && Objects.equals(status,"0")){
|
||||
return "已撤回";
|
||||
}
|
||||
String company ="";
|
||||
if("1".equals(statusType)) {
|
||||
return "审核通过";
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ import java.net.URLEncoder;
|
|||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
|
||||
import cn.afterturn.easypoi.excel.ExcelExportUtil;
|
||||
import cn.afterturn.easypoi.excel.entity.ExportParams;
|
||||
|
|
@ -117,6 +118,9 @@ public class PlanAuditController {
|
|||
*/
|
||||
private String getStatus(String statusType,String status) {
|
||||
try {
|
||||
if(Objects.equals(statusType,"0") && Objects.equals(status,"0")){
|
||||
return "已撤回";
|
||||
}
|
||||
String company ="";
|
||||
if("1".equals(statusType)) {
|
||||
return "审核通过";
|
||||
|
|
|
|||
Loading…
Reference in New Issue