Question: Item Comments Can T Be Recorded

Item Comments Can T Be Recorded

Hello, products/item Comments in pos screen can't be recorded in list sales POS details ,nor added to invoice/receipt details . I need it to describe and differ sold items. "You can add com

MB

Mehdi boudhir

Asked
Hello,
products/item Comments in pos screen can't be recorded in list sales POS details ,nor added to invoice/receipt details .
I need it to describe and differ sold items.
"You can add comment to each item as you can see a comment icon after the item name when you add item in POS screen. You can add payment note too on payment screen".
Regards
  • MS

    Mian Saleem

    Answered
    Hello,

    The item comments are for order purpose and only displayed on order/bill print. However those are saved in the `sma_sale_items` table. If you need to display them on receipt, you will need to edit the `themes/default/admin/views/pos/view.php` and add `$row->comment` in `foreach ($rows as $row) {` block something like below after line 161

    ```
    if (!empty($row->comment)) {
    echo '<tr><td colspan="2" class="no-border">' . $row->comment . '</td></tr>';
    }
    ```

    Thank you
  • MB

    Mehdi boudhir

    Answered
    thank you ,I'll try it
  • Login to Reply