MCPcopy Create free account
hub / github.com/Odoo-mobile/framework / getDatabaseServerColumns

Method getDatabaseServerColumns

src/com/odoo/orm/OEDatabase.java:661–669  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

659 }
660
661 public List<OEColumn> getDatabaseServerColumns() {
662 List<OEColumn> cols = new ArrayList<OEColumn>();
663 for (OEColumn col : mDBHelper.getModelColumns()) {
664 if (col.canSync()) {
665 cols.add(col);
666 }
667 }
668 return cols;
669 }
670
671 public int lastId() {
672 int last_id = 0;

Callers 1

search_readMethod · 0.80

Calls 3

canSyncMethod · 0.80
getModelColumnsMethod · 0.65
addMethod · 0.45

Tested by

no test coverage detected