I have reordering rules on automatic for raw materials. But i don't need reordering rules for products for sale. Is it possible to make an automated action to remove reordering rules when the product category is updated to Product?
この質問にフラグが付けられました
1
返信
8128
ビュー
You can do this by defining an automated action like so. Replace "Test" with the actual name of your product category ("Product" in your example above)
Python code:
for rule in env['stock.warehouse.orderpoint'].search([('product_id', 'in', record.product_variant_ids.ids)]):
rule.unlink()
Wow! You really saved me! Thank you so much Paresh!
| 関連投稿 | 返信 | ビュー | 活動 | |
|---|---|---|---|---|
|
|
0
9月 15
|
6125 | ||
|
|
0
7月 15
|
4788 | ||
|
|
0
3月 15
|
4816 | ||
|
|
2
4月 25
|
3140 | ||
|
|
3
4月 23
|
4386 |