-
-
Notifications
You must be signed in to change notification settings - Fork 193
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
[14.0] backport stock_release_channel_auto_release #566
base: 14.0
Are you sure you want to change the base?
Conversation
00040d1
to
88e163b
Compare
stock_available_to_promise_release/migrations/16.0.1.0.0/post-migrate.py
Outdated
Show resolved
Hide resolved
df75d9b
to
cb38676
Compare
@TDu Can you rebase now that the other one has been merged? |
3cbc3da
to
7005bb7
Compare
981e27d
to
2851fbd
Compare
Rebased |
@TDu Tests are failing |
09b9bf1
to
2f3313e
Compare
b0f0cb3
to
f373741
Compare
Rebased on 14.0 |
572a4ef
to
f6ec8db
Compare
f6ec8db
to
7801f64
Compare
On this one I do not understand why the tests are failing. Tests seem to be failing because a default value from an odoo module |
4770aee
to
b7e3b9e
Compare
@TDu tests execution must be fixed but there's a dependency issue related to development status. |
b7e3b9e
to
2c715c7
Compare
I thought moving the decorator from the common class to the actual test classes did solve the issues as I was then unable to reproduce it locally anymore. However, last CI run is still failing because the Considering the following log appearing in the CI: There must be something wrong in the building of the test suite, but without being able to reproduce or access the failing server, I'm not sure we can do much. |
|
||
def _get_pickings_to_release(self): | ||
"""Get the pickings to release.""" | ||
domain = self._field_picking_domains()["count_picking_release_ready"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
domain = self._field_picking_domains()["count_picking_release_ready"] | |
domain = self._field_picking_domains()["release_ready"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TDu Can you do this simple change and rebase ?
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
This addons define an automatic release mode on the release channels. By default release channels manage the release of the transfers in batch mode. This means that the transfers are released only when the user manually triggers the release process by clicking on the release button. When the automatic release mode is enabled, the transfers are released automatically when a new transfer is added to the channel or as soon a product becomes available. As for the batch mode, the automatic release process is only active on open channels. When is locked, the automatic release process is stopped. Once the channel is unlocked, the automatic release process is restarted and transfers into the channel are released if they are ready to be released (IOW if quantities are available for moves not yet released).
d235b2f
to
184f64a
Compare
I just finished OCA/stock-logistics-warehouse#2122 |
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
This is a backport from 16
It still depends on
ref.: rau-117