priority bug
parent
c2d5fc7030
commit
62a2093a8d
|
|
@ -197,16 +197,16 @@ class AutoLayout:
|
|||
if '华大' in row['classification']:
|
||||
return 1100
|
||||
|
||||
if '超加急' in row['priority']:
|
||||
if '超加急' in str(row['priority']):
|
||||
return 1500
|
||||
|
||||
if row['拆分方式'] == '极致周期' or '极致' in row['拆分方式']:
|
||||
return 2000
|
||||
|
||||
if '加急' in row['priority']:
|
||||
if '加急' in str(row['priority']):
|
||||
return 3000
|
||||
|
||||
if '补测' in row['priority']:
|
||||
if '补测' in str(row['priority']):
|
||||
return 4000
|
||||
|
||||
mytime = row['time']
|
||||
|
|
|
|||
Loading…
Reference in New Issue