case
when round(product_uom.factor) > 1 then stock_move.product_qty
when round(product_uom.factor) < 1 then stock_move.product_qty / product_uom.factor
else stock_move.product_qty * (select round( max(factor) ) from product_uom uom2
where uom2.category_id = product_uom.category_id)
end as max_factor
ต้องการให้แสดงเป็นแต่ละเดือนด้วย Code
case date_part('month',stock_picking.date_done)
when 1 then product_qty
else 0
end as january