mirror of
https://github.com/opencultureconsulting/openrefine-client.git
synced 2025-03-30 00:00:46 +01:00
Add ReconJudgmentFacet
This commit is contained in:
parent
8e2f44412f
commit
d3163dd693
@ -121,6 +121,14 @@ class BlankFacet(BoolFacet):
|
||||
expression='isBlank(value)', selection=selection)
|
||||
|
||||
|
||||
class ReconJudgmentFacet(TextFacet):
|
||||
def __init__(self, column, **options):
|
||||
super(ReconJudgmentFacet, self).__init__(column,
|
||||
expression=('forNonBlank(cell.recon.judgment, v, v, '
|
||||
'if(isNonBlank(value), "(unreconciled)", "(blank)"))'),
|
||||
**options)
|
||||
|
||||
|
||||
# Capitalize 'From' to get around python's reserved word.
|
||||
class NumericFacet(Facet):
|
||||
def __init__(self, column, From=None, to=None, expression='value',
|
||||
|
Loading…
x
Reference in New Issue
Block a user