人员信息同步接口调试
This commit is contained in:
parent
fafecc62f8
commit
cefc1ddff1
|
|
@ -57,6 +57,7 @@
|
||||||
</template>
|
</template>
|
||||||
</browser>
|
</browser>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {reactive, toRefs} from 'vue'
|
import {reactive, toRefs} from 'vue'
|
||||||
import Browser from '@/components/Browser.vue'
|
import Browser from '@/components/Browser.vue'
|
||||||
|
|
|
||||||
|
|
@ -204,6 +204,7 @@ const state = reactive({
|
||||||
show: false,
|
show: false,
|
||||||
mode: 'detail',
|
mode: 'detail',
|
||||||
formLabelWidth: '110px',
|
formLabelWidth: '110px',
|
||||||
|
loading: false,
|
||||||
baseTitle: '执法文书送达',
|
baseTitle: '执法文书送达',
|
||||||
rules: {
|
rules: {
|
||||||
caseId: [{required: true, message: '案卷不能为空', trigger: 'change'}],
|
caseId: [{required: true, message: '案卷不能为空', trigger: 'change'}],
|
||||||
|
|
|
||||||
|
|
@ -145,7 +145,8 @@ public class DeliveryRecordController {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 下发机器人语音叫
|
* 下发机器人语音叫应
|
||||||
|
*
|
||||||
* @param deliveryRecord 文书送达记录
|
* @param deliveryRecord 文书送达记录
|
||||||
* @param user 用户信息
|
* @param user 用户信息
|
||||||
* @return ok
|
* @return ok
|
||||||
|
|
|
||||||
|
|
@ -85,6 +85,7 @@ public class OfficerScheduleService {
|
||||||
log.error("执法人员API令牌IDNO (third-party.enterprise.idno) 未配置。");
|
log.error("执法人员API令牌IDNO (third-party.enterprise.idno) 未配置。");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (thirdPartyProperties.getPerson().getRoles() == null || thirdPartyProperties.getPerson().getRoles().isEmpty()) {
|
if (thirdPartyProperties.getPerson().getRoles() == null || thirdPartyProperties.getPerson().getRoles().isEmpty()) {
|
||||||
log.error("执法人员角色列表 (third-party.person.roles) 未配置。");
|
log.error("执法人员角色列表 (third-party.person.roles) 未配置。");
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
|
|
@ -24,10 +24,8 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
@ActiveProfiles("dev")
|
@ActiveProfiles("dev")
|
||||||
@DisplayName("执法人员信息同步服务集成测试")
|
@DisplayName("执法人员信息同步服务集成测试")
|
||||||
class OfficerScheduleServiceTest {
|
class OfficerScheduleServiceTest {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private OfficerScheduleService officerScheduleService;
|
private OfficerScheduleService officerScheduleService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private OfficerRepository officerRepository;
|
private OfficerRepository officerRepository;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue