From b63978d0038c4774f820843cb4b45052918f943e Mon Sep 17 00:00:00 2001 From: oda-alexandre Date: Mon, 30 Aug 2021 19:15:06 +0200 Subject: New recipe: odoo --- recipes/odoo/LICENSE | 21 +++++++++++++++++++++ recipes/odoo/README.md | 2 ++ recipes/odoo/icon.svg | 16 ++++++++++++++++ recipes/odoo/index.js | 2 ++ recipes/odoo/package.json | 10 ++++++++++ recipes/odoo/service.css | 1 + recipes/odoo/webview.js | 4 ++++ 7 files changed, 56 insertions(+) create mode 100644 recipes/odoo/LICENSE create mode 100644 recipes/odoo/README.md create mode 100644 recipes/odoo/icon.svg create mode 100644 recipes/odoo/index.js create mode 100644 recipes/odoo/package.json create mode 100644 recipes/odoo/service.css create mode 100644 recipes/odoo/webview.js (limited to 'recipes/odoo') diff --git a/recipes/odoo/LICENSE b/recipes/odoo/LICENSE new file mode 100644 index 0000000..99d6f23 --- /dev/null +++ b/recipes/odoo/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Vijay Raghavan Aravamudhan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/recipes/odoo/README.md b/recipes/odoo/README.md new file mode 100644 index 0000000..2eca553 --- /dev/null +++ b/recipes/odoo/README.md @@ -0,0 +1,2 @@ +# Odoo for Ferdi +This is a Ferdi recipe for Odoo diff --git a/recipes/odoo/icon.svg b/recipes/odoo/icon.svg new file mode 100644 index 0000000..d2e7f8e --- /dev/null +++ b/recipes/odoo/icon.svg @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/recipes/odoo/index.js b/recipes/odoo/index.js new file mode 100644 index 0000000..23328b9 --- /dev/null +++ b/recipes/odoo/index.js @@ -0,0 +1,2 @@ +module.exports = Ferdi => class Odoo extends Ferdi { +}; diff --git a/recipes/odoo/package.json b/recipes/odoo/package.json new file mode 100644 index 0000000..aa6a881 --- /dev/null +++ b/recipes/odoo/package.json @@ -0,0 +1,10 @@ +{ + "id": "odoo", + "name": "Odoo", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "https://www.odoo.com/web/login", + "hasCustomUrl": true + } +} diff --git a/recipes/odoo/service.css b/recipes/odoo/service.css new file mode 100644 index 0000000..38dcab0 --- /dev/null +++ b/recipes/odoo/service.css @@ -0,0 +1 @@ +/* Insert custom styles you want to insert here */ \ No newline at end of file diff --git a/recipes/odoo/webview.js b/recipes/odoo/webview.js new file mode 100644 index 0000000..8f02c8f --- /dev/null +++ b/recipes/odoo/webview.js @@ -0,0 +1,4 @@ +module.exports = (Ferdi) => { + + Ferdi.injectCSS(_path.default.join(__dirname, "service.css")); +}; -- cgit v1.2.3-70-g09d2