ny
22 小时以前 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<script lang="ts" setup>
import { computed, nextTick, reactive, unref } from 'vue';
import { hiprint } from 'vue-plugin-hiprint';
 
import { useGlobSetting, useMessage } from '@jnpf/hooks';
 
import { useUserStore } from '@vben/stores';
 
import { Spin } from 'ant-design-vue';
import dayjs from 'dayjs';
import $ from 'jquery';
 
import { getBatchData } from '#/api/system/printDev';
import { uploadBlob } from '#/api/teamwork/document';
import { useFlowState } from '#/hooks/flow/useFlowStatus';
import { getAuthMediaUrl } from '#/utils/jnpf';
 
interface State {
  id: string;
  opType: string;
  hiprintTemplate: any;
  dataList: any[];
  systemInfo: any;
  showFileLoading: boolean;
  formInfo: any[];
}
 
const emit = defineEmits(['fileEnd']);
defineExpose({ init });
const state = reactive<State>({
  id: '',
  opType: '',
  hiprintTemplate: undefined,
  dataList: [],
  systemInfo: {
    printer: '',
    printTime: '',
  },
  showFileLoading: false,
  formInfo: [],
});
const userStore = useUserStore();
const { createMessage } = useMessage();
const { getFlowStateContent } = useFlowState();
const globSetting = useGlobSetting();
 
const getUserInfo: any = computed(() => userStore.getUserInfo || {});
 
/**
 * 初始化
 * @param data
 */
function init(data) {
  state.id = data.id || '';
  state.formInfo = data.formInfo || [];
  state.opType = data.opType;
  if (!state.id || !state.formInfo.length) return fileEnd();
  state.showFileLoading = true;
  nextTick(() => getInfo());
}
async function getInfo() {
  $('#previewDesignedWrap').html(null);
  const { data: resData } = (await getBatchData({ id: state.id, formInfo: state.formInfo })) || {};
  if (!resData) return fileEnd();
  getSystemInfo();
  const printDataArr = resData?.map((item, index) => {
    let { printData, printTemplate, operatorRecordList = [], convertConfig = '' } = item || {};
    try {
      const targetTpl = JSON.parse(printTemplate);
      if (index === 0) {
        state.hiprintTemplate = new hiprint.PrintTemplate({ template: targetTpl });
      }
      if (convertConfig) printData = handleConvert(printData, convertConfig);
      printData.operatorRecordList = operatorRecordList.map((o) => ({
        ...o,
        handleTime: dayjs(o.handleTime).format('YYYY-MM-DD HH:mm:ss'),
        handleStatus: getFlowStateContent(o.handleStatus),
      }));
      printData.systemInfo = state.systemInfo;
      return printData;
    } catch {
      $('#previewDesignedWrap').append('<div class="print-single-wrap"><div class="tpl-invalid">模板已失效,请重新设计</div></div>');
      return null;
    }
  });
  if (!state.hiprintTemplate) return fileEnd();
  state.dataList = [...printDataArr];
  initHinnn();
  const tplHtml = state.hiprintTemplate?.getHtml(state.dataList);
  $('#previewDesignedWrap').html(tplHtml);
  handleUpload();
}
// 上传文件
function handleUpload() {
  if (!state.hiprintTemplate || !state.dataList?.length) return fileEnd();
  state.hiprintTemplate
    ?.toPdf(state.dataList, `${state.id}_${dayjs().format('YYYYMMDDHHmmss')}`, { isDownload: false })
    .then((res) => {
      const form = new FormData();
      form.append('file', res);
      form.append('taskId', state.formInfo[0].flowTaskId);
      uploadBlob(form)
        .then(() => {
          fileEnd('归档成功!');
        })
        .catch(() => {
          fileEnd();
        });
    })
    .catch(() => {
      fileEnd();
    });
}
function handleConvert(data, convertConfig) {
  const convertConfigList = JSON.parse(convertConfig);
  for (const e of convertConfigList) {
    if (e.type !== 'singleImg') continue;
    const table = e.field.split('.')[0];
    const field = e.field.split('.')[1];
    if (!Reflect.has(data, table)) continue;
    for (let j = 0; j < data[table].length; j++) {
      if (Reflect.has(data[table][j], field) && data[table][j][field]) {
        // 图片加前缀
        data[table][j][field] = getImgUrl(data[table][j][field]);
      }
    }
  }
  return data;
}
// 获取系统信息
function getSystemInfo() {
  const systemPrinter = `${unref(getUserInfo)?.userName}/${unref(getUserInfo)?.userAccount}`;
  const systemPrintTime = dayjs(Date.now()).format('YYYY-MM-DD HH:mm:ss');
  state.systemInfo.printer = systemPrinter;
  state.systemInfo.printTime = systemPrintTime;
}
function getImgUrl(url) {
  return getAuthMediaUrl(url, false);
}
// 重写hinnn
function initHinnn() {
  if (!(window as any).hinnn) return;
  (window as any).hinnn.apiUrl = globSetting.apiURL;
  (window as any).hinnn.getAuthMediaUrl = getImgUrl;
  (window as any).hinnn.dateFormat = function (date, format) {
    if (!date) return '';
    if (!Number.isNaN(date) && typeof date === 'string') date = Number(date);
    format = format.replaceAll('y', 'Y').replaceAll('d', 'D');
    return dayjs(date).format(format);
  };
}
function fileEnd(mes?) {
  state.showFileLoading = false;
  if (mes) {
    emit('fileEnd');
    createMessage.success(mes);
    return;
  }
  emit('fileEnd');
  createMessage.error(state.opType == '6' ? '归档失败!' : '归档失败,请联系管理员在流程监控中手动归档!');
}
</script>
 
<template>
  <div class="flow-file" v-if="state.showFileLoading">
    <Spin tip="正在归档..." />
    <div id="previewDesignedWrap" v-show="false"></div>
  </div>
</template>