|
|
|
@ -8,6 +8,8 @@ import java.util.Map; |
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
|
import com.dxhy.base.model.BaseQyxxlbRespVO; |
|
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
|
import org.springframework.http.ResponseEntity; |
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
@ -89,7 +91,12 @@ public class BaseTDxTaxCurrentController extends AbstractController { |
|
|
|
|
String gfsh = (String)map.get("gfsh"); |
|
|
|
|
|
|
|
|
|
if(map.get("gfsh") == null || "".equals(map.get("gfsh")) || "99".equals(map.get("gfsh").toString())){ |
|
|
|
|
return ResponseEntity.ok(R.error("购方税号不能为空")); |
|
|
|
|
JSONObject json = new JSONObject(); |
|
|
|
|
json.put("datalist", new ArrayList<BaseQyxxlbRespVO>()); |
|
|
|
|
// 设置记录总数
|
|
|
|
|
json.put("total", 0); |
|
|
|
|
|
|
|
|
|
return ResponseEntity.ok(R.ok(baseITDxTaxCurrentService.responseResult(json))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String xydj = (String)map.get("xydj"); |
|
|
|
|