Commit 431db066773f0307f0a37d2b156b12fc1c10b7e1
1 parent
a5ec7aa4
update...
Showing
2 changed files
with
11 additions
and
1 deletions
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/lj_zrw.html
| ... | ... | @@ -126,7 +126,12 @@ |
| 126 | 126 | {{each list as task i}} |
| 127 | 127 | <dl data-id="{{task.id}}"> |
| 128 | 128 | <dd>{{i+1}}</dd> |
| 129 | - <dd><span class="nt-dictionary" data-group="ChildTaskType">{{task.type2}}</span></dd> | |
| 129 | + <dd> | |
| 130 | + <span class="nt-dictionary" data-group="ChildTaskType">{{task.type2}}</span> | |
| 131 | + {{if task.noClerk}} | |
| 132 | + (无售) | |
| 133 | + {{/if}} | |
| 134 | + </dd> | |
| 130 | 135 | <dd>{{task.startStationName}}</dd> |
| 131 | 136 | <dd>{{task.endStationName}}</dd> |
| 132 | 137 | <dd>{{task.startDate}}</dd> | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/sub_task_v2/add_range_turn.html
| ... | ... | @@ -196,6 +196,11 @@ |
| 196 | 196 | * 空驶调头 |
| 197 | 197 | */ |
| 198 | 198 | function emptyTurn() { |
| 199 | + if($('#turnStationSelect', topf).val()==''){ | |
| 200 | + notify_err('你必须先选择调头站点!'); | |
| 201 | + this.checked=false; | |
| 202 | + return; | |
| 203 | + } | |
| 199 | 204 | if(this.checked){ |
| 200 | 205 | //烂班2 烂全程 |
| 201 | 206 | $f('startStation', df2).val(sch.zdzCode); | ... | ... |