| | |
| | | translateDictTextUtils.translateField("equipmentManagerSignature", entity.getEquipmentManagerSignature(), item, "sys_user,realname,username"); |
| | | translateDictTextUtils.translateField("departManagerSignature", entity.getDepartManagerSignature(), item, "sys_user,realname,username"); |
| | | translateDictTextUtils.translateField("productionSupportSignature", entity.getProductionSupportSignature(), item, "sys_user,realname,username"); |
| | | translateDictTextUtils.translateField("factoryOrgCode", entity.getFactoryOrgCode(), item, "eam_base_factory,factory_name,org_code"); |
| | | return Result.OK(item); |
| | | } catch (JsonProcessingException e) { |
| | | return Result.error("数据转译失败!"); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 批量打印三保变更 |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "三保变更-批量打印") |
| | | @ApiOperation(value = "三保变更-批量打印", notes = "三保变更-批量打印") |
| | | @GetMapping(value = "/batchExport") |
| | | public Result<?> batchExport(@RequestParam(name = "ids", required = true) String ids) { |
| | | return Result.OK(eamThirdMaintenanceChangeService.export(ids)); |
| | | } |
| | | |
| | | } |