-
-
Notifications
You must be signed in to change notification settings - Fork 583
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '12.0' of github.com:it-projects-llc/pos-addons into 12.…
…0-c6e7e846da21776622829dd972eba34049060fd6
- Loading branch information
Showing
435 changed files
with
7,672 additions
and
7,609 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ko_fi: itprojectsllc # This is supposed to bring some coffee for us |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Telegram Notifications | ||
|
||
on: | ||
issues: | ||
types: [opened, reopened, deleted, closed] | ||
|
||
jobs: | ||
notify: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Send notifications to Telegram | ||
run: curl -s -X POST https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage -d chat_id=${{ secrets.TELEGRAM_CHAT_ID }} -d text="${MESSAGE}" >> /dev/null | ||
env: | ||
MESSAGE: "Issue ${{ github.event.action }}: \n${{ github.event.issue.html_url }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,12 @@ | |
"summary": """Hardware Driver for Network Printers""", | ||
"category": "Point of Sale", | ||
"images": [], | ||
"version": "11.0.2.0.1", | ||
"version": "12.0.2.0.1", | ||
"application": False, | ||
|
||
"author": "IT-Projects LLC, Dinar Gabbasov", | ||
"support": "[email protected]", | ||
"website": "https://twitter.com/gabbasov_dinar", | ||
"website": "https://apps.odoo.com/apps/modules/12.0/hw_printer_network/", | ||
"license": "LGPL-3", | ||
"price": 59.00, | ||
"currency": "EUR", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). | ||
|
||
from . import hw_printer_network_controller |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright 2018 Tom Blauwendraat <[email protected]> | ||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). | ||
|
||
from openerp import http | ||
from odoo import http | ||
import logging | ||
import time | ||
import socket | ||
|
@@ -15,11 +15,11 @@ | |
|
||
|
||
try: | ||
from openerp.addons.hw_escpos.escpos import escpos | ||
from openerp.addons.hw_escpos.controllers.main import EscposProxy | ||
from openerp.addons.hw_escpos.controllers.main import EscposDriver | ||
from openerp.addons.hw_escpos.escpos.printer import Network | ||
import openerp.addons.hw_proxy.controllers.main as hw_proxy | ||
from odoo.addons.hw_escpos.escpos import escpos | ||
from odoo.addons.hw_escpos.controllers.main import EscposProxy | ||
from odoo.addons.hw_escpos.controllers.main import EscposDriver | ||
from odoo.addons.hw_escpos.escpos.printer import Network | ||
import odoo.addons.hw_proxy.controllers.main as hw_proxy | ||
except ImportError: | ||
EscposProxy = object | ||
EscposDriver = object | ||
|
@@ -180,8 +180,3 @@ def network_printers(self, network_printers=None): | |
@http.route('/hw_proxy/status_network_printers', type='json', auth='none', cors='*') | ||
def network_printers_status(self): | ||
return network_driver.network_printers | ||
|
||
@http.route('/hw_proxy/without_usb', type='http', auth='none', cors='*') | ||
def without_usb(self): | ||
""" Old pos_printer_network module expects this to work """ | ||
return "ping" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
"summary": """Forced choose a cashier before switching to payment screen""", | ||
"category": "Point of Sale", | ||
"images": ['images/pos_cashier_select.png'], | ||
"version": "11.0.1.0.2", | ||
"version": "12.0.1.0.2", | ||
"application": False, | ||
|
||
"author": "IT-Projects LLC, Artyom Losev", | ||
"support": "[email protected]", | ||
"website": "https://it-projects.info", | ||
"website": "https://apps.odoo.com/apps/modules/12.0/pos_cashier_select/", | ||
"license": "LGPL-3", | ||
"price": 39.00, | ||
"currency": "EUR", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,49 @@ | ||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). | ||
{ | ||
"name": """Multiple categories per product in POS""", | ||
"summary": """Specify as many categories for a product as you need""", | ||
"category": "Point of Sale", | ||
"version": "11.0.1.0.1", | ||
# "live_test_url": "http://apps.it-projects.info/shop/product/DEMO-URL?version=12.0", | ||
"images": [], | ||
"version": "12.0.1.0.1", | ||
"application": False, | ||
|
||
"author": "IT-Projects LLC, Pavel Romanchenko", | ||
"support": "[email protected]", | ||
"website": "https://it-projects.info", | ||
"license": "AGPL-3", | ||
'website': 'https://www.odoo.com/apps/modules/12.0/pos_category_multi/', | ||
"license": "LGPL-3", | ||
"price": 15.00, | ||
"currency": "EUR", | ||
|
||
"depends": [ | ||
'point_of_sale', | ||
"point_of_sale", | ||
], | ||
"external_dependencies": {"python": [], "bin": []}, | ||
"data": [ | ||
'template.xml', | ||
'view.xml', | ||
"template.xml", | ||
"view.xml", | ||
], | ||
"demo": [], | ||
"installable": True, | ||
"demo": [ | ||
], | ||
"qweb": [ | ||
], | ||
|
||
"post_load": None, | ||
"pre_init_hook": None, | ||
"post_init_hook": None, | ||
"uninstall_hook": None, | ||
|
||
"auto_install": False, | ||
"installable": True, | ||
|
||
# "demo_title": "{MODULE_NAME}", | ||
# "demo_addons": [ | ||
# ], | ||
# "demo_addons_hidden": [ | ||
# ], | ||
# "demo_url": "DEMO-URL", | ||
# "demo_summary": "{SHORT_DESCRIPTION_OF_THE_MODULE}", | ||
# "demo_images": [ | ||
# "images/MAIN_IMAGE", | ||
# ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# Ermin Trevisan <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 10.0\n" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-10-14 10:52+0000\n" | ||
"PO-Revision-Date: 2017-10-14 10:52+0000\n" | ||
|
@@ -20,8 +20,8 @@ msgstr "" | |
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
||
#. module: pos_category_multi | ||
#: model:ir.model.fields,field_description:pos_category_multi.field_product_product_pos_category_ids | ||
#: model:ir.model.fields,field_description:pos_category_multi.field_product_template_pos_category_ids | ||
#: model:ir.model.fields,field_description:pos_category_multi.field_product_product__pos_category_ids | ||
#: model:ir.model.fields,field_description:pos_category_multi.field_product_template__pos_category_ids | ||
msgid "Point of Sale Categories" | ||
msgstr "Point of Sale-Kategorien" | ||
|
||
|
@@ -31,12 +31,12 @@ msgid "Product Template" | |
msgstr "Produktvorlage" | ||
|
||
#. module: pos_category_multi | ||
#: model:ir.ui.view,arch_db:pos_category_multi.product_template_form_view | ||
#: model_terms:ir.ui.view,arch_db:pos_category_multi.product_template_form_view | ||
msgid "These categories are shared across all Product Variants" | ||
msgstr "Diese Kategorien werden für alle Produktvarianten verwendet" | ||
|
||
#. module: pos_category_multi | ||
#: model:ir.model.fields,help:pos_category_multi.field_product_product_pos_category_ids | ||
#: model:ir.model.fields,help:pos_category_multi.field_product_template_pos_category_ids | ||
#: model:ir.model.fields,help:pos_category_multi.field_product_product__pos_category_ids | ||
#: model:ir.model.fields,help:pos_category_multi.field_product_template__pos_category_ids | ||
msgid "Those categories are used to group similar products for point of sale." | ||
msgstr "Diese Kategorien gruppieren ähnliche Produkte für den Point of Sale." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# Gustavo Valverde <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 10.0\n" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-09-30 15:22+0000\n" | ||
"PO-Revision-Date: 2017-09-30 15:22+0000\n" | ||
|
@@ -20,8 +20,8 @@ msgstr "" | |
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
||
#. module: pos_category_multi | ||
#: model:ir.model.fields,field_description:pos_category_multi.field_product_product_pos_category_ids | ||
#: model:ir.model.fields,field_description:pos_category_multi.field_product_template_pos_category_ids | ||
#: model:ir.model.fields,field_description:pos_category_multi.field_product_product__pos_category_ids | ||
#: model:ir.model.fields,field_description:pos_category_multi.field_product_template__pos_category_ids | ||
msgid "Point of Sale Categories" | ||
msgstr "Categorías del Punto de Venta" | ||
|
||
|
@@ -31,14 +31,14 @@ msgid "Product Template" | |
msgstr "Plantilla de Producto" | ||
|
||
#. module: pos_category_multi | ||
#: model:ir.ui.view,arch_db:pos_category_multi.product_template_form_view | ||
#: model_terms:ir.ui.view,arch_db:pos_category_multi.product_template_form_view | ||
msgid "These categories are shared across all Product Variants" | ||
msgstr "" | ||
"Estas categorias son compartidas a través de todas las Variantes de Productos" | ||
|
||
#. module: pos_category_multi | ||
#: model:ir.model.fields,help:pos_category_multi.field_product_product_pos_category_ids | ||
#: model:ir.model.fields,help:pos_category_multi.field_product_template_pos_category_ids | ||
#: model:ir.model.fields,help:pos_category_multi.field_product_product__pos_category_ids | ||
#: model:ir.model.fields,help:pos_category_multi.field_product_template__pos_category_ids | ||
msgid "Those categories are used to group similar products for point of sale." | ||
msgstr "" | ||
"Aquellas categorías son utilizadas para agrupar productos similares para el " | ||
|
Oops, something went wrong.