تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1730 أدوات العرض

hi all,

how can i show parent category level 1(the highest category in the tree)
in pos report sales , knowing that I added an integer field called level in product.category
We are talking about item categories and not POS item categories

pos_daily_sale.py: 


orders_this_day = [order for order in orders if
order.date_order.date() == dt.datetime.strptime(date_report, "%Y-%m-%d").date()]
orders_line_this_day = [line for pos_order in orders_this_day for line in pos_order.lines]
categorie_ids = set([line.product_id.categ_id for line in orders_line_this_year if line.product_id.categ_id])

categories = [
{
'name': categ.name,
'qty': int(sum([line.qty for line in orders_line_this_day if line.product_id.categ_id.id == categ.id])),
'amount': sum([line.price_subtotal_incl for line in orders_line_this_day if
line.product_id.categ_id.id == categ.id]),
}
for categ in categorie_ids
]



الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
1
يوليو 25
1192
2
أغسطس 24
1752
1
يوليو 24
2989
2
ديسمبر 23
3145
1
أكتوبر 23
7610