I am looking for to print Item_ID Item_Code, but can not find for the manufactured item, I have tried
in doctext.inc file and found only Item's description in array $aux_info as _("Manufactured Item") => $this->formData["StockItemName"].
But I need to print Stock_Item_Code instead of description.
Cany somebody help to resolve the issue.
1 11/26/2022 06:41:08 pm
Topic: Item Code of Manufacturing Item in WorkOrder (1 replies, posted in Manufacturing)
2 11/25/2022 03:31:41 pm
Re: Sale Order Entry- Quantity becomes Zero after 1st Time Add Item 2.4.14 (5 replies, posted in Report Bugs here)
Thanks for the Time, please review the code.
3 11/25/2022 03:27:47 pm
Topic: Sale Order Entry- Quantity becomes Zero after 1st Time Add Item 2.4.14 (5 replies, posted in Report Bugs here)
Hi All,
I just installed latest FA version it has been working fine but only one problem was that when I input quantity on Sales order, Direct Delivery or direct Invoice after pressing Add Item, input quantity turns 0 and I was getting the Total 0.
however I endeavored to find the issue and found that on line# 90
add_item_code($stock_id, $stock_id, $description, $category_id, 1, 0); of file items_db.inc which is residing in
\inventory\includes\db
requiring $stock_id twice which causing problem to find the item to add in cart line for code on lines 64-65
$order->add_to_cart (count($order->line_items),$item['stock_id'],
$new_item_qty*$item['quantity'], $item_price, $discount, 0,0, $description); of file sales_order_ui.inc residing in folder
..\sales\includes\ui\sales_order_ui.inc.
I just removed duplicate $stock_id from add_item_code($stock_id, $stock_id, $description, $category_id, 1, 0); of file items_db.inc and everything seems working fine so far.
Is it OK or there should be something else which I am missing.