Main Version | SaaS Version | Release Date | End of life | Bug fix |
---|---|---|---|---|
7.0 | saas~1 | |||
saas~2-5 | ||||
8.0 | September 2014 | October 2017 | NO | |
saas~6 | February 2014 | October 2017 | NO | |
9.0 | October 2015 | October 2018 | NO | |
saas~7-10 | -- | -- | -- | |
saas~11 | May 2016 | October 2018 | NO | |
saas~12-13 | -- | -- | -- |
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
# Author: Ryan Cole | |
# Website: https://ryanc.me | |
# GitHub: https://github.com/MGinshe | |
# Usage: | |
# Place this file in /etc/nginx/sites-enabled/ | |
# Make sure you edit the DOMAIN_HERE and SSL_CERTIFICATE, and DB_FILTER sections | |
# | |
# Note: This config file is designed to be used with the Odoo dbfilter_from_header module | |
# https://apps.openerp.com/apps/modules/9.0/dbfilter_from_header/ |
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
upstream odoo-server { | |
server 0.0.0.0:8069; | |
} | |
upstream odoo-server-im { | |
server 0.0.0.0:8072 weight=1 fail_timeout=0; | |
} | |
server { |
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 wordpress_xmlrpc import Client, WordPressPost | |
from wordpress_xmlrpc.methods.posts import NewPost | |
#authenticate | |
wp_url = "http://192.168.50.100:8051/xmlrpc.php" | |
wp_username = "admin" | |
wp_password = "12" | |
wp = Client(wp_url, wp_username, wp_password) | |
#post and activate new post |
People
![]() :bowtie: |
๐ :smile: |
๐ :laughing: |
---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
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
<record forcecreate="True" id="product_purchase_deposit_expense_hk" model="ir.property"> | |
<field name="name">property_account_expense_id</field> | |
<field name="fields_id" search="[('model','=','product.template'),('name','=','property_account_expense_id')]"/> | |
<field name="res_id" eval="'product.template,'+str(ref('product_purchase_deposit'))"/> <!-- External ID --> | |
<field name="value" model="account.account" search="[('code','=','2300'),('company_id','=',ref('hbx_data.company_hbx_hk'))]" /> <!-- Odoo domain --> | |
<field name="company_id" ref="hbx_data.company_hbx_hk"/> <!-- External ID --> | |
</record> |
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
<record id="unique_sequence_id" model="ir.sequence"> | |
<field name="name">Sequence Name Goes Here</field> | |
<field name="code">your.sequence.code</field> | |
<field name="active">TRUE</field> | |
<field name="prefix">OR</field> | |
<field name="padding">5</field> | |
<field name="number_next">1</field> | |
<field name="number_increment">1</field> | |
</record> |
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 . import models |
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
# Installing Odoo on AWS | |
These are the steps I ran to get Odoo up and running on AWS using the free tiers (for now). | |
## Setup servers | |
### Create DB | |
Create an Postgres DB on Amazon RDS: | |
https://us-east-2.console.aws.amazon.com/rds/home?region=us-east-2#launch-dbinstance:ct=dbinstances: | |
### Create Server |
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 |
NewerOlder