20250507 更新

master
陈江保 18 hours ago
parent c91123c0d0
commit d478ab71ff
  1. 3
      src/main/java/digital/laboratory/platform/identifybook/service/impl/PushDataToLabsCareServiceImpl.java

@ -35,6 +35,7 @@ import javax.annotation.Resource;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.*;
import java.util.stream.Collectors;
@ -248,7 +249,7 @@ public class PushDataToLabsCareServiceImpl implements PushDataToLabsCareService
jsonObject.set("jyyr2qm", entrustmentDTO.getAppraisalUserName()); // 检测人
jsonObject.set("jyy1zc", NULL_PLACEHOLDER); // 检验人1专业技术资格或职称
jsonObject.set("jyy2zc", NULL_PLACEHOLDER); // 检验人2专业技术资格或职称
jsonObject.set("qfrq", sdf.format(identifyBookApprove.getApproveTime()));
jsonObject.set("qfrq", sdf.format(LocalDate.now()));
jsonObject.set("qrcode", NULL_PLACEHOLDER); // 二维码地址
jsonObject.set("sjr1List", CollUtil.newArrayList(entrustInfo.getDeliver1Name(), entrustInfo.getDeliver2Name())); // 送检人
jsonObject.set("slrq", entrustInfo.getAcceptDate().format(DateTimeFormatter.ofPattern("yyyy年MM月dd日")));

Loading…
Cancel
Save