added state wage record, but it isn't quite right
This commit is contained in:
parent
068f1bbae4
commit
179f67bac9
3 changed files with 120 additions and 48 deletions
|
@ -6,16 +6,17 @@ RECORD_TYPES = [
|
|||
'EmployeeWageRecord',
|
||||
'OptionalEmployeeWageRecord',
|
||||
'TotalRecord',
|
||||
'StateWageRecord',
|
||||
'OptionalTotalRecord',
|
||||
'StateTotalRecord',
|
||||
'FinalRecord',
|
||||
'FinalRecord'
|
||||
]
|
||||
|
||||
def test():
|
||||
import record, model
|
||||
for rname in RECORD_TYPES:
|
||||
inst = record.__dict__[rname]()
|
||||
print type(inst), len(inst.output())
|
||||
print type(inst), inst.record_identifier, len(inst.output())
|
||||
|
||||
|
||||
def test_dump():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue