AA
Asked
Hello,
In product details, Transfers tab is empty. also sma_transfer_items table has no entries although there are many transfers done already and recorded in sma_transfers
I also found out that transfers are recorded in sma_purchase_items table
Any idea why? I usually record purchases to main warehouse first then transfer to the shop with status of the transfer set to “Completed” when created.
Thanks
- AAAnswered
Found the fix
in app\controllers\admin\reports.php around line 2573
Change
->from('transfer_items') ->join('transfers', 'transfer_items.transfer_id=transfers.id', 'left')
To
->from('transfers') ->join('transfer_items', 'transfer_items.transfer_id=transfers.id', 'left')
Already fixed in version 3.50
- MSAnswered
I am glad that you have fixed it and thank you for updating
- Login to Reply