|
|
@@ -1,8 +1,10 @@
|
|
|
package com.idea.transactionRecordManage.controller;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
import com.idea.buildManage.model.HouseType;
|
|
|
import com.idea.buildManage.response.ParkRoomResponse;
|
|
|
+import com.idea.invoice.util.InvoiceUtil;
|
|
|
import com.idea.transactionRecordManage.service.TransactionRecordService;
|
|
|
import com.idea.transactionRecordManage.vo.NccRecordVo;
|
|
|
import com.rockstar.common.base.BaseController;
|
|
|
@@ -130,4 +132,28 @@ public class TransactionRecordController extends BaseController {
|
|
|
modelService.convertRecordSubmit(ids,collectionDateFrom, collectionDateTo);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ @PostMapping(value = "test", produces = {"application/json;charset=UTF-8"})
|
|
|
+ @ResponseBody
|
|
|
+ public AjaxResult test(String taxpayerid) throws Exception {
|
|
|
+ JSONObject jsonObject = new JSONObject();
|
|
|
+ jsonObject.put("taxpayerid", taxpayerid);
|
|
|
+ String result = InvoiceUtil.customerInfoQuery(jsonObject);
|
|
|
+ return AjaxResult.success(result);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @PostMapping(value = "test2", produces = {"application/json;charset=UTF-8"})
|
|
|
+ @ResponseBody
|
|
|
+ public AjaxResult test2(String id) throws Exception {
|
|
|
+
|
|
|
+ String result = modelService.customerAssignTemp(id);
|
|
|
+ return AjaxResult.success(result);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|