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
| hostname: "dominio.com" | |
| labels: | |
| doodba.domain.main: "dominio.com" | |
| traefik.enable: "true" | |
| traefik.domain: "dominio.com" | |
| traefik.forbiddenCrawlers-0.frontend.headers.customResponseHeaders: | |
| "X-Robots-Tag:noindex, nofollow" | |
| traefik.forbiddenCrawlers-0.frontend.rule: Host:dominio.com;Path:/web,/web/{anything:.*},/website/info,/website/info/{anything:.*} | |
| traefik.main-0.frontend.rule: Host:dominio.com | |
| traefik.longpolling-0.frontend.rule: Host:dominio.com;Path:/websocket,/websocket/{anything:.*} |
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
| return self.env.ref('account_batch_payment.action_print_batch_payment').report_action(self, config=False) |
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
| from odoo import fields, models | |
| class PosConfig(models.Model): | |
| _inherit = "pos.config" | |
| l10n_latam_document_type_ids = fields.Many2many( | |
| "l10n_latam.document.type", | |
| "pos_config_latam_document_type_rel", | |
| "pos_config_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
| #!/bin/bash | |
| # CONST 1GB | |
| CONST_1GB="1024*1024*1024" | |
| # VARIABLE WORKERS | |
| CMD_W=0 |