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

(-)a/Koha/Item.pm (-2 lines)
Lines 183-189 sub store { Link Here
183
            and $pre_mod_item->itemlost > 0 )
183
            and $pre_mod_item->itemlost > 0 )
184
        {
184
        {
185
            $self->_set_found_trigger($pre_mod_item);
185
            $self->_set_found_trigger($pre_mod_item);
186
            $self->paidfor('');
187
        }
186
        }
188
187
189
        logaction( "CATALOGUING", "MODIFY", $self->itemnumber, "item " . Dumper($self->unblessed) )
188
        logaction( "CATALOGUING", "MODIFY", $self->itemnumber, "item " . Dumper($self->unblessed) )
Lines 934-940 sub to_api_mapping { Link Here
934
        itemnotes                => 'public_notes',
933
        itemnotes                => 'public_notes',
935
        itemnotes_nonpublic      => 'internal_notes',
934
        itemnotes_nonpublic      => 'internal_notes',
936
        holdingbranch            => 'holding_library_id',
935
        holdingbranch            => 'holding_library_id',
937
        paidfor                  => undef,
938
        timestamp                => 'timestamp',
936
        timestamp                => 'timestamp',
939
        location                 => 'location',
937
        location                 => 'location',
940
        permanent_location       => 'permanent_location',
938
        permanent_location       => 'permanent_location',
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/items.json (-2 lines)
Lines 28-34 Link Here
28
    "itemnotes": "itemnotes",
28
    "itemnotes": "itemnotes",
29
    "itemnotes_nonpublic": "itemnotes_nonpublic",
29
    "itemnotes_nonpublic": "itemnotes_nonpublic",
30
    "holdingbranch": "holdingbranch",
30
    "holdingbranch": "holdingbranch",
31
    "paidfor": "paidfor",
32
    "timestamp": "timestamp",
31
    "timestamp": "timestamp",
33
    "location": "location",
32
    "location": "location",
34
    "permanent_location": "permanent_location",
33
    "permanent_location": "permanent_location",
35
- 

Return to bug 26268