Fix receiving_quantity error in receivings page

This commit is contained in:
jekkos-t520
2014-11-26 08:17:43 +01:00
parent 99a804c1ac
commit b311eca62e
4 changed files with 8 additions and 7 deletions

View File

@@ -179,7 +179,8 @@ class Receiving_lib
'quantity'=>$quantity,
'discount'=>$discount,
'in_stock'=>$this->CI->Item_quantities->get_item_quantity($item_id, $item_location)->quantity,
'price'=>$price!=null ? $price: $item_info->cost_price
'price'=>$price!=null ? $price: $item_info->cost_price,
'receiving_quantity'=>$item_info->receiving_quantity
)
);