Browse Source

commit inicial

Rodney Elpidio Enciso Arias 7 năm trước cách đây
commit
07b4ad240c

+ 3 - 0
__init__.py

@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+from . import models

BIN
__init__.pyc


+ 18 - 0
__openerp__.py

@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+{
+    "name": "Eiru POS title change",
+    "version": "1.0",
+    "category": "Point Of Sale",
+    "website": "https://www.eiru.com.py",
+    "author": "Eiru",
+    "license": "AGPL-3",
+    "application": False,
+    "installable": True,
+    "depends": [
+        "base",
+        "point_of_sale",
+    ],
+    "data": [
+        "views/template.xml",
+    ],
+}

+ 6 - 0
models.py

@@ -0,0 +1,6 @@
+# -*- coding: utf-8 -*-
+
+from openerp import api, fields, models
+
+class PosOrder(models.Model):
+    _inherit = 'pos.order'

BIN
models.pyc


BIN
static/description/icon.png


BIN
static/src/favicons/favicon-16x16.png


BIN
static/src/favicons/favicon-32x32.png


BIN
static/src/favicons/favicon-96x96.png


+ 15 - 0
views/template.xml

@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+    <data>
+        <template id="eiru_pos_title_change.eiru_pos_web_layout" name="Eiru POS Layout Assets" inherit_id="point_of_sale.index">
+            <title position="replace">
+                <title>Eiru Software</title>
+            </title>
+            <link rel="shortcut icon" position="replace">
+                <link rel="icon" type="image/png" sizes="32x32" href="/eiru_theme/static/src/favicons/favicon-32x32.png" />
+                <link rel="icon" type="image/png" sizes="96x96" href="/eiru_theme/static/src/favicons/favicon-96x96.png" />
+                <link rel="icon" type="image/png" sizes="16x16" href="/eiru_theme/static/src/favicons/favicon-16x16.png" />
+            </link>
+        </template>
+    </data>
+</openerp>