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

(-)a/admin/marc_order_accounts.pl (+1 lines)
Lines 81-86 if ( $op eq 'acct_form' ) { Link Here
81
            encoding           => scalar $input->param('encoding') || 'UTF-8',
81
            encoding           => scalar $input->param('encoding') || 'UTF-8',
82
            match_field        => scalar $input->param('match_field'),
82
            match_field        => scalar $input->param('match_field'),
83
            match_value        => scalar $input->param('match_value'),
83
            match_value        => scalar $input->param('match_value'),
84
            basket_name_field  => scalar $input->param('basket_name_field'),
84
        };
85
        };
85
86
86
        if ( scalar $input->param('id') ) {
87
        if ( scalar $input->param('id') ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_order_accounts.tt (-1 / +6 lines)
Lines 134-139 Link Here
134
                        <input type="text" name="match_value" id="match_value" size="20" value="[% account.match_value | html %]" />
134
                        <input type="text" name="match_value" id="match_value" size="20" value="[% account.match_value | html %]" />
135
                        <div class="hint">(Optional): This is the value that will be checked against the match field to see if the file matches this account. If it does it will be processed by this account, if not it will be skipped.</div>
135
                        <div class="hint">(Optional): This is the value that will be checked against the match field to see if the file matches this account. If it does it will be processed by this account, if not it will be skipped.</div>
136
                    </li>
136
                    </li>
137
                    <li>
138
                        <label for="basket_name_field">Basket name field: </label>
139
                        <input type="text" name="basket_name_field" id="basket_name_field" size="20" value="[% account.basket_name_field | html %]" />
140
                        <div class="hint">(Optional): If you want the basket name to be dynamic based on a value in the MARC file, you can set a field here that will be read on import and used for the basket name.</div>
141
                        <div class="hint">The format for this field is the same as MARCFieldsToOrder - the field and the subfield separated by a dollar sign e.g. 245$a</div>
142
                    </li>
137
                </ol>
143
                </ol>
138
            </fieldset>
144
            </fieldset>
139
            <fieldset class="rows">
145
            <fieldset class="rows">
140
- 

Return to bug 39518