framework upgrade

This commit is contained in:
Yhael S
2023-08-25 02:08:56 -05:00
parent 45d19223c7
commit b822c082c7
21 changed files with 576 additions and 421 deletions

20
.vscode/launch.json vendored
View File

@@ -2,27 +2,19 @@
"version": "0.2.0",
"configurations": [
{
"name": "Odoocker Debug",
"name": "Odoocker Debugger",
"type": "python",
"request": "attach",
"host": "localhost",
"port": 8069,
"debugServer": 8071,
"debugServer": 8070,
"justMyCode": false,
"pathMappings": [
{
"localRoot": "${workspaceFolder}/odoo/custom-addons",
"remoteRoot": "/usr/lib/python3/dist-packages/odoo/custom-addons"
},
{
"localRoot": "${workspaceFolder}/odoo/extra-addons",
"remoteRoot": "/usr/lib/python3/dist-packages/odoo/extra-addons"
},
// {
// "localRoot": "${workspaceFolder}/core/odoo",
// "remoteRoot": "/usr/bin/odoo"
// }
"localRoot": "${workspaceFolder}/odoo",
"remoteRoot": "/usr/lib/python3/dist-packages/odoo"
}
]
}
]
}
}