Work correctly with checked.ntlm.
This commit is contained in:
parent
65ca6ecf6e
commit
46fb2f8e8e
1 changed files with 7 additions and 2 deletions
|
@ -100,7 +100,11 @@
|
|||
(compare-member-id (member-id mr) varsym-id))
|
||||
(lambda (mr)
|
||||
(member-record-add-payment mr transaction)))
|
||||
(members-base-add-unpaired mb transaction))
|
||||
(if (or (not last-checked)
|
||||
(> (bank-transaction-id transaction)
|
||||
last-checked))
|
||||
(members-base-add-unpaired mb transaction)
|
||||
mb))
|
||||
(cdr transactions))))))
|
||||
|
||||
;; Reads the payments
|
||||
|
@ -132,7 +136,8 @@
|
|||
(lambda ()
|
||||
(with-input-from-file file-name
|
||||
(lambda ()
|
||||
(number->string (read-line)))))))))
|
||||
(let ((str (read-line)))
|
||||
(string->number str)))))))))
|
||||
|
||||
;; If apikeys is not #f, loads the account numbers, loads bank
|
||||
;; accounts and processes transactions.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue