Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. env.cr.execute('''ALTER TABLE product_template DROP COLUMN IF EXISTS l10n_mx_edi_tariff_fraction_id;''')
  2. env.cr.execute('''DROP TABLE IF EXISTS l10n_mx_edi_tariff_fraction''')
  3. env.cr.execute('''ALTER TABLE res_company DROP COLUMN IF EXISTS l10n_mx_edi_locality_id;''')
  4. env.cr.execute('''DROP TABLE IF EXISTS l10n_mx_edi_locality''')
  5.  
  6. env.cr.execute('''DELETE FROM ir_model WHERE model='l10n_mx_edi.tariff.fraction' ''')
  7. env.cr.execute('''DELETE FROM ir_model WHERE model='l10n_mx_edi.res.locality' ''')
  8. env.cr.execute('''DELETE FROM ir_model_fields WHERE name = 'l10n_mx_edi_tariff_fraction_id' and model='product.template' ''')
  9. env.cr.execute('''DELETE FROM ir_model_fields WHERE name = 'l10n_mx_edi_tariff_fraction_id' and model='product.product' ''')
  10. env.cr.execute('''DELETE FROM ir_model_fields WHERE name = 'l10n_mx_edi_locality_id' and model='res.company' ''')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement