From: Galen Charlton Date: Thu, 3 Jan 2008 18:36:24 +0000 (-0600) Subject: item rework: POD and comments improvement X-Git-Tag: v3.00.00-alpha~87 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=8f377faa761902a40b7e3dee4fb20830ea1c8ef1;p=koha.git item rework: POD and comments improvement Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- diff --git a/C4/Items.pm b/C4/Items.pm index d084a5c2fa..651dad08eb 100644 --- a/C4/Items.pm +++ b/C4/Items.pm @@ -195,6 +195,17 @@ sub AddItem { =head2 ModItemFromMarc +=over 4 + +ModItemFromMarc($item_marc, $biblionumber, $itemnumber); + +=back + +This function updates an item record based on a supplied +C object containing an embedded item field. +This API is meant for the use of C; for +other purposes, C should be used. + =cut sub ModItemFromMarc { @@ -211,6 +222,24 @@ sub ModItemFromMarc { =head2 ModItem +=over 4 + +ModItem({ column => $newvalue }, $biblionumber, $itemnumber); + +=back + +Change one or more columns in an item record and update +the MARC representation of the item. + +The first argument is a hashref mapping from item column +names to the new values. The second and third arguments +are the biblionumber and itemnumber, respectively. + +If one of the changed columns is used to calculate +the derived value of a column such as C, +this routine will perform the necessary calculation +and set the value. + =cut sub ModItem { @@ -230,6 +259,11 @@ sub ModItem { _set_derived_columns_for_mod($item); _do_column_fixes_for_mod($item); # FIXME add checks + # duplicate barcode + # attempt to change itemnumber + # attempt to change biblionumber (if we want + # an API to relink an item to a different bib, + # it should be a separate function) # update items table _koha_modify_item($dbh, $item); @@ -245,6 +279,15 @@ sub ModItem { =head2 ModItemTransfer +=over 4 + +ModItemTransfer($itenumber, $frombranch, $tobranch); + +=back + +Marks an item as being transferred from one branch +to another. + =cut sub ModItemTransfer { @@ -592,6 +635,8 @@ my ($itemnumber,$error) = _koha_new_item( $dbh, $item, $barcode ); =back +Perform the actual insert into the C table. + =cut sub _koha_new_item { @@ -682,6 +727,9 @@ my ($itemnumber,$error) =_koha_modify_item( $dbh, $item, $op ); =back +Perform the actual update of the C row. Note that this +routine accepts a hashref specifying the columns to update. + =cut sub _koha_modify_item {