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 647-653 tables: Link Here
647
          message_transport_type: email
647
          message_transport_type: email
648
          lang: default
648
          lang: default
649
          content:
649
          content:
650
            - "<<borrowers.firstname>> <<borrowers.surname>> has added a note to the item <<biblio.title>> - <<biblio.author>> (<<biblio.biblionumber>>)."
650
            - "[% borrower.firstname %] [% borrower.surname %] has added a note to the item [% biblio.title %] by [% biblio.author %] ([% item.barcode %]):"
651
            - "[% checkout.note %]"
651
652
652
        - module: circulation
653
        - module: circulation
653
          code: DUE
654
          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