X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=doc%2Fapi_changes.txt;h=cab0d50b45517f125df1941fcf83cd3a53a5e639;hb=da7df35c61205d0b1af47d286be591b8a3194b0c;hp=6839ed30f7d239a7d667baacf0994463edcc3efd;hpb=8c8a0c2edc1de65820507e7129bcb340209e6164;p=fa-stable.git diff --git a/doc/api_changes.txt b/doc/api_changes.txt index 6839ed30..cab0d50b 100644 --- a/doc/api_changes.txt +++ b/doc/api_changes.txt @@ -1,6 +1,6 @@ Changes in framework API introduced in FrontAccounting 2.4 ---------------------------------------------------------- -The list does not contain changes made in user interface files. +The list does not contain changes made in user interface files or local functions. Changed functions: company_db_inc: @@ -18,6 +18,10 @@ Changed functions: add_stock_move($type, $stock_id, $trans_no, $location, $date_, $reference, $quantity, $std_cost, $person_id=0, $price=0) sales_db.inc: add_stock_move_customer() removed + items_transfer_db.inc: + add_stock_transfer($Items, $location_from, $location_to, $date_, $reference, $memo_) + items_adjust_db.inc: + add_stock_adjustment($items, $location, $date_, $reference, $memo_) Before 2.4: get_tax_type_default_rate($type_id) @@ -98,3 +102,17 @@ Now: None Description: Obsolete and removed. + +Before 2.4: + add_stock_transfer($Items, $location_from, $location_to, $date_, $type, $reference, $memo_) +Now: + add_stock_transfer($Items, $location_from, $location_to, $date_, $reference, $memo_) +Description: + Removed obsolete $type argument. + +Before 2.4: + add_stock_adjustment($items, $location, $date_, $type, $increase, $reference, $memo_) +Now: + add_stock_adjustment($items, $location, $date_, $reference, $memo_) +Description: + Removed obsolete $type and $increase arguments.