View | Details | Raw Unified | Return to bug 36112
Collapse All | Expand All

(-)a/installer/data/mysql/en/mandatory/sample_notices.yml (-1 / +2 lines)
Lines 697-703 tables: Link Here
697
          message_transport_type: email
697
          message_transport_type: email
698
          lang: default
698
          lang: default
699
          content:
699
          content:
700
            - "<<borrowers.firstname>> <<borrowers.surname>> has added a note to the item <<biblio.title>> - <<biblio.author>> (<<biblio.biblionumber>>)."
700
            - "[% borrower.firstname %] [% borrower.surname %] has added a note to the item [% biblio.title %] by [% biblio.author %] ([% item.barcode %]):"
701
            - "[% checkout.note %]"
701
702
702
        - module: circulation
703
        - module: circulation
703
          code: DUE
704
          code: DUE
(-)a/opac/opac-issue-note.pl (-1 / +3 lines)
Lines 81-88 if ( $op eq 'cud-issuenote' && C4::Context->preference('AllowCheckoutNotes') && Link Here
81
                branchcode => $branch,
81
                branchcode => $branch,
82
                lang => $patron->lang,
82
                lang => $patron->lang,
83
                tables => {
83
                tables => {
84
                    'biblio' => $biblio->biblionumber,
84
                    'biblio'    => $biblio->biblionumber,
85
                    'borrowers' => $borrowernumber,
85
                    'borrowers' => $borrowernumber,
86
                    'issues'    => $issue->itemnumber,
87
                    'items'     => $issue->itemnumber,
86
                },
88
                },
87
            );
89
            );
88
90
(-)a/opac/svc/checkout_notes (-3 / +3 lines)
Lines 85-93 if ($is_ajax) { Link Here
85
                    letter_code => 'CHECKOUT_NOTE',
85
                    letter_code => 'CHECKOUT_NOTE',
86
                    branchcode => $branch,
86
                    branchcode => $branch,
87
                    tables => {
87
                    tables => {
88
                        'biblio' => $biblionumber,
88
                        'biblio'    => $biblionumber,
89
                        'borrowers' => $borrowernumber,
89
                        'borrowers' => $borrowernumber,
90
                        'issues' => $issue->itemnumber,
90
                        'issues'    => $issue->itemnumber,
91
                        'items'     => $issue->itemnumber,
91
                    },
92
                    },
92
                );
93
                );
93
94
94
- 

Return to bug 36112