@gct-paas/word 0.1.47-beta.10 → 0.1.47-beta.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +1 -1
- package/dist/word.css +216 -24
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -54530,7 +54530,7 @@ class DocRequestStrategy {
|
|
|
54530
54530
|
);
|
|
54531
54531
|
} else if (docInfo.formType === FormTypeConst.PROCESS) {
|
|
54532
54532
|
const { nodeDef = {} } = docInfo.ofProcessOperations ?? {};
|
|
54533
|
-
bpmnType = docInfo.instanceStatus === "ABANDON" ? "bpmnEnd" : nodeDef.type ?? "bpmnEnd";
|
|
54533
|
+
bpmnType = docInfo.instanceStatus === "ABANDON" || docInfo.instanceStatus === "IN_AUDIT" ? "bpmnEnd" : nodeDef.type ?? "bpmnEnd";
|
|
54534
54534
|
fillModeType = bpmnType === "bpmnEnd" ? DocModeTypeConst.Print : DocModeTypeConst.Fill;
|
|
54535
54535
|
btnModelType = fillModeType;
|
|
54536
54536
|
bpmnFieldAuthMap = getBpmnFieldAuthMap(
|