forked from expo/troggle
starting jsn population when we know the data
This commit is contained in:
parent
7872e98cb2
commit
bc3da1182b
@ -59,6 +59,22 @@ wallet_blank_html = '''<html><body><H1>Wallet WALLET</H1>
|
|||||||
</UL>
|
</UL>
|
||||||
</body></html>
|
</body></html>
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
def CheckEmptyDate(wallet):
|
||||||
|
'''If date is not set, get it from a linked survex file. If several, pick the earliest.
|
||||||
|
|
||||||
|
Maybe also look at filedates for the scans in expofiles/surveyscans/ , but these can be re-set by copying.
|
||||||
|
'''
|
||||||
|
return
|
||||||
|
|
||||||
|
def CheckEmptyPeople(wallet):
|
||||||
|
'''If people list is empty, copy them from the survex files: all of them
|
||||||
|
|
||||||
|
To be a Troggle model change; a many:many relationship between wallets and people,
|
||||||
|
as well as being a list in the JSON file (which is the permanent repository). We want the many:many
|
||||||
|
relationship so that we can filter wallets based on a person.
|
||||||
|
'''
|
||||||
|
return
|
||||||
|
|
||||||
def LoadListScansFile(wallet):
|
def LoadListScansFile(wallet):
|
||||||
gld = [ ]
|
gld = [ ]
|
||||||
@ -156,6 +172,8 @@ def load_all_scans():
|
|||||||
# line 347 of view/uploads.py and needs refactoring for loading contentsjson
|
# line 347 of view/uploads.py and needs refactoring for loading contentsjson
|
||||||
wallet.save()
|
wallet.save()
|
||||||
LoadListScansFile(wallet)
|
LoadListScansFile(wallet)
|
||||||
|
CheckEmptyDate(wallet)
|
||||||
|
CheckEmptyPeople(wallet)
|
||||||
CopyWalletData(wallet)
|
CopyWalletData(wallet)
|
||||||
|
|
||||||
# what is this?
|
# what is this?
|
||||||
|
Loading…
x
Reference in New Issue
Block a user