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

[MIG][17.0] scrap_reason_code: Migration to 17.0 #1906

Merged
merged 38 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
226857a
Scrap reason code module
Nov 26, 2019
5d4d038
[MIG] scrap_reason_code from v11 to v13
Khalid-SerpentCS Jan 28, 2020
a57a20a
[UPD] Update scrap_reason_code.pot
oca-travis Feb 3, 2020
30004b6
[UPD] README.rst
OCA-git-bot Feb 3, 2020
b5a8ea0
pre-commit update
OCA-git-bot Mar 14, 2020
c17c8da
[ADD] migration script, change model name from reason.code to scrap.r…
Mar 27, 2020
5661627
[UPD] Update scrap_reason_code.pot
oca-travis Apr 1, 2020
eb2f011
[UPD] README.rst
OCA-git-bot Apr 1, 2020
aa2d858
[MIG] Module migrated in v14.
Chandresh-SerpentCS Feb 17, 2021
a1c1c07
[UPD] Update scrap_reason_code.pot
oca-travis Mar 8, 2021
11def88
[UPD] README.rst
OCA-git-bot Mar 8, 2021
e87d8fd
Added translation using Weblate (French)
remi-filament May 12, 2021
e541c26
Added translation using Weblate (Spanish)
dalonsod Mar 25, 2022
da7876e
[IMP] reason code location set as a scrap location if set
Aug 19, 2020
b5d36fd
[IMP] scrap_reason_code: Added Test Coverage
patrickrwilson May 12, 2022
06e418b
[IMP] scrap_reason_code: Moved common code to own method
patrickrwilson May 16, 2022
c60f2ad
scrap_reason_code 14.0.1.0.1
OCA-git-bot May 16, 2022
54e8771
[MIG] scrap_reason_code: Migration to 15.0
glitchov Oct 10, 2022
47a14e6
[UPD] Update scrap_reason_code.pot
Nov 9, 2022
daa76ef
[UPD] README.rst
OCA-git-bot Nov 9, 2022
7bf11b5
scrap_reason_code 15.0.1.0.1
OCA-git-bot Nov 9, 2022
5be0a51
[MIG] scrap_reason_code: Migration to 16.0
Nov 9, 2022
bfa4d12
[UPD] Update scrap_reason_code.pot
Dec 6, 2022
e41f5ca
[UPD] README.rst
OCA-git-bot Dec 6, 2022
dfe0afe
scrap_reason_code 16.0.1.0.2
OCA-git-bot Dec 6, 2022
11380ba
[IMP] scrap_reason_code: define product categories allowed for each code
LoisRForgeFlow May 18, 2023
ae6411f
[UPD] Update scrap_reason_code.pot
May 25, 2023
bc381eb
[UPD] README.rst
OCA-git-bot May 25, 2023
54f9f40
scrap_reason_code 16.0.1.1.0
OCA-git-bot May 25, 2023
ea43c1d
Update translation files
weblate May 25, 2023
09c4a66
Translated using Weblate (Spanish)
Ivorra78 Jul 20, 2023
ef806eb
Translated using Weblate (Spanish)
Ivorra78 Jul 27, 2023
8e16958
[UPD] README.rst
OCA-git-bot Sep 3, 2023
a9bf69e
Translated using Weblate (French)
LESTRAT21 Nov 10, 2023
e7ce861
Added translation using Weblate (Italian)
mymage Nov 17, 2023
783dd83
Translated using Weblate (Italian)
mymage Nov 21, 2023
1204b07
[IMP] scrap_reason_code: pre-commit auto fixes
john-herholz-dt Dec 21, 2023
7d4b9c6
[MIG] scrap_reason_code: Migration to 17.0
john-herholz-dt Dec 21, 2023
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
2 changes: 1 addition & 1 deletion scrap_reason_code/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
"name": "Scrap Reason Code",
"version": "16.0.1.1.0",
"version": "17.0.1.0.0",
"license": "AGPL-3",
"summary": "Reason code for scrapping",
"author": "Open Source Integrators, Odoo Community Association (OCA)",
Expand Down
1 change: 0 additions & 1 deletion scrap_reason_code/models/stock_scrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class StockScrap(models.Model):

reason_code_id = fields.Many2one(
comodel_name="scrap.reason.code",
states={"done": [("readonly", True)]},
domain="[('id', 'in', allowed_reason_code_ids)]",
)
allowed_reason_code_ids = fields.Many2many(
Expand Down
Loading
Loading