frappe / erpnext

Free and Open Source Enterprise Resource Planning (ERP)
https://erpnext.com
GNU General Public License v3.0
20.7k stars 7.12k forks source link

Option for Exporting Price List per Item Brand (Suggestion) #9007

Closed ai-erp closed 1 year ago

ai-erp commented 7 years ago

Hi There, I believe it is important to have option for exporting Item price List per brand in ERPNext. This is for the purpose of checking prices and updating it based on brand names. Most of the time, customers are asking for Price List of Items for a selected Brand. Right now, we can only export per Price List irregardless of the brand of the item.

jwrober commented 7 years ago

Why don't you just customize the item price form and add a read only lookup field of the brand on the item? Then you can add that field to the item list report and create filters on it.

ai-erp commented 7 years ago

Hi @jwrober , i have thought about customizing it, but i am afraid it might incur error upon updates. I have tried it in my test account but it is not fetching data of the brand. i am not sure if i am missing something on that. can you help?

itemprice-read only-brand

jwrober commented 7 years ago

I think you need brand.brand in options. Existing records don't get the data, only new ones do. You can edit existing records and at save the data will pull in.

javierwonghf commented 7 years ago

Perhaps you can explore creating a custom query report and putting the following query in. Also you can manually filter the brand by just typing into the filter section. Doubt its very useful for everyone so maybe a custom report will do..

SELECT DISTINCT
    `tabItem`.`brand`,
    `tabItem Price`.`price_list`

from `tabItem`

LEFT JOIN `tabItem Price`
    ON `tabItem Price`.`item_code` = `tabItem`.`name`

WHERE `tabItem Price`.`price_list` <> '' AND
    `tabItem`.`brand` <> ''
dj12djdjs commented 1 year ago

Closing, It is possible to export price list based on brand criteria.