diff --git a/ext/custom-addons/dp_max_width/__init__.py b/ext/custom-addons/dp_max_width/__init__.py
deleted file mode 100755
index 487b990e..00000000
--- a/ext/custom-addons/dp_max_width/__init__.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    datenpol gmbh
-#    Copyright (C) 2013-TODAY datenpol gmbh (
-    
-        
-            
-                 
-         
-     
- 
diff --git a/ext/custom-addons/dp_report/views/delivery.xml b/ext/custom-addons/dp_report/views/delivery.xml
deleted file mode 100644
index 90d9385c..00000000
--- a/ext/custom-addons/dp_report/views/delivery.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-    
-            
-                stock.external_layout_header_barcode_right 
-             
-     
-
-    
-    
-        
-            
-                LIEFERSCHEIN  
-         
-        
-            
-                
-                    
-                        Scheduled Date Weight  
-                 
-                
-                    
-                        
-                             
-                        
-                             
-                     
-                 
-            
-        
-        
-            
-                
-                    Product Location Quantity  
-             
-         
-        
-            
-                
-                    Product Serial Number Location Quantity  
-             
-         
-         
-
-    
-    
-        
-             
-     
-
-    
-    
-        
-             
-     
-
-    
-     
- 
diff --git a/ext/custom-addons/dp_report/views/invoice.xml b/ext/custom-addons/dp_report/views/invoice.xml
deleted file mode 100644
index 700f6b01..00000000
--- a/ext/custom-addons/dp_report/views/invoice.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-    
-    
-        
-             Disc.(%) 
-        
-        
-             
-                 
-        
-        
-        
-        
-        
-            Description 
-         
-        
-        
-            
-                
-           
-    
-
-    
-    
-        
-            
-                 
-         
-     
-
-    
-    
-        
-            
-                 
-         
-     
-
-    
-    
-
-    
-        
-        
-             
-        
-             
-        
-             
-        
-             
-        
-             
-         
-
-    
-    
-
-    
-    
- 
- 
diff --git a/ext/custom-addons/dp_report/views/saleorder.xml b/ext/custom-addons/dp_report/views/saleorder.xml
deleted file mode 100644
index 95d12c95..00000000
--- a/ext/custom-addons/dp_report/views/saleorder.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-    
-    
-        
-             Disc.(%) 
-        
-        
-             
-                 
-        
-
-        
-            
-                Order #  
-                Quotation #  
-                 
-         
-
-        
-            display:none 
-         
-        
-            
-                
-                    
-                        
-                            Total Without Taxes 
-                                 
-                         
-                        
-                            Taxes 
-                            
-                                 
-                         
-                        
-                            Total 
-                                 
-                         
-                    
-                
-            
-        
 
-
-    
-    
-        
-            
-                 
-         
-     
-
-    
-    
-        
-            
-                 
-         
-     
-
-    
-     
- 
diff --git a/ext/custom-addons/dp_report/__init__.py b/ext/custom-addons/dp_reports/__init__.py
similarity index 100%
rename from ext/custom-addons/dp_report/__init__.py
rename to ext/custom-addons/dp_reports/__init__.py
diff --git a/ext/custom-addons/dp_report/__manifest__.py b/ext/custom-addons/dp_reports/__manifest__.py
similarity index 75%
rename from ext/custom-addons/dp_report/__manifest__.py
rename to ext/custom-addons/dp_reports/__manifest__.py
index c2879695..8a7565b3 100644
--- a/ext/custom-addons/dp_report/__manifest__.py
+++ b/ext/custom-addons/dp_reports/__manifest__.py
@@ -11,13 +11,11 @@
     'website': 'http://www.datenpol.at/',
     'depends': [
         'base',
+        'report'
     ],
     'data': [
-        # 'security/ir.model.access.csv',
-        'views/layouts.xml',
-        'views/saleorder.xml',
-        'views/invoice.xml',
-        'views/delivery.xml',
+        'data/paperformat.xml',
+        'reports/layouts.xml',
     ],
     # only loaded in demonstration mode
     'demo': [],
diff --git a/ext/custom-addons/dp_reports/data/paperformat.xml b/ext/custom-addons/dp_reports/data/paperformat.xml
new file mode 100644
index 00000000..f23cb430
--- /dev/null
+++ b/ext/custom-addons/dp_reports/data/paperformat.xml
@@ -0,0 +1,18 @@
+
+
+    
+        European A4 
+        A4 
+        0 
+        0 
+        Portrait 
+        55 
+        20 
+        10 
+        10 
+        40 
+        90 
+     
+ 
diff --git a/ext/custom-addons/dp_report/i18n/de.po b/ext/custom-addons/dp_reports/i18n/de.po
similarity index 100%
rename from ext/custom-addons/dp_report/i18n/de.po
rename to ext/custom-addons/dp_reports/i18n/de.po
diff --git a/ext/custom-addons/dp_report/models/__init__.py b/ext/custom-addons/dp_reports/models/__init__.py
similarity index 52%
rename from ext/custom-addons/dp_report/models/__init__.py
rename to ext/custom-addons/dp_reports/models/__init__.py
index 40a96afc..8daea8e4 100644
--- a/ext/custom-addons/dp_report/models/__init__.py
+++ b/ext/custom-addons/dp_reports/models/__init__.py
@@ -1 +1,3 @@
 # -*- coding: utf-8 -*-
+
+import report_helper
diff --git a/ext/custom-addons/dp_reports/models/report_helper.py b/ext/custom-addons/dp_reports/models/report_helper.py
new file mode 100644
index 00000000..2a1d04d5
--- /dev/null
+++ b/ext/custom-addons/dp_reports/models/report_helper.py
@@ -0,0 +1,51 @@
+from odoo import api, models
+from odoo.report import report_sxw
+
+
+class ReportHelper(report_sxw.rml_parse):
+
+    def __init__(self, cr, uid, name, context):
+        super(ReportHelper, self).__init__(cr, uid, name, context=context)
+        self.localcontext.update({
+            'field_set_in_lines': self._field_set_in_lines,
+            'formatLang': self._formatLang,
+        })
+
+    @api.model
+    def _field_set_in_lines(self, lines, field):
+        fields = field.split('.')
+        for line in lines:
+            temp = None
+            for idx, field in enumerate(fields):
+                if not temp and idx == 0:
+                    temp = line.__getattribute__(field)
+                elif not temp and idx != 0:
+                    return False
+                else:
+                    temp = temp.__getattribute__(field)
+            if not temp:
+                return False
+        return True
+
+    @api.model
+    def _formatLang(self, value, currency=True):
+        lang = self.partner_id.lang
+        lang_objs = self.env['res.lang'].search([('code', '=', lang)])
+        if not lang_objs:
+            lang_objs = self.env['res.lang'].search([], limit=1)
+        lang_obj = lang_objs[0]
+
+        res = lang_obj.format('%.' + str(2) + 'f', value, grouping=True, monetary=True)
+        currency_obj = self.currency_id
+
+        if currency_obj and currency_obj.symbol and currency:
+            if currency_obj.position == 'after':
+                res = '%s %s' % (res, currency_obj.symbol)
+            elif currency_obj and currency_obj.position == 'before':
+                res = '%s %s' % (currency_obj.symbol, res)
+        return res
+
+
+class AbstractReport(models.AbstractModel):
+    _inherit = 'report.abstract_report'
+    _wrapped_report_class = ReportHelper
diff --git a/ext/custom-addons/dp_reports/reports/layouts.xml b/ext/custom-addons/dp_reports/reports/layouts.xml
new file mode 100644
index 00000000..3b63e420
--- /dev/null
+++ b/ext/custom-addons/dp_reports/reports/layouts.xml
@@ -0,0 +1,115 @@
+
+
+    
+
+        
+            
+                 
+         
+
+        
+            
+            
+                 
+            
+                 
+            
+                 
+             
+
+        
+        
+
+        
+
+     
+ 
diff --git a/ext/custom-addons/dp_report/security/ir.model.access.csv b/ext/custom-addons/dp_reports/security/ir.model.access.csv
similarity index 100%
rename from ext/custom-addons/dp_report/security/ir.model.access.csv
rename to ext/custom-addons/dp_reports/security/ir.model.access.csv
diff --git a/ext/custom-addons/dp_reports/static/src/less/report_backend.less b/ext/custom-addons/dp_reports/static/src/less/report_backend.less
new file mode 100644
index 00000000..f9ba1431
--- /dev/null
+++ b/ext/custom-addons/dp_reports/static/src/less/report_backend.less
@@ -0,0 +1,7 @@
+.bold {
+    font-weight: bold;
+}
+
+td.noborder, td.noborder{
+    border: 0;
+}
diff --git a/ext/custom-addons/dp_reports_account/__init__.py b/ext/custom-addons/dp_reports_account/__init__.py
new file mode 100644
index 00000000..cde864ba
--- /dev/null
+++ b/ext/custom-addons/dp_reports_account/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+from . import models
diff --git a/ext/custom-addons/dp_reports_account/__manifest__.py b/ext/custom-addons/dp_reports_account/__manifest__.py
new file mode 100644
index 00000000..e4e94fe5
--- /dev/null
+++ b/ext/custom-addons/dp_reports_account/__manifest__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+
+# noinspection PyStatementEffect
+{
+    'name': 'datepol Report-Anpassungen',
+    'category': 'Custom',
+    'version': '1.0',
+    'summary': """Individuelle Report Anpassungen""",
+    'description': """Individuelle Report Anpassungen""",
+    'author': 'datenpol gmbh',
+    'website': 'http://www.datenpol.at/',
+    'depends': [
+        'dp_reports',
+        'account'
+    ],
+    'data': [
+        'reports/invoice.xml',
+    ],
+    # only loaded in demonstration mode
+    'demo': [],
+    'installable': True,
+    'auto_install': False,
+}
diff --git a/ext/custom-addons/dp_reports_account/i18n/de.po b/ext/custom-addons/dp_reports_account/i18n/de.po
new file mode 100644
index 00000000..6762beec
--- /dev/null
+++ b/ext/custom-addons/dp_reports_account/i18n/de.po
@@ -0,0 +1,19 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * dp_report
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-10-12 09:17+0000\n"
+"PO-Revision-Date: 2016-10-13 11:58+0000\n"
+"Last-Translator: datenpol\n"
+"Language-Team: German (http://www.transifex.com/odoo/odoo-9/language/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+
diff --git a/ext/custom-addons/dp_reports_account/models/__init__.py b/ext/custom-addons/dp_reports_account/models/__init__.py
new file mode 100644
index 00000000..cbe7df63
--- /dev/null
+++ b/ext/custom-addons/dp_reports_account/models/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+
+
+import report_helper
diff --git a/ext/custom-addons/dp_reports_account/models/report_helper.py b/ext/custom-addons/dp_reports_account/models/report_helper.py
new file mode 100644
index 00000000..ca41a24a
--- /dev/null
+++ b/ext/custom-addons/dp_reports_account/models/report_helper.py
@@ -0,0 +1,10 @@
+
+
+from odoo import api, models
+
+
+class AccountInvoice(models.AbstractModel):
+    _name = 'report.account.report_invoice'
+    _inherit = 'report.abstract_report'
+    _template = 'account.report_invoice'
+
diff --git a/ext/custom-addons/dp_reports_account/reports/invoice.xml b/ext/custom-addons/dp_reports_account/reports/invoice.xml
new file mode 100644
index 00000000..8084a739
--- /dev/null
+++ b/ext/custom-addons/dp_reports_account/reports/invoice.xml
@@ -0,0 +1,184 @@
+
+
+    
+        
+        
+            
+                
+                    
+                        
+                            
+                                 
+                            
+                    
+                    
+                        
+                            
+                                Kundennr.: 
+                                
+                            
+                                Ihre UID: 
+                                
+                            
+                                Ihre Referenz: 
+                                
+                            
+                                Referenzbeleg: 
+                                
+                            
+                                Rechnungsdatum: 
+                                
+                            
+                                Ansprechpartner: 
+                                
+                            
+                                Email: 
+                                
+                            
+                                Telefon: 
+                                
+                        
+                    
+
+                    
+                        
+                            
+                                
+                                    Rechnung
+                                 
+                                Proforma Rechnung 
+                                Rechnungsentwurf 
+                                Stornierte Rechnung 
+                                Gutschrift 
+                                Lieferantenstorno 
+                                Eingangsrechnungen 
+                                 
+                        
+                    
+
+                    
+                        
+                            
+                                Pos 
+                                Art-Nr. 
+                                Bezeichnung 
+                                Menge 
+                                Einzelpreis 
+                                Rabatt 
+                                Gesamtpreis 
+                             
+                         
+
+                        
+                            
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                             
+                         
+                    
+
+                    
+
+                        
+                            
+                                
+                                    
+                                        Zwischensumme 
+                                     
+                                    
+                                         
+                                 
+                                
+                                    
+                                         
+                                    
+                                         
+                                 
+                                
+                                    
+                                        Rechnungsbetrag 
+                                     
+                                    
+                                         
+                                 
+                            
+                        
+                    
+                    
+                
 
+         
+
+        
+            
+                
+                     
+             
+         
+
+     
+
+    
+         
+ 
diff --git a/ext/custom-addons/dp_reports_account/security/ir.model.access.csv b/ext/custom-addons/dp_reports_account/security/ir.model.access.csv
new file mode 100644
index 00000000..0343f29f
--- /dev/null
+++ b/ext/custom-addons/dp_reports_account/security/ir.model.access.csv
@@ -0,0 +1 @@
+"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
diff --git a/ext/custom-addons/dp_reports_purchase/__init__.py b/ext/custom-addons/dp_reports_purchase/__init__.py
new file mode 100644
index 00000000..cde864ba
--- /dev/null
+++ b/ext/custom-addons/dp_reports_purchase/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+from . import models
diff --git a/ext/custom-addons/dp_reports_purchase/__manifest__.py b/ext/custom-addons/dp_reports_purchase/__manifest__.py
new file mode 100644
index 00000000..5fb0eadd
--- /dev/null
+++ b/ext/custom-addons/dp_reports_purchase/__manifest__.py
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+
+# noinspection PyStatementEffect
+{
+    'name': 'datepol Report-Anpassungen',
+    'category': 'Custom',
+    'version': '1.0',
+    'summary': """Individuelle Report Anpassungen""",
+    'description': """Individuelle Report Anpassungen""",
+    'author': 'datenpol gmbh',
+    'website': 'http://www.datenpol.at/',
+    'depends': [
+        'dp_reports',
+        'purchase'
+    ],
+    'data': [
+        'reports/purchase.xml',
+        'reports/purchasequotation.xml',
+    ],
+    # only loaded in demonstration mode
+    'demo': [],
+    'installable': True,
+    'auto_install': False,
+}
diff --git a/ext/custom-addons/dp_reports_purchase/i18n/de.po b/ext/custom-addons/dp_reports_purchase/i18n/de.po
new file mode 100644
index 00000000..6762beec
--- /dev/null
+++ b/ext/custom-addons/dp_reports_purchase/i18n/de.po
@@ -0,0 +1,19 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * dp_report
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-10-12 09:17+0000\n"
+"PO-Revision-Date: 2016-10-13 11:58+0000\n"
+"Last-Translator: datenpol\n"
+"Language-Team: German (http://www.transifex.com/odoo/odoo-9/language/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+
diff --git a/ext/custom-addons/dp_reports_purchase/models/__init__.py b/ext/custom-addons/dp_reports_purchase/models/__init__.py
new file mode 100644
index 00000000..8daea8e4
--- /dev/null
+++ b/ext/custom-addons/dp_reports_purchase/models/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+import report_helper
diff --git a/ext/custom-addons/dp_reports_purchase/models/report_helper.py b/ext/custom-addons/dp_reports_purchase/models/report_helper.py
new file mode 100644
index 00000000..bfa5b3b8
--- /dev/null
+++ b/ext/custom-addons/dp_reports_purchase/models/report_helper.py
@@ -0,0 +1,16 @@
+
+
+from odoo import api, models
+
+
+class PurchaseQuotation(models.AbstractModel):
+    _name = 'report.purchase.report_purchasequotation'
+    _inherit = 'report.abstract_report'
+    _template = 'purchase.report_purchasequotation'
+
+
+class PurchaseOrder(models.AbstractModel):
+    _name = 'report.purchase.report_purchaseorder'
+    _inherit = 'report.abstract_report'
+    _template = 'purchase.report_purchaseorder'
+
diff --git a/ext/custom-addons/dp_reports_purchase/reports/purchase.xml b/ext/custom-addons/dp_reports_purchase/reports/purchase.xml
new file mode 100644
index 00000000..8aa971d0
--- /dev/null
+++ b/ext/custom-addons/dp_reports_purchase/reports/purchase.xml
@@ -0,0 +1,174 @@
+
+
+    
+        
+            
+                
+                    
+                        
+                            
+                                 
+                            
+                    
+                    
+                        
+                            
+                                Bestelldatum: 
+                                
+                            
+                                Lieferantenreferenz: 
+                                
+                            
+                                Geplantes Lieferdatum: 
+                                
+                            
+                                Ansprechpartner: 
+                                
+                            
+                                Email: 
+                                
+                            
+                                Telefon: 
+                                
+                        
+                    
+
+                    
+                        
+                            
+                                Bestellbestätigung #
+                                     
+                                Angebotsanfrage #
+                                     
+                             
+                        
+                    
+
+                    
+                        
+                            
+                                Pos 
+                                Art-Nr. 
+                                Bezeichnung 
+                                Menge 
+                                Einzelpreis 
+                                Gesamtpreis 
+                             
+                         
+                        
+                            
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                             
+                         
+                    
+
+                    
+
+                        
+                            
+                                
+                                    
+                                        Zwischensumme 
+                                     
+                                    
+                                         
+                                 
+                                
+                                    
+                                        MwSt. 
+                                     
+                                    
+                                         
+                                 
+                                
+                                    
+                                        Gesamtsumme 
+                                     
+                                    
+                                         
+                                 
+                            
+                        
+                    
+
+                    
+                        
+                            
+                        
+                            
+                                Lieferbedingung:
+                                 
+                        
+                    
+                
 
+         
+
+        
+            
+                
+                     
+             
+         
+
+
+     
+
+    
+         
+ 
diff --git a/ext/custom-addons/dp_reports_purchase/reports/purchasequotation.xml b/ext/custom-addons/dp_reports_purchase/reports/purchasequotation.xml
new file mode 100644
index 00000000..527b7684
--- /dev/null
+++ b/ext/custom-addons/dp_reports_purchase/reports/purchasequotation.xml
@@ -0,0 +1,157 @@
+
+
+    
+        
+            
+                
+                    
+                        
+                            
+                                 
+                            
+                    
+                    
+                        
+                            
+                                Belegdatum: 
+                                
+                            
+                                Lieferantenreferenz: 
+                                
+                            
+                                Ansprechpartner: 
+                                
+                            
+                                Email: 
+                                
+                            
+                                Telefon: 
+                                
+                        
+                    
+
+                    
+                        
+                            
+                                Angebotsanfrage #
+                                 
+                        
+                    
+
+                    
+                        
+                            
+                                Pos 
+                                Art-Nr. 
+                                Bezeichnung 
+                                Menge 
+                             
+                         
+                        
+                            
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                             
+                         
+                    
+
+                    
+
+                        
+                            
+                                
+                                    
+                                        Zwischensumme 
+                                     
+                                    
+                                         
+                                 
+                                
+                                    
+                                        MwSt. 
+                                     
+                                    
+                                         
+                                 
+                                
+                                    
+                                        Gesamtsumme 
+                                     
+                                    
+                                         
+                                 
+                            
+                        
+                    
+
+                    
+                        
+                            
+                        
+                            
+                                Lieferbedingung:
+                                 
+                        
+                    
+                
 
+         
+
+        
+            
+                
+                     
+             
+         
+
+
+     
+
+    
+         
+ 
diff --git a/ext/custom-addons/dp_reports_purchase/security/ir.model.access.csv b/ext/custom-addons/dp_reports_purchase/security/ir.model.access.csv
new file mode 100644
index 00000000..0343f29f
--- /dev/null
+++ b/ext/custom-addons/dp_reports_purchase/security/ir.model.access.csv
@@ -0,0 +1 @@
+"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
diff --git a/ext/custom-addons/dp_reports_sale/__init__.py b/ext/custom-addons/dp_reports_sale/__init__.py
new file mode 100644
index 00000000..cde864ba
--- /dev/null
+++ b/ext/custom-addons/dp_reports_sale/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+from . import models
diff --git a/ext/custom-addons/dp_reports_sale/__manifest__.py b/ext/custom-addons/dp_reports_sale/__manifest__.py
new file mode 100644
index 00000000..2a1a8046
--- /dev/null
+++ b/ext/custom-addons/dp_reports_sale/__manifest__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+
+# noinspection PyStatementEffect
+{
+    'name': 'datepol Report-Anpassungen',
+    'category': 'Custom',
+    'version': '1.0',
+    'summary': """Individuelle Report Anpassungen""",
+    'description': """Individuelle Report Anpassungen""",
+    'author': 'datenpol gmbh',
+    'website': 'http://www.datenpol.at/',
+    'depends': [
+        'dp_reports',
+        'sale'
+    ],
+    'data': [
+        'reports/sale.xml',
+    ],
+    # only loaded in demonstration mode
+    'demo': [],
+    'installable': True,
+    'auto_install': False,
+}
diff --git a/ext/custom-addons/dp_reports_sale/i18n/de.po b/ext/custom-addons/dp_reports_sale/i18n/de.po
new file mode 100644
index 00000000..6762beec
--- /dev/null
+++ b/ext/custom-addons/dp_reports_sale/i18n/de.po
@@ -0,0 +1,19 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * dp_report
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-10-12 09:17+0000\n"
+"PO-Revision-Date: 2016-10-13 11:58+0000\n"
+"Last-Translator: datenpol\n"
+"Language-Team: German (http://www.transifex.com/odoo/odoo-9/language/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+
diff --git a/ext/custom-addons/dp_reports_sale/models/__init__.py b/ext/custom-addons/dp_reports_sale/models/__init__.py
new file mode 100644
index 00000000..8daea8e4
--- /dev/null
+++ b/ext/custom-addons/dp_reports_sale/models/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+import report_helper
diff --git a/ext/custom-addons/dp_reports_sale/models/report_helper.py b/ext/custom-addons/dp_reports_sale/models/report_helper.py
new file mode 100644
index 00000000..2d09a4d8
--- /dev/null
+++ b/ext/custom-addons/dp_reports_sale/models/report_helper.py
@@ -0,0 +1,10 @@
+
+
+from odoo import api, models
+
+
+class SaleOrder(models.AbstractModel):
+    _name = 'report.sale.report_saleorder'
+    _inherit = 'report.abstract_report'
+    _template = 'sale.report_saleorder'
+
diff --git a/ext/custom-addons/dp_reports_sale/reports/sale.xml b/ext/custom-addons/dp_reports_sale/reports/sale.xml
new file mode 100644
index 00000000..c9f2d1b3
--- /dev/null
+++ b/ext/custom-addons/dp_reports_sale/reports/sale.xml
@@ -0,0 +1,188 @@
+
+
+    
+        
+        
+            
+                
+                    
+                        
+                            
+                                 
+                            
+                    
+                    
+                        
+                            
+                                Kundennr.: 
+                                
+                            
+                                Ihre UID: 
+                                
+                            
+                                Ihre Referenz: 
+                                
+                            
+                                Angebotsdatum: 
+                                
+                            
+                                Gültig bis: 
+                                
+                            
+                                Bestelldatum: 
+                                
+                            
+                                Ansprechpartner: 
+                                
+                            
+                                Email: 
+                                
+                            
+                                Telefon: 
+                                
+                        
+                    
+
+                    
+                        
+                            
+                                Auftragsbestätigung 
+                                Angebot 
+                                 
+                        
+                    
+
+                    
+                        
+                            
+                                Pos 
+                                Art-Nr. 
+                                Bezeichnung 
+                                Menge 
+                                Einzelpreis 
+                                Rabatt 
+                                Gesamtpreis 
+                             
+                         
+                        
+                            
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                             
+                         
+                    
+
+                    
+
+                        
+                            
+                                
+                                    
+                                        Zwischensumme 
+                                     
+                                    
+                                         
+                                 
+                                
+                                    
+                                        MwSt. 
+                                     
+                                    
+                                         
+                                 
+                                
+                                    
+                                        Gesamtsumme 
+                                     
+                                    
+                                         
+                                 
+                            
+                        
+                    
+
+                    
+                
 
+         
+
+        
+            
+                
+                     
+             
+         
+
+
+     
+
+    
+         
+ 
diff --git a/ext/custom-addons/dp_reports_sale/security/ir.model.access.csv b/ext/custom-addons/dp_reports_sale/security/ir.model.access.csv
new file mode 100644
index 00000000..0343f29f
--- /dev/null
+++ b/ext/custom-addons/dp_reports_sale/security/ir.model.access.csv
@@ -0,0 +1 @@
+"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
diff --git a/ext/custom-addons/dp_reports_stock/__init__.py b/ext/custom-addons/dp_reports_stock/__init__.py
new file mode 100644
index 00000000..cde864ba
--- /dev/null
+++ b/ext/custom-addons/dp_reports_stock/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+from . import models
diff --git a/ext/custom-addons/dp_reports_stock/__manifest__.py b/ext/custom-addons/dp_reports_stock/__manifest__.py
new file mode 100644
index 00000000..996fc886
--- /dev/null
+++ b/ext/custom-addons/dp_reports_stock/__manifest__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+
+# noinspection PyStatementEffect
+{
+    'name': 'datepol Report-Anpassungen',
+    'category': 'Custom',
+    'version': '1.0',
+    'summary': """Individuelle Report Anpassungen""",
+    'description': """Individuelle Report Anpassungen""",
+    'author': 'datenpol gmbh',
+    'website': 'http://www.datenpol.at/',
+    'depends': [
+        'dp_reports',
+        'stock'
+    ],
+    'data': [
+        'reports/stock.xml',
+    ],
+    # only loaded in demonstration mode
+    'demo': [],
+    'installable': True,
+    'auto_install': False,
+}
diff --git a/ext/custom-addons/dp_reports_stock/i18n/de.po b/ext/custom-addons/dp_reports_stock/i18n/de.po
new file mode 100644
index 00000000..6762beec
--- /dev/null
+++ b/ext/custom-addons/dp_reports_stock/i18n/de.po
@@ -0,0 +1,19 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * dp_report
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-10-12 09:17+0000\n"
+"PO-Revision-Date: 2016-10-13 11:58+0000\n"
+"Last-Translator: datenpol\n"
+"Language-Team: German (http://www.transifex.com/odoo/odoo-9/language/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+
diff --git a/ext/custom-addons/dp_reports_stock/models/__init__.py b/ext/custom-addons/dp_reports_stock/models/__init__.py
new file mode 100644
index 00000000..8daea8e4
--- /dev/null
+++ b/ext/custom-addons/dp_reports_stock/models/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+import report_helper
diff --git a/ext/custom-addons/dp_reports_stock/models/report_helper.py b/ext/custom-addons/dp_reports_stock/models/report_helper.py
new file mode 100644
index 00000000..229bbdb5
--- /dev/null
+++ b/ext/custom-addons/dp_reports_stock/models/report_helper.py
@@ -0,0 +1,10 @@
+
+
+from odoo import api, models
+
+
+class StockPicking(models.AbstractModel):
+    _name = 'report.stock.report_deliveryslip'
+    _inherit = 'report.abstract_report'
+    _template = 'stock.report_deliveryslip'
+
diff --git a/ext/custom-addons/dp_reports_stock/reports/stock.xml b/ext/custom-addons/dp_reports_stock/reports/stock.xml
new file mode 100644
index 00000000..f26795c9
--- /dev/null
+++ b/ext/custom-addons/dp_reports_stock/reports/stock.xml
@@ -0,0 +1,123 @@
+
+
+    
+        
+        
+            
+                
+                    
+                        
+                            
+                                 
+                            
+                    
+                    
+                        
+                            
+                                Kundennr.: 
+                                
+                            
+                                Ihre UID: 
+                                
+                            
+                                Ihre Referenz: 
+                                
+                            
+                                Lieferdatum: 
+                                
+                            
+                                Auftragsnummer: 
+                                
+                        
+                    
+
+                    
+                        
+                            
+                                Lieferschein
+                                 
+                        
+                    
+
+                    
+                        
+                            
+                                Pos 
+                                Art-Nr. 
+                                Bezeichnung 
+                                Menge 
+                                Fertigungslos 
+                             
+                         
+                        
+                            
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                     
+                                
+                                    
+                                        
+                                     
+                                 
+                             
+                         
+                    
+
+                    
+                
 
+         
+
+        
+            
+                
+                     
+             
+         
+
+
+     
+
+    
+         
+ 
diff --git a/ext/custom-addons/dp_reports_stock/security/ir.model.access.csv b/ext/custom-addons/dp_reports_stock/security/ir.model.access.csv
new file mode 100644
index 00000000..0343f29f
--- /dev/null
+++ b/ext/custom-addons/dp_reports_stock/security/ir.model.access.csv
@@ -0,0 +1 @@
+"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
diff --git a/setup/lib/cli.py b/setup/lib/cli.py
index e052eca8..59591da0 100755
--- a/setup/lib/cli.py
+++ b/setup/lib/cli.py
@@ -205,6 +205,12 @@ def main():
             'invalidate_email',
         ]
 
+    if cmd == 'remove_standard_translations':
+        methods = [
+            'login',
+            'remove_standard_translations'
+        ]
+
     if not methods:
         print 'Unbekanntes Kommando'
         _usage()
diff --git a/setup/lib/functions.py b/setup/lib/functions.py
index b2658bf2..22504e09 100644
--- a/setup/lib/functions.py
+++ b/setup/lib/functions.py
@@ -950,3 +950,20 @@ class DatenpolFunctions():
 
         planner_ids = self._execute('web.planner', 'search', [])
         return self._execute('web.planner', 'write', planner_ids, {'active': False})
+
+    def remove_standard_translations(self):
+        """entferne standard odoo ueberseztungen"""
+
+        res_ids = []
+
+        res_ids += self._execute('ir.translation', 'search',
+                                 [('name', '=', 'stock.location,name'),
+                                  ('src', '=', 'Stock'),
+                                  ('value', '=', 'Lager')])
+
+        res = True
+        if res_ids:
+            res = self._execute('ir.translation', 'unlink', res_ids)
+
+        return res
+