This file contains hidden or 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
#!/bin/bash | |
# CONST 1GB | |
CONST_1GB="1024*1024*1024" | |
# VARIABLE WORKERS | |
CMD_W=0 |
This file contains hidden or 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
{ | |
"anytime" : [ | |
"You know you can!", | |
"Dale hasta que sea asombroso" | |
], | |
"morning" : [ | |
"Good morning, sunshine!", | |
"Who needs coffee when you have your smile?", | |
"Go get 'em, Tiger!" | |
], |
This file contains hidden or 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
2020-07-20 02:01:12,704 10573 WARNING absa120 odoo.modules.loading: Transient module states were reset | |
2020-07-20 02:01:12,707 10573 ERROR absa120 odoo.modules.registry: Failed to load registry | |
Traceback (most recent call last): | |
File "/home/keylor/absa/odoo/odoo/api.py", line 1049, in get | |
value = self._data[key][field][record._ids[0]] | |
KeyError: 308 | |
During handling of the above exception, another exception occurred: | |
Traceback (most recent call last): |
This file contains hidden or 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
<!-- <cac:AllowanceCharge t-if="line.discount">--> | |
<!-- <cbc:ChargeIndicator>false</cbc:ChargeIndicator>--> | |
<!-- <cbc:AllowanceChargeReasonCode><t t-esc="line.l10n_pe_edi_allowance_charge_reason_code"/></cbc:AllowanceChargeReasonCode>--> | |
<!-- <cbc:MultiplierFactorNumeric><t t-esc="line._l10n_pe_edi_multiplier_factor_numeric()"/></cbc:MultiplierFactorNumeric>--> | |
<!-- <cbc:Amount t-att-currencyID="line.currency_id.name if line.currency_id else line.company_currency_id.name"><t t-esc="line._l10n_pe_edi_discounted_amount()"/></cbc:Amount>--> | |
<!-- <cbc:BaseAmount t-att-currencyID="line.currency_id.name if line.currency_id else line.company_currency_id.name"><t t-esc="line._l10n_pe_edi_discounted_base_mount()"/></cbc:BaseAmount>--> | |
<!-- </cac:AllowanceCharge>--> |
This file contains hidden or 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
[report] | |
include = | |
*/commission_calculation/* | |
omit = | |
*/scenario/* | |
*/scenarios/* | |
*/test/* | |
*/tests/* | |
*__init__.py |
This file contains hidden or 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
# Available variables: | |
# - env: Odoo Environment on which the action is triggered | |
# - model: Odoo Model of the record on which the action is triggered; is a void recordset | |
# - record: record on which the action is triggered; may be be void | |
# - records: recordset of all records on which the action is triggered in multi-mode; may be void | |
# - time, datetime, dateutil, timezone: useful Python libraries | |
# - log: log(message, level='info'): logging function to record debug information in ir.logging table | |
# - Warning: Warning Exception to use with raise | |
# To return an action, assign: action = {...} | |
if record.mailing_id: |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<odoo noupdate="1"> | |
<!-- Install Spanish language (if not installed yet) --> | |
<record id="lang_settings_es_mx" model="base.language.install"> | |
<field name="lang">es_MX</field> | |
<field name="website_ids" model="website" | |
eval="[(6, 0, obj().search([ | |
('id', 'in', [ref('website.default_website')])]).ids)]" |
This file contains hidden or 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
[MASTER] | |
profile=no | |
ignore=CVS,.git,scenarios,.bzr | |
persistent=yes | |
cache-size=500 | |
load-plugins=pylint.extensions.docstyle, pylint.extensions.mccabe | |
[ODOOLINT] | |
readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" | |
manifest_required_authors=Vauxoo, |
This file contains hidden or 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
# Available variables: | |
# - env: Odoo Environment on which the action is triggered | |
# - model: Odoo Model of the record on which the action is triggered; is a void recordset | |
# - record: record on which the action is triggered; may be void | |
# - records: recordset of all records on which the action is triggered in multi-mode; may be void | |
# - time, datetime, dateutil, timezone: useful Python libraries | |
# - log: log(message, level='info'): logging function to record debug information in ir.logging table | |
# - Warning: Warning Exception to use with raise | |
# To return an action, assign: action = {...} |
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
from openerp import api, models | |
class ReportZebraProduct(models.AbstractModel): | |
_name = 'report.typ_printing_report.product_label_zebra_view' | |
@api.model |
NewerOlder