Search 1.9 billion lines of Odoo code on GitHub

1
··· ·
216
·

account_statement_completion_compassion

Author: Emanuel Cino
License: AGPL-3
Branch: 8.0
Repository: Alaggaerion/compassion-accounting
Dependencies: account, crm_compassion, hr_expense, and l10n_ch_account_statement_base_import
Languages: CSS (5, 0.8%), PO File (54, 8.5%), Python (386, 60.6%), XML (169, 26.5%), and reStructuredText (23, 3.6%)


Show more...

cenit_massiverand_trng_web_service_0_1

Author: Cenit IO
License: no license
Branch: 8.0
Repository: andhit-r/odoo-integrations
Dependencies: cenit_base
Languages: HTML (38, 23.9%), Python (36, 22.6%), and XML (85, 53.5%)

This is the experimental API documentation for <a href='http://www.massiverand.com/'>MassiveRand</a> TRNG Web Service. Serving true random numbers since December 2014!<p>Explore our <a href='../tutorials'>Tutorials</a>.</p>
Show more...

account_invoice_supplierinfo_update_standard_price

Author: GRAP
License: AGPL-3
Branch: 8.0_ADD_account_product_fiscal_classification_restricted_usage
Repository: grap/grap-odoo-business
Dependencies: account, account_invoice_supplierinfo_update, account_invoice_supplierinfo_update_triple_discount, decimal_precision, and product
Languages: PO File (36, 9.8%), Python (258, 69.9%), XML (57, 15.4%), and reStructuredText (18, 4.9%)

In the supplier invoice, automatically update all products whose standard price on the line is different from the product standard price
Show more...

cenit_discovery_market_research_api_0_1

Author: Cenit IO
License: no license
Branch: 9.0
Repository: connect-to-ak/odoo-integrations
Dependencies: cenit_base
Languages: HTML (38, 46.9%), Python (37, 45.7%), and XML (6, 7.4%)

<p>This API drives the <a href="https://discovery.gsa.gov">Discovery Market Research Tool</a>....
Show more...

pos_multi_session_restaurant_change_table

Author: INVITU SARL
License: no license
Branch: 9.0-dev_pos_multi_session_change_table
Repository: cvinh/pos-addons
Dependencies: base, point_of_sale, pos_change_table, and pos_multi_session_restaurant
Languages: JavaScript (3, 8.6%), Python (23, 65.7%), and XML (9, 25.7%)


Show more...

project_timesheet_time_control_employee_pin

Author: Numigi
License: LGPL-3
Branch: TA#51167
Repository: Numigi/odoo-project-addons
Dependencies: hr_attendance, and project_timesheet_time_control
Languages: PO File (25, 12.2%), Python (125, 61.0%), XML (29, 14.1%), and reStructuredText (26, 12.7%)

Enter times from the Timer of a task as a different employee from the logged in user
Show more...

cenit_cdn_management_client_api_2016_04_02

Author: Cenit IO
License: no license
Branch: 9.0
Repository: connect-to-ak/odoo-integrations
Dependencies: cenit_base
Languages: HTML (38, 46.9%), Python (37, 45.7%), and XML (6, 7.4%)

...
Show more...

cenit_massive_rand_trng_web_service_api_0_1

Author: Cenit IO
License: no license
Branch: 9.0
Repository: connect-to-ak/odoo-integrations
Dependencies: cenit_base
Languages: HTML (38, 46.9%), Python (37, 45.7%), and XML (6, 7.4%)

...
Show more...

cenit_geneea_natural_language_processing_1_0

Author: Cenit IO
License: no license
Branch: 8.0
Repository: andhit-r/odoo-integrations
Dependencies: base, and cenit_base
Languages: HTML (38, 5.2%), Python (67, 9.2%), and XML (625, 85.6%)

<div class="api-description"> <h2>Authentication</h2> <p>For all calls, supply your API key. <a href="https://geneea.3scale.net/">Sign up to <em>obtain the key</em></a>.</p> <p> Our API supports both <em>unencrypted (HTTP)</em> and <em>encrypted (HTTPS)</em> protocols. However, for security reasons, we strongly encourage using only the encrypted version. </p> <p>The API key should be supplied as either a request parameter <code>user_key</code> or in <code>Authorization</code> header.</p> <pre><code>Authorization: user_key &lt;YOUR_API_KEY&gt;</code></pre> <h2>API operations</h2> <p> All API operations can perform analysis on supplied raw text or on text extracted from a given URL. Optionally, one can supply additional information which can make the result more precise. An example of such information would be the language of text or a particular text extractor for URL resources. </p> <p>The supported types of analyses are:</p> <ul> <li><strong>lemmatization</strong> &longrightarrow; Finds out lemmata (basic forms) of all the words in the document. </li> <li><strong>correction</strong> &longrightarrow; Performs correction (diacritization) on all the words in the document. </li> <li><strong>topic detection</strong> &longrightarrow; Determines a topic of the document, e.g. finance or sports. </li> <li><strong>sentiment analysis</strong> &longrightarrow; Determines a sentiment of the document, i.e. how positive or negative the document is. </li> <li><strong>named entity recognition</strong> &longrightarrow; Finds named entities (like person, location, date etc.) mentioned the the document. </li> </ul> <h2>Encoding</h2> <p>The supplied text is expected to be in UTF-8 encoding, this is especially important for non-english texts.</p> <h2>Returned values</h2> <p>The API calls always return objects in serialized JSON format in UTF-8 encoding.</p> <p> If any error occurs, the HTTP response code will be in the range <code>4xx</code> (client-side error) or <code>5xx</code> (server-side error). In this situation, the body of the response will contain information about the error in JSON format, with <code>exception</code> and <code>message</code> values. </p> <h2>URL limitations</h2> <p> All the requests are semantically <code>GET</code>. However, for longer texts, you may run into issues with URL length limit. Therefore, it's possible to always issue a <code>POST</code> request with all the parameters encoded as a JSON in the request body. </p> <p>Example:</p> <pre><code> POST /s1/sentiment Content-Type: application/json {"text":"There is no harm in being sometimes wrong - especially if one is promptly found out."} </code></pre> <p>This is equivalent to <code>GET /s1/sentiment?text=There%20is%20no%20harm...</code></p> <h2>Request limitations</h2> <p> The API has other limitations concerning the size of the HTTP requests. The maximal allowed size of any POST request body is <em>512 KiB</em>. For request with a URL resource, the maximal allowed number of extracted characters from each such resource is <em>100,000</em>. </p> <h2>More information</h2> <p> <a href="https://geneea.atlassian.net/wiki/display/IPD/The+Interpretor+API+Public+Documentation" target="_blank"> The Interpretor Public Documentation </a> </p> </div>
Show more...

cenit_neows_near_earth_object_web_service_1_0

Author: Cenit IO
License: no license
Branch: 8.0
Repository: andhit-r/odoo-integrations
Dependencies: cenit_base
Languages: HTML (38, 19.9%), Python (36, 18.8%), and XML (117, 61.3%)

A web service for near earth objects. All the data is from the <a href="http://neo.jpl.nasa.gov/" target="_blank">NASA JPL Asteroid team</a>. NeoWs is proud to power AsteroidTracker on <a href="https://itunes.apple.com/us/app/asteroid-tracker/id689684901?mt=8" target="_blank">iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.vitruviussoftware.bunifish.asteroidtracker&feature" target="_blank">Android</a> as well as related apps. Get <a href="http://apps.getpebble.com/en_US/application/55bc4913d1690c372900000f" target="_blank">Asteroid Today on Pebble</a> Follow us on <a href="http://n.numerousapp.com/m/289c3ktc8fi0" target="_blank">Numerous</a> Follow us on <a href="https://twitter.com/AsteroidTracker" target="_blank">Twitter</a>
Show more...
1
··· ·
216
·