Skip to content

Commit

Permalink
çek/senet bordro girişlerindeki adat hesabında kullanılan bordro tari…
Browse files Browse the repository at this point in the history
…hi çek/senetlerin vade tarihinden ileri olduğu durumda en küçük vadeli çek/senet vadesi baz tarih olarak kullanılacak şekilde düzenlendi, closes #96.
  • Loading branch information
mdpinar committed May 7, 2017
1 parent 9fe5c24 commit 94bd13a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions public/javascripts/crud/chqbll_payrolls.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,15 @@ function findTotals() {
var baseDate = moment($("#transDate").val(), 'DD/MM/YYYY');
var rowCount = document.getElementById('chqbllTable').rows.length;

//checks whether base date is before any due dates. if so, base date is changed with the earliest due date.
for(var rowNo=0;rowNo<rowCount;rowNo++) {
var chqbllBaseId = '#details\\['+rowNo+'\\]\\_';
if (isDate($(chqbllBaseId + 'dueDate').val())) {
var dueDate = moment($(chqbllBaseId + 'dueDate').val(), 'DD/MM/YYYY');
if (dueDate.isBefore(baseDate)) baseDate = dueDate;
}
}

for(var rowNo=0;rowNo<rowCount;rowNo++) {
var chqbllBaseId = '#details\\['+rowNo+'\\]\\_';

Expand Down
5 changes: 4 additions & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
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ı.
- tüm formlara kayıt ve onay butonları için kısayol tuşları tanımlandı.
örneğin kayıt butonu kısayolu: firefox alt+shift+k, diğer tüm tarayıcılar için alt+k
- debian dağıtımları için deamon ve server start script dosyaları eklendi.
- çek/senet bordro girişlerinde, baz (yani bordro) tarihi tablodaki çek/senet vade tarihlerinden daha ileride olduğunda kaydetmiyordu,
yeni düzenleme ile bu durumda en gerideki vade tarihi baz tarih olarak kullanılır hale getirildi. böylece adat hesabındaki eksi durum düzelmiş oldu.

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
Expand Down

0 comments on commit 94bd13a

Please sign in to comment.