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
import threading | |
import time | |
def transaction_1(): | |
env = self.env(context={'active_test': False}) | |
with env.registry.cursor() as cr: | |
env1 = self.env(cr=cr) | |
lines = env1['account.bank.statement.line'].browse(st_lines.ids) | |
lines.write({'field_name': 'value'}) | |
time.sleep(2) # Simulate delay to overlap with transaction_2 |
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
#!/bin/bash | |
brew install libpq | |
echo 'export PATH="/opt/homebrew/opt/libpq/bin:$PATH"' >> ~/.zshrc | |
sudo ln -s $(brew --prefix)/opt/libpq/bin/psql /usr/local/bin/psql |
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 code line aims to fix the following error: | |
# urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate | |
# Run Command. Here 3.11 actual Python version | |
/Applications/Python\ 3.11/Install\ Certificates.command |
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
from odoo import models | |
class RecordMergeMixin(models.AbstractModel): | |
_name = 'record.merge.mixin' | |
_description = 'Record Merge Mixin Abstract' | |
def get_referencing_fields(self, exclude_models=None): | |
domain = [ | |
('relation', '=', self._name), |
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
def try_unlink(self): | |
for record in self: | |
try: | |
with self.env.cr.savepoint(): | |
record.unlink() | |
self.env.invalidate_all() | |
except Exception as e: | |
pass |
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
sudo nano /etc/default/grub | |
# Add "mem_sleep_default=deep" to GRUB_CMDLINE_LINUX_DEFAULT line | |
# Save file | |
sudo update-grub | |
sudo reboot |
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
# If odoo deployed in docker | |
# set the system parameter "report.url" as "http://localhost:8069" |
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
#!/bin/bash | |
# That snippet fixes the issue related with shasum path on Manjaro Arch Linux (Gnome) | |
# /usr/bin/shasum: No such file or directory | |
sudo ln -s /usr/bin/core_perl/shasum /usr/bin/shasum |
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
stages: | |
- child-pipeline-generator | |
- child-pipeline-trigger | |
generate-child-pipeline: | |
stage: child-pipeline-generator | |
image: python:3.9-slim-buster | |
script: | |
- python3 main.py | |
artifacts: |
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
#!/usr/bin/env python | |
class CustomCompare(object): | |
def __init__(self, obj, order): | |
self.obj = obj | |
self.order = order | |
def __lt__(self, other): | |
return self._index_of(self.obj) < self._index_of(other.obj) |
NewerOlder