Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add a maximum order quantity #98

Draft
wants to merge 56 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
ecf7c17
Article units squash
lentschi Mar 16, 2024
cfbe5b7
Fix typos and removed dead code
lentschi Mar 22, 2024
2a42360
Remove obsolete testing shared db along with its tasks
lentschi Mar 22, 2024
539613b
Added no-upstream for byebug
lentschi Mar 22, 2024
ba11e4b
On #47 Adapt unit ratio export/import to be interpreted as a conversi…
lentschi Mar 23, 2024
5bcea4a
On #21: stock orders: prohibit 'ordering' more than what's on stock
lentschi Mar 23, 2024
b39cb77
Started with #8
lentschi Mar 23, 2024
51c2703
Fixes #53
lentschi Mar 29, 2024
37d1b27
fix: round article quantity in order article pdf
yksflip Mar 29, 2024
d831092
Don't show articles migrate button for newly created suppliers
lentschi Mar 31, 2024
acc982d
On #8: All existing specs pass now
lentschi Apr 6, 2024
e5a2398
Rubocop fixes
lentschi Apr 6, 2024
74ac2f3
First proposal for #35
lentschi Apr 6, 2024
cb38646
On #15: Open with inset button instead of on every focus
lentschi Apr 6, 2024
8b6d01a
Fixes #56
lentschi Apr 12, 2024
90c4fcb
On #35: Adapted list of default units
lentschi Apr 12, 2024
1c9612c
Fixes #42
lentschi Apr 12, 2024
4106ee8
Fixes #42 again
lentschi Apr 12, 2024
0abb392
On #8: Implemented article version model unit tests
lentschi Apr 12, 2024
eb33fe8
On #8: Adapted article version unit tests
lentschi Apr 19, 2024
8ed4bb9
On #35 Added missing metric default unit: GRM
lentschi Apr 19, 2024
be44773
Fixes #56 again
lentschi Apr 19, 2024
6eb79bf
Fixes #59
lentschi Apr 21, 2024
a51304b
Fixes #58
lentschi Apr 21, 2024
3939556
Fixes #60
lentschi Apr 21, 2024
3941539
Fixes #65
lentschi Apr 26, 2024
6c77080
Fixes #62
lentschi Apr 26, 2024
476e322
On #8: Fixes failing tests on github
lentschi Apr 28, 2024
3ce6390
On #8: Article units integration tests
lentschi May 1, 2024
c67a465
On #8: Started with unit tests for supplier article sharing
lentschi May 5, 2024
de4792a
Fixes #68
lentschi May 20, 2024
b61b847
Fixes #67
lentschi May 20, 2024
2e19cd3
Fixes #69
lentschi May 24, 2024
2c02208
On #8: Done with sync specs
lentschi May 24, 2024
67041a1
On #15: Fixes conversion popover min-width
lentschi May 24, 2024
2ae2c6d
Fixes #61
lentschi Jun 7, 2024
0754f15
Fixes #73
lentschi Jun 7, 2024
222ada6
Better alias for #71
lentschi Jun 7, 2024
97a3f48
On #64: Add missing unit labels
lentschi Jun 22, 2024
602cff1
On #42: Fax pdf/csv: Decimals dependant on supplier_order_unit's si c…
lentschi Jun 28, 2024
366065f
feat: update seed files (#76)
yksflip Jul 5, 2024
8f87d7e
Fixes #66 (#74)
lentschi Jul 12, 2024
61a2b1a
Workaround for #78
lentschi Jul 13, 2024
681095b
Moved fork's migrations after rebase on upstream/master
lentschi Jul 26, 2024
dec2762
Fixes #85
lentschi Jul 26, 2024
9191f42
Allow price calculation for new records
lentschi Jul 26, 2024
3871c37
Fixes #83
lentschi Jul 26, 2024
756fda0
Another workaround for #78
lentschi Jul 26, 2024
b3bc712
Fixes #81
lentschi Jul 26, 2024
3be31d5
Article CSV: fix #47 and #46 (#84)
twothreenine Jul 26, 2024
3297e5e
Fix unit tests (broken since 3871c37a06f956ab897828e35e75c794d6c7bf53)
lentschi Jul 26, 2024
bb044e6
Fixes #86
lentschi Aug 2, 2024
cd2418c
Closes #77
lentschi Aug 2, 2024
3fca7de
Closes #10
lentschi Aug 2, 2024
99bc201
Started with #23
lentschi Aug 3, 2024
a9ccad9
feat: maximumx order quantity for order article
yksflip Sep 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
"env": {
"browser": true,
"jquery": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"no-unused-vars": ["error", { "vars": "local" }]
}
}
Loading
Loading