mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-22 03:30:04 -05:00
Only download transactions for the last year
Some FIs don't return *any* transactions if you ask them for *all* of them since the beginning of (UNIX) time...
This commit is contained in:
parent
f511c6ca75
commit
c4e1de3677
@ -54,7 +54,7 @@ func download() {
|
|||||||
AcctId: ofxgo.String(acctId),
|
AcctId: ofxgo.String(acctId),
|
||||||
AcctType: ofxgo.String(acctType),
|
AcctType: ofxgo.String(acctType),
|
||||||
},
|
},
|
||||||
DtStart: ofxgo.Date(time.Unix(0, 0)),
|
DtStart: ofxgo.Date(time.Now().AddDate(-1, 0, 0)),
|
||||||
DtEnd: ofxgo.Date(time.Now()),
|
DtEnd: ofxgo.Date(time.Now()),
|
||||||
Include: true,
|
Include: true,
|
||||||
}
|
}
|
||||||
|
@ -39,7 +39,7 @@ func bankTransactions() {
|
|||||||
AcctId: ofxgo.String(acctId),
|
AcctId: ofxgo.String(acctId),
|
||||||
AcctType: ofxgo.String(acctType),
|
AcctType: ofxgo.String(acctType),
|
||||||
},
|
},
|
||||||
DtStart: ofxgo.Date(time.Unix(0, 0)),
|
DtStart: ofxgo.Date(time.Now().AddDate(-1, 0, 0)),
|
||||||
DtEnd: ofxgo.Date(time.Now()),
|
DtEnd: ofxgo.Date(time.Now()),
|
||||||
Include: true,
|
Include: true,
|
||||||
}
|
}
|
||||||
|
@ -48,7 +48,7 @@ func ccDownload() {
|
|||||||
CCAcctFrom: ofxgo.CCAcct{
|
CCAcctFrom: ofxgo.CCAcct{
|
||||||
AcctId: ofxgo.String(acctId),
|
AcctId: ofxgo.String(acctId),
|
||||||
},
|
},
|
||||||
DtStart: ofxgo.Date(time.Unix(0, 0)),
|
DtStart: ofxgo.Date(time.Now().AddDate(-1, 0, 0)),
|
||||||
DtEnd: ofxgo.Date(time.Now()),
|
DtEnd: ofxgo.Date(time.Now()),
|
||||||
Include: true,
|
Include: true,
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ func ccTransactions() {
|
|||||||
CCAcctFrom: ofxgo.CCAcct{
|
CCAcctFrom: ofxgo.CCAcct{
|
||||||
AcctId: ofxgo.String(acctId),
|
AcctId: ofxgo.String(acctId),
|
||||||
},
|
},
|
||||||
DtStart: ofxgo.Date(time.Unix(0, 0)),
|
DtStart: ofxgo.Date(time.Now().AddDate(-1, 0, 0)),
|
||||||
DtEnd: ofxgo.Date(time.Now()),
|
DtEnd: ofxgo.Date(time.Now()),
|
||||||
Include: true,
|
Include: true,
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,7 @@ func invDownload() {
|
|||||||
BrokerId: ofxgo.String(brokerId),
|
BrokerId: ofxgo.String(brokerId),
|
||||||
AcctId: ofxgo.String(acctId),
|
AcctId: ofxgo.String(acctId),
|
||||||
},
|
},
|
||||||
DtStart: ofxgo.Date(time.Unix(0, 0)),
|
DtStart: ofxgo.Date(time.Now().AddDate(-1, 0, 0)),
|
||||||
DtEnd: ofxgo.Date(time.Now()),
|
DtEnd: ofxgo.Date(time.Now()),
|
||||||
Include: true,
|
Include: true,
|
||||||
IncludeOO: true,
|
IncludeOO: true,
|
||||||
|
@ -38,7 +38,7 @@ func invTransactions() {
|
|||||||
BrokerId: ofxgo.String(brokerId),
|
BrokerId: ofxgo.String(brokerId),
|
||||||
AcctId: ofxgo.String(acctId),
|
AcctId: ofxgo.String(acctId),
|
||||||
},
|
},
|
||||||
DtStart: ofxgo.Date(time.Unix(0, 0)),
|
DtStart: ofxgo.Date(time.Now().AddDate(-1, 0, 0)),
|
||||||
DtEnd: ofxgo.Date(time.Now()),
|
DtEnd: ofxgo.Date(time.Now()),
|
||||||
Include: true,
|
Include: true,
|
||||||
IncludeBalance: true,
|
IncludeBalance: true,
|
||||||
|
Loading…
Reference in New Issue
Block a user