Skip to content

Commit 86c9da4

Browse files
committed
Refactors records management module structure and logic
Moves manifest and view/data files out of the main Python file to improve modularity and maintainability. Refactors models and controllers for clarity and adds inline documentation. Updates routes to support both GET and POST for pickup requests, enhancing usability. Prepares code for better separation of concerns and easier future development.
1 parent ee482a2 commit 86c9da4

File tree

3 files changed

+81
-281
lines changed

3 files changed

+81
-281
lines changed

.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python Debugger: Current File",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal"
13+
}
14+
]
15+
}https://vscode.dev/tunnel/maclan/Users/johncope/Documents/GitHub/ssh-git-github.com-odoo-odoo.git-8.0
16+
// This file was generated by the debugpy configuration generator.
17+
// To add additional configurations, edit the file and add them to the "configurations" array
18+
// For more information, see https://aka.ms/debugpy-config-json
19+
// To use this configuration, open the command palette (Ctrl+Shift+P) and select
20+
// "Debug: Open launch.json" to open the launch.json file, then select this configuration
21+
// from the dropdown in the debug panel and click the green play button to start debugging.

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.analysis.typeCheckingMode": "basic"
3+
}

0 commit comments

Comments
 (0)