|
@@ -1193,17 +1193,18 @@ public class OwnMessageController extends BaseController {
|
|
|
|
|
|
/**
|
|
|
* 查询企业当前融信已盖章合同
|
|
|
- * @param zfiId 融信id
|
|
|
+ * @param zfrId 融信id
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
@GetMapping("/listStamped")
|
|
|
- public AjaxResult listStamped (@RequestParam(required=false) String zfiId) throws Exception {
|
|
|
+ public AjaxResult listStamped (@RequestParam(required=false) String zfrId) throws Exception {
|
|
|
//获取当前用户
|
|
|
LoginUser userInfo = tokenService.getLoginUser();
|
|
|
SysUser use = userInfo.getSysUser();
|
|
|
//获取公司
|
|
|
String companyId = use.getCompanyId();
|
|
|
+ System.out.println("zfrId========》"+zfrId);
|
|
|
//企业类型
|
|
|
String companyType = use.getCompanyType();
|
|
|
LambdaQueryWrapper<ZcFinanceFileRel> queryWrapper = new LambdaQueryWrapper<>();
|
|
@@ -1214,9 +1215,9 @@ public class OwnMessageController extends BaseController {
|
|
|
//供应商
|
|
|
queryWrapper.eq(ZcFinanceFileRel::getZffrSupplierId,companyId);
|
|
|
}
|
|
|
- queryWrapper.eq(ZcFinanceFileRel::getZffrFinanceId, zfiId);
|
|
|
+ queryWrapper.eq(ZcFinanceFileRel::getZffrFinanceId, zfrId);
|
|
|
List<ZcFinanceFileRel> financeFileList = financeFileRelService.findZcFinanceFileRels(queryWrapper);
|
|
|
- ZcFinanceInf zcFinanceInf = financeInfService.getById(zfiId);
|
|
|
+ ZcFinanceInf zcFinanceInf = financeInfService.getById(zfrId);
|
|
|
List<PubFileInf> fileInfList = new ArrayList<>();
|
|
|
//返回
|
|
|
Map<String,Object> p = new HashMap<>();
|