mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
9 lines
198 B
Python
Executable File
9 lines
198 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
|
|
from . import models
|
|
|
|
|
|
def set_product_purchase_qty(cr, registry):
|
|
cr.execute("""update purchase_order_line
|
|
set product_purchase_qty = product_qty""")
|