人员信息同步接口调试

This commit is contained in:
huxin02 2025-06-20 16:51:29 +08:00
parent fafecc62f8
commit cefc1ddff1
5 changed files with 5 additions and 3 deletions

View File

@ -57,6 +57,7 @@
</template>
</browser>
</template>
<script setup>
import {reactive, toRefs} from 'vue'
import Browser from '@/components/Browser.vue'

View File

@ -204,6 +204,7 @@ const state = reactive({
show: false,
mode: 'detail',
formLabelWidth: '110px',
loading: false,
baseTitle: '执法文书送达',
rules: {
caseId: [{required: true, message: '案卷不能为空', trigger: 'change'}],

View File

@ -145,7 +145,8 @@ public class DeliveryRecordController {
}
/**
* 下发机器人语音叫
* 下发机器人语音叫应
*
* @param deliveryRecord 文书送达记录
* @param user 用户信息
* @return ok

View File

@ -85,6 +85,7 @@ public class OfficerScheduleService {
log.error("执法人员API令牌IDNO (third-party.enterprise.idno) 未配置。");
return;
}
if (thirdPartyProperties.getPerson().getRoles() == null || thirdPartyProperties.getPerson().getRoles().isEmpty()) {
log.error("执法人员角色列表 (third-party.person.roles) 未配置。");
return;

View File

@ -24,10 +24,8 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
@ActiveProfiles("dev")
@DisplayName("执法人员信息同步服务集成测试")
class OfficerScheduleServiceTest {
@Autowired
private OfficerScheduleService officerScheduleService;
@Autowired
private OfficerRepository officerRepository;