From 9b38e59bd136bd69536994ff67949791b83bc420 Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Fri, 23 Nov 2012 10:03:37 -0500 Subject: [PATCH] [FIX] Remove useless file. --- mail_quotation/__init__.py | 1 - mail_quotation/sale.py | 33 --------------------------------- 2 files changed, 34 deletions(-) delete mode 100644 mail_quotation/sale.py diff --git a/mail_quotation/__init__.py b/mail_quotation/__init__.py index c4ae34cb641..5dcefef281c 100644 --- a/mail_quotation/__init__.py +++ b/mail_quotation/__init__.py @@ -19,4 +19,3 @@ # ############################################################################## -import sale diff --git a/mail_quotation/sale.py b/mail_quotation/sale.py deleted file mode 100644 index 0efcdff75b5..00000000000 --- a/mail_quotation/sale.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012 Savoir-faire Linux (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################### - -from osv import fields, osv - -class sale_order(osv.osv): - _name = 'sale.order' - _inherit = 'sale.order' - - def edi_export(self, cr, uid, records, edi_struct=None, context=None): - return super(sale_order, self).edi_export(cr, uid, records, edi_struct, - context) - - -sale_order()