人员信息同步接口调试
This commit is contained in:
parent
fafecc62f8
commit
cefc1ddff1
|
|
@ -57,6 +57,7 @@
|
|||
</template>
|
||||
</browser>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {reactive, toRefs} from 'vue'
|
||||
import Browser from '@/components/Browser.vue'
|
||||
|
|
|
|||
|
|
@ -204,6 +204,7 @@ const state = reactive({
|
|||
show: false,
|
||||
mode: 'detail',
|
||||
formLabelWidth: '110px',
|
||||
loading: false,
|
||||
baseTitle: '执法文书送达',
|
||||
rules: {
|
||||
caseId: [{required: true, message: '案卷不能为空', trigger: 'change'}],
|
||||
|
|
|
|||
|
|
@ -145,7 +145,8 @@ public class DeliveryRecordController {
|
|||
}
|
||||
|
||||
/**
|
||||
* 下发机器人语音叫
|
||||
* 下发机器人语音叫应
|
||||
*
|
||||
* @param deliveryRecord 文书送达记录
|
||||
* @param user 用户信息
|
||||
* @return ok
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue