Skip to content

Commit

Permalink
Merge pull request #1196 from bcgov/test-marshal-AH-FOIMOD-3246
Browse files Browse the repository at this point in the history
Ticket 2646/3246 - Release 11.0 / Consults Observation Fixes
  • Loading branch information
Aman-Hundal authored Oct 29, 2024
2 parents de3abac + 2eaecbf commit 3b93f34
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class redlineresponsenotificationmessage(object):
def __init__(self, ministryrequestid, serviceid, errorflag, createdby,feeoverridereason) -> None:
def __init__(self, ministryrequestid, serviceid, errorflag, createdby,feeoverridereason="") -> None:
self.ministryrequestid = ministryrequestid
self.serviceid = serviceid
self.errorflag = errorflag
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class zipperproducermessage(object):
def __init__(self,jobid,requestid,category,requestnumber,bcgovcode,createdby,ministryrequestid,filestozip,finaloutput,attributes,feeoverridereason,summarydocuments=None,redactionlayerid=None,foldername=None) -> None:
def __init__(self,jobid,requestid,category,requestnumber,bcgovcode,createdby,ministryrequestid,filestozip,finaloutput,attributes,feeoverridereason=None,summarydocuments=None,redactionlayerid=None,foldername=None) -> None:
self.jobid = jobid
self.requestid = requestid
self.category=category
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/FOI/Home/ConfirmationModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export const ConfirmationModal= ({
checked={consultApplyRedlines}
onChange={handleApplyRedlines}
/>
<label for="applyredline-checkbox">Include Redlines</label>
<label for="applyredline-checkbox">Include Transparent Redactions (Redlines)</label>
<br/>
<input
type="checkbox"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1765,7 +1765,7 @@ const stampPageNumberRedline = async (
toast.update(toastId.current, {
render:
isSingleRedlinePackage == "N"
? `Saving redline PDF for ${divisionCountForToast} divisions to Object Storage...`
? `Saving redline PDF for ${divisionCountForToast} ${redlineCategory === "consult" ? "consultees" : "divisions"} to Object Storage...`
: `Saving redline PDF to Object Storage...`,
isLoading: true,
autoClose: 5000,
Expand Down

0 comments on commit 3b93f34

Please sign in to comment.