|
@@ -98,7 +98,8 @@ public class OwnCostManageController extends BaseController
|
|
|
@PreAuthorize(hasPermi = "service:cost:list")
|
|
|
@GetMapping("/list")
|
|
|
public R list(String zfrNumber, String zciStatus, String zciInvoiceStatus,
|
|
|
- @RequestParam(required = false) Map dateRange,String zfrStatus,
|
|
|
+ String coreScyName, String supScyName, String zfrStatus,
|
|
|
+ @RequestParam(required = false) Map dateRange,
|
|
|
QueryRequest request)
|
|
|
{
|
|
|
String beginTime = CommonUtil.objToString(dateRange.get("params[beginTime]"));
|
|
@@ -113,6 +114,14 @@ public R list(String zfrNumber, String zciStatus, String zciInvoiceStatus,
|
|
|
if(CommonUtil.isNotEmpty(zfrNumber)){
|
|
|
map.put("zfrNumber", zfrNumber);
|
|
|
}
|
|
|
+ //开立企业
|
|
|
+ if(CommonUtil.isNotEmpty(coreScyName)){
|
|
|
+ map.put("coreScyName", coreScyName);
|
|
|
+ }
|
|
|
+ //融资企业
|
|
|
+ if(CommonUtil.isNotEmpty(supScyName)){
|
|
|
+ map.put("supScyName", supScyName);
|
|
|
+ }
|
|
|
//费用状态
|
|
|
if(CommonUtil.isNotEmpty(zciStatus)) {
|
|
|
map.put("zciStatus", zciStatus);
|
|
@@ -149,8 +158,9 @@ public R list(String zfrNumber, String zciStatus, String zciInvoiceStatus,
|
|
|
@PreAuthorize(hasPermi = "service:cost:list")
|
|
|
@GetMapping("/listInvoice")
|
|
|
public R listInvoice(String zfrNumber, String zciStatus, String zciInvoiceStatus,
|
|
|
- @RequestParam(required = false) Map dateInvoiceRange, String zfrStatus,
|
|
|
- QueryRequest request)
|
|
|
+ String coreScyName, String supScyName, String zfrStatus,
|
|
|
+ @RequestParam(required = false) Map dateInvoiceRange,
|
|
|
+ QueryRequest request)
|
|
|
{
|
|
|
String beginInvoiceTime = CommonUtil.objToString(dateInvoiceRange.get("params[beginTime]"));
|
|
|
String endInvoiceTime = CommonUtil.objToString(dateInvoiceRange.get("params[endTime]"));
|
|
@@ -161,6 +171,14 @@ public R list(String zfrNumber, String zciStatus, String zciInvoiceStatus,
|
|
|
if(CommonUtil.isNotEmpty(zfrNumber)){
|
|
|
map.put("zfrNumber", zfrNumber);
|
|
|
}
|
|
|
+ //开立企业
|
|
|
+ if(CommonUtil.isNotEmpty(coreScyName)){
|
|
|
+ map.put("coreScyName", coreScyName);
|
|
|
+ }
|
|
|
+ //融资企业
|
|
|
+ if(CommonUtil.isNotEmpty(supScyName)){
|
|
|
+ map.put("supScyName", supScyName);
|
|
|
+ }
|
|
|
//费用状态
|
|
|
if(CommonUtil.isNotEmpty(zciStatus)) {
|
|
|
map.put("zciStatus", zciStatus);
|