|
@@ -2106,7 +2106,7 @@ public class ExcelTabController extends BladeController {
|
|
|
}
|
|
|
|
|
|
|
|
|
- @PostMapping("/save_buss_data2")
|
|
|
+ @PostMapping("/save_buss_data")
|
|
|
@ApiOperationSupport(order = 13)
|
|
|
@ApiOperation(value = "填报页面数据保存", notes = "填报页面数据保存")
|
|
|
public R saveBussData2(@Valid @RequestBody JSONObject dataInfo) throws Exception {
|
|
@@ -2135,7 +2135,7 @@ public class ExcelTabController extends BladeController {
|
|
|
JSONArray extra = new JSONArray();
|
|
|
for (Long pk : tableAllIds) {
|
|
|
if (!exclude.contains(pk)) {
|
|
|
- R bussDataInfo = this.excelTabService.getBussDataInfo(pk, 1,false);
|
|
|
+ R bussDataInfo = this.excelTabService.getBussDataInfo(pk, 1,true);
|
|
|
@SuppressWarnings("unchecked")
|
|
|
Map<String, Object> jo = (Map<String, Object>) bussDataInfo.getData();
|
|
|
if (ObjectUtils.isNotEmpty(jo)) {
|
|
@@ -3843,7 +3843,7 @@ public class ExcelTabController extends BladeController {
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
- @PostMapping("/save_buss_data")
|
|
|
+ @PostMapping("/save_buss_data2")
|
|
|
@ApiOperationSupport(order = 13)
|
|
|
@ApiOperation(value = "填报页面数据保存", notes = "填报页面数据保存")
|
|
|
public R saveBussData(@Valid @RequestBody JSONObject dataInfo) throws Exception {
|