X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fdb%2FTransaction.java;h=fcbdd82b7fc5d289fa0ff3520c5078ea3d11d246;hb=451569cb01799c684b210cd6839d68825092a117;hp=d67cedf53d6df0002205cbd170a886f971ace772;hpb=93545c6fbf1244fbd96ecfc50e1115dbdc25f9ae;p=mobile-ledger.git diff --git a/app/src/main/java/net/ktnx/mobileledger/db/Transaction.java b/app/src/main/java/net/ktnx/mobileledger/db/Transaction.java index d67cedf5..fcbdd82b 100644 --- a/app/src/main/java/net/ktnx/mobileledger/db/Transaction.java +++ b/app/src/main/java/net/ktnx/mobileledger/db/Transaction.java @@ -36,8 +36,8 @@ create index idx_transaction_description on transactions(description); @Entity(tableName = "transactions", foreignKeys = { @ForeignKey(entity = Profile.class, parentColumns = "id", childColumns = "profile_id", onDelete = ForeignKey.CASCADE, onUpdate = ForeignKey.RESTRICT) -}, indices = {@Index(name = "un_transactions_data_hash", unique = true, - value = {"profile_id", "data_hash"}), +}, indices = {@Index(name = "un_transactions_ledger_id", unique = true, + value = {"profile_id", "ledger_id"}), @Index(name = "idx_transaction_description", value = "description"), @Index(name = "fk_transaction_profile", value = "profile_id") }) @@ -45,6 +45,8 @@ public class Transaction { @ColumnInfo @PrimaryKey(autoGenerate = true) long id; + @ColumnInfo(name = "ledger_id") + long ledgerId; @ColumnInfo(name = "profile_id") private long profileId; @ColumnInfo(name = "data_hash") @@ -62,7 +64,13 @@ public class Transaction { @ColumnInfo private String comment; @ColumnInfo - private int generation = 0; + private long generation = 0; + public long getLedgerId() { + return ledgerId; + } + public void setLedgerId(long ledgerId) { + this.ledgerId = ledgerId; + } public long getProfileId() { return profileId; } @@ -111,11 +119,23 @@ public class Transaction { public void setComment(String comment) { this.comment = comment; } - public int getGeneration() { + public long getGeneration() { return generation; } - public void setGeneration(int generation) { + public void setGeneration(long generation) { this.generation = generation; } + public void copyDataFrom(Transaction o) { + // id = o.id; + ledgerId = o.ledgerId; + profileId = o.profileId; + dataHash = o.dataHash; + year = o.year; + month = o.month; + day = o.day; + description = o.description; + comment = o.comment; + generation = o.generation; + } }