|
@@ -182,7 +182,11 @@ const JpcJsPDFHelper = {
|
|
|
private_drawSignatureCellText(doc, ctx, cell, controls, signatureRelArr, pageIdx);
|
|
|
} else {
|
|
|
for (const signRel of signatureRelArr) {
|
|
|
- if (cell.signature_name === signRel.signature_name && rptSignatureHelper._chkIfAudit(signRel)) {
|
|
|
+ let tmpRole = signRel;
|
|
|
+ if (signRel.type === '流程') {
|
|
|
+ tmpRole = signRel.assFlowInfos[signRel.flowAccList[pageIdx]];
|
|
|
+ }
|
|
|
+ if (cell.signature_name === signRel.signature_name && rptSignatureHelper._chkIfAudit(tmpRole)) {
|
|
|
private_drawSignatureCellText(doc, ctx, cell, controls, signatureRelArr, pageIdx);
|
|
|
}
|
|
|
}
|