Skip to content

Commit

Permalink
tüm formlara kayıt ve onay butonları için kısayol tuşları tanımlandı, c…
Browse files Browse the repository at this point in the history
…loses #98.
  • Loading branch information
mdpinar committed May 7, 2017
1 parent aeb101e commit 9fe5c24
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion app/views/admins/data_transfer/ws2ws_form.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ <h5>@Messages("other")</h5>

<div style="height:29px" class="form-title">
<div class="pull-right">
<input id="submitSaveBtn" type="submit" value="@Messages("transfer")" class="btn btn-primary" style="margin-top:2px"/>
<input id="submitSaveBtn" type="submit" value="@Messages("transfer")" class="btn btn-primary" style="margin-top:2px" accesskey="t"/>
</div>
</div>
}
Expand Down
2 changes: 1 addition & 1 deletion app/views/admins/document/upload_form.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<a type="submit" class="btn btn-small btn-success" onclick="$('#uploadForm').toggle()">@Messages("import")</a>

@if(totalRowCount > 0) {
<a type="submit" class="btn btn-small btn-default" onclick="$('#uploadForm').hide();location.reload();" href="@admin.routes.Documents.export">@Messages("export")</a>
<a type="submit" class="btn btn-small btn-default" onclick="$('#uploadForm').hide();location.reload();" href="@admin.routes.Documents.export" accesskey="u">@Messages("export")</a>
}

<p style="height:30px"></p>
Expand Down
2 changes: 1 addition & 1 deletion app/views/chqblls/selection/modal.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h4>@Messages(sort.key)</h4>

<div class="modal-footer">
<button id="submitSaveBtn" class="btn btn-primary" data-dismiss="modal" aria-hidden="true"
onclick="selection_transfer()">@Messages("transfer.selection")</button>
onclick="selection_transfer()" accesskey="k">@Messages("transfer.selection")</button>
<button class="btn" data-dismiss="modal" aria-hidden="true" onclick="selection_clear()">@Messages("close")</button>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/views/login.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h3>@Messages("login")</h3>
<div class="clearfix"/>

<div style="float:right; margin-right:11px">
<button class="btn btn-primary" type="submit">Login</button>
<button class="btn btn-primary" type="submit" accesskey="l">Login</button>
</div>
<div class="clearfix" />

Expand Down
2 changes: 1 addition & 1 deletion app/views/orders/trans_approval/form.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ <h4>@Messages("approval.properties")</h4>
</div>

<div class="modal-footer">
<input type="submit" value="@Messages("save")" class="btn btn-primary" />
<input type="submit" value="@Messages("save")" class="btn btn-primary" accesskey="k"/>
<button class="btn" data-dismiss="modal" aria-hidden="true" onclick="selection_clear()">@Messages("close")</button>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/views/tools/imports/forms_header.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@if(hasRemoveButton && id != null && ! id.isEmpty()) {
@if(utils.AuthManager.hasPrivilege(right, enums.RightLevel.Delete)) {
@helper.form(link, 'id -> "deleteForm", 'style -> "margin-top:-55px") {
<input id="submitRemoveBtn" style="float:right; width:45px;" class="btn btn-danger" value="@Messages("remove")" />
<input id="submitRemoveBtn" style="float:right; width:45px;" class="btn btn-danger" value="@Messages("remove")" accesskey="d"/>
}

<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion app/views/tools/templates/ajax_form.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h4>@if(title != null) {@title} else {@Messages(right.key)}</h4>
</div>

<div class="modal-footer">
<button id="submitSaveBtn" class="btn btn-primary" onclick="save()">@Messages("save")</button>
<button id="submitSaveBtn" class="btn btn-primary" onclick="save()" accesskey="k">@Messages("save")</button>
<button class="btn" data-dismiss="modal" aria-hidden="true" onclick="if(conRecording) list();">@Messages("close")</button>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/views/tools/templates/form_footer_bar.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div class="controls">
@if(utils.AuthManager.hasSavePrivilege(right, id)) {
@if(specialIf == null || specialIf) {
<input id="submitSaveBtn" type="submit" value="@Messages("save")" class="btn btn-primary">
<input id="submitSaveBtn" type="submit" value="@Messages("save")" class="btn btn-primary" accesskey="k">
}
}
@if(hasGoBackButton) {
Expand Down
2 changes: 1 addition & 1 deletion app/views/tools/templates/report_form.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
</fieldset>

<div class="controls">
<input type="submit" value="@Messages("report")" class="btn btn-primary" style="margin-top:3px"/>
<input type="submit" value="@Messages("report")" class="btn btn-primary" style="margin-top:3px" accesskey="r"/>
</div>
}
@if(alertNote != null) {
Expand Down
2 changes: 1 addition & 1 deletion app/views/tools/templates/search_form.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@fields
<div style="padding-top:8px">
<div class="controls inline">
<button type="submit" class="btn" onclick="$('.pageIndex').val('0');">
<button type="submit" class="btn" onclick="$('.pageIndex').val('0');" accesskey="a">
<i class="icon-search"></i> @Messages("search")
</button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/waybills/trans_approval/form.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ <h4>@Messages("approval.properties")</h4>
</div>

<div class="modal-footer">
<input type="submit" value="@Messages("save")" class="btn btn-primary" />
<input type="submit" value="@Messages("save")" class="btn btn-primary" accesskey="k" />
<button class="btn" data-dismiss="modal" aria-hidden="true" onclick="selection_clear()">@Messages("close")</button>
</div>

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import play.Project._

name := "seyhan"

version := "1.0.18"
version := "1.0.19"

libraryDependencies ++= Seq(
jdbc,
Expand Down
6 changes: 5 additions & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
sürüm 1.0.18 - 20/03/2017
sürüm 1.0.19 - 08/06/2017
- tüm formlara kayıt ve onay butonları için kısayol tuşları tanımlandı.
- debian dağıtımları için deamon ve server start script dosyaları eklendi.

sürüm 1.0.18 - 20/03/2017
- çoğaltma yolu ile üretilen cari fişlerinde cari hesap seçiminde sorun oluyordu, düzeltidi
- sağ üst köşedeki kısayol menüsünden aktif olan kullanıcının bilgileri düzeltilemiyordu, çözüldü
- cari hareket raporunda "cari bazlı" seçeneğinin dışındakiler hata veriyordu, düzeltildi
Expand Down

0 comments on commit 9fe5c24

Please sign in to comment.