Server: Add check for position col in table

This commit is contained in:
Arthur Golubtsov
2019-10-29 16:38:13 +03:00
parent 167fafbbb0
commit 1adade0bda

View File

@@ -305,10 +305,10 @@ def check_selfcheck(item):
@col_check(7)
def check_cal_status(item):
def check_pos_status(item):
if not item:
return None
return True
return str(item).split(' ')[0] != 'nan'
@col_check(8)