Skip to content

Commit dc59c92

Browse files
committed
FIX
1 parent daba62f commit dc59c92

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

account_payment_pro_receiptbook/17.0.0.0/pre-migration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
@openupgrade.migrate()
1919
def migrate(env, version):
2020
# backup de columnas que nos interesan antes de que se borren
21-
openupgrade.copy_columns(env.cr, _column_copy)
21+
# openupgrade.copy_columns(env.cr, _column_copy)
2222
# backup de tables y checkbooks
2323
for old_table, new_table in _table_renames:
2424
if openupgrade.table_exists(env.cr, old_table) and not openupgrade.table_exists(env.cr, new_table):

sale_stock_ux/16.0.0.0/post-fix-for-cancel-remaining.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ def migrate(env, version):
1515
move.write({
1616
# 'date_deadline': line.order_id.commitment_date or line.order_id.date_order + datetime.timedelta(days=line.customer_lead or 0.0)),
1717
'date_deadline': line.order_id.commitment_date or line.order_id.date_order,
18-
'description_picking': line.name,
18+
# 'description_picking': line.name,
1919
# 'price_unit': new_run_private_method('sale.order.line', '_get_stock_move_price_unit', line.ids),
2020
})

0 commit comments

Comments
 (0)