# -*-encoding: iso8859-1 -*- ############################################################################## # # Copyright (c) 2005-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # # WARNING: This program as such is intended to be used by professional # programmers who take the whole responsability of assessing all potential # consequences resulting from its eventual inadequacies and bugs # End users who are looking for a ready-to-use solution with commercial # garantees and support are strongly adviced to contract a Free Software # Service Company # # This program is Free Software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## import ir import pooler from report.interface import report_rml from report.interface import toxml #FIXME: we should use toxml class report_custom(report_rml): def create_xml(self, cr, uid, ids, datas, context={}): number = (datas.get('form', False) and datas['form']['number']) or 1 def process_bom(bom, currency_id): xml = '' sum = 0 sum_strd = 0 prod = pooler.get_pool(cr.dbname).get('product.product').browse(cr, uid, bom['product_id']) prod_name = bom['name'] prod_qtty = bom['product_qty'] prod_uom = prod.uom_id.name level = 1 main_sp_price = '' main_sp_name = '' main_strd_price = '' main_strd_price = '' if prod.seller_ids and prod.seller_ids[0] : main_sp_name = '' + prod.seller_ids[0].name.name + '\r\n' pricelist = prod.seller_ids[0].name.property_product_pricelist_purchase if pricelist: pricelist_id = pricelist[0] pricelist_obj = pooler.get_pool(cr.dbname).get('product.pricelist') price = pricelist_obj.price_get(cr,uid,[pricelist_id], prod.id, number*prod_qtty or 1.0).setdefault(pricelist_id, 0) price = pooler.get_pool(cr.dbname).get('res.currency').compute(cr, uid, pricelist_obj.browse(cr, uid, pricelist_id).currency_id.id, currency_id, price) else: price = 0 main_sp_price = '%.2f' % price + '\r\n' sum += prod_qtty*price main_strd_price = '%.2f' % prod.standard_price + '\r\n' sum_strd = prod_qtty*prod.standard_price sellers = '' sellers_price = '' for seller_id in prod.seller_ids: sellers += '- '+ seller_id.name.name +'\r\n' pricelist = seller_id.name.property_product_pricelist_purchase if pricelist: pricelist_id = pricelist[0] pricelist_obj = pooler.get_pool(cr.dbname).get('product.pricelist') price = pricelist_obj.price_get(cr,uid,[pricelist_id], prod.id, number*prod_qtty or 1.0).setdefault(pricelist_id, 0) price = pooler.get_pool(cr.dbname).get('res.currency').compute(cr, uid, pricelist_obj.browse(cr, uid, pricelist_id).currency_id.id, currency_id, price) else: price = 0 sellers_price += '%.2f' % price + '\r\n' xml += "" + prod_name + '' xml += "" + main_sp_name + sellers + '' xml += "" + str(prod_qtty) + '' xml += "" + prod_uom + '' xml += "" + main_strd_price + '' xml += "" + main_sp_price + sellers_price + '' xml += '' return xml, sum, sum_strd def process_workcenter(wrk): xml = '' workcenter = pooler.get_pool(cr.dbname).get('mrp.workcenter').browse(cr, uid, wrk['workcenter_id']) xml += "" + wrk['name'] + '' xml += "" + '' xml += "" + '' xml += "" xml += "" + str(wrk['cycle']*workcenter.costs_cycle) + '' xml += "" + str(wrk['hour']*workcenter.costs_hour) + '' xml += '' return xml, wrk['cycle']*workcenter.costs_cycle+wrk['hour']*workcenter.costs_hour xml = '' config_start = """ 09/09/2005 210.00mm,297.00mm 595.27 841.88 60.00mm,60.00mm, 20.00mm, 20.00mm, 20.00mm, 20.00mm """ config_stop = """ Generated by Tiny ERP """ header = """
Product name Product supplier Product quantity Product uom Product Standard Price Unit Product Price
""" workcenter_header = """ Workcenter name Cycles Cost Hours Cost """ prod_header = """ Product name Product supplier Product Quantity Product uom Product Standard Price Unit Product Price """ company_currency = pooler.get_pool(cr.dbname).get('res.users').browse(cr, uid, uid).company_id.currency_id.id first = True for prod_id in ids: bom_ids = pooler.get_pool(cr.dbname).get('mrp.bom').search(cr, uid, [('product_id','=',prod_id)]) prod = pooler.get_pool(cr.dbname).get('product.product').browse(cr, uid, prod_id) for bom_id in bom_ids: bom = pooler.get_pool(cr.dbname).get('mrp.bom').browse(cr, uid, bom_id) sub_boms = pooler.get_pool(cr.dbname).get('mrp.bom')._bom_explode(cr, uid, bom, number, []) total = 0 total_strd = 0 parent_bom = {'product_qty': bom.product_qty, 'name': bom.product_id.name, 'product_uom': bom.product_id.uom_id.factor, 'product_id': bom.product_id.id} xml_tmp = '' for sub_bom in (sub_boms and sub_boms[0]) or [parent_bom]: txt, sum, sum_strd = process_bom(sub_bom, company_currency) xml_tmp += txt total += sum total_strd += sum_strd if not first: xml += prod_header xml += "" + xml_tmp + '' xml += "SUBTOTAL : (for " + str(number) + " products)" + '%.2f' % total_strd + '' + '%.2f' % total + '' total2 = 0 xml_tmp = '' for wrk in (sub_boms and sub_boms[1]): txt, sum = process_workcenter(wrk) xml_tmp += txt total2 += sum if xml_tmp: xml += workcenter_header xml += "" + xml_tmp + '' xml += "SUBTOTAL : (for " + str(number) + " products)" + '%.2f' % total2 + '' xml += "TOTAL : (for " + str(number) + " products)" + '%.2f' % (total_strd+total2) + "" + '%.2f' % (total+total2) + '' first = False xml = '' + config_start + 'Product Cost Structure\n\r' + prod.name + ''+ config_stop + header + xml + '' return xml report_custom('report.product.price', 'product.product', '', 'addons/mrp/report/price.xsl')