Advertisement
Guest User

Untitled

a guest
Oct 8th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. In the __register__ of an module that add fields to party module, i have
  2.  
  3. cursor.execute(*sql_table.select(
  4. sql_table.id, sql_table.vat_country, sql_table.country,
  5. where=(sql_table.type == 'ar_foreign')))
  6.  
  7. and in version 4.0 i get an error
  8.  
  9. ProgrammingError: column a.vat_country does not exist
  10. LINE 1: SELECT "a"."id", "a"."vat_country", "a"."country" FROM "part...
  11.  
  12. if i remove the column a.vat_country it install without any problem, but dont know what i removed :D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement