Fix for when document is too large

This commit is contained in:
Hillel Coren 2016-05-29 18:43:57 +03:00
parent 2cd1517dd6
commit da860c0d07
2 changed files with 12 additions and 4 deletions

View File

@ -254,6 +254,7 @@
dropzone.on("removedfile",handleDocumentRemoved); dropzone.on("removedfile",handleDocumentRemoved);
dropzone.on("success",handleDocumentUploaded); dropzone.on("success",handleDocumentUploaded);
dropzone.on("canceled",handleDocumentCanceled); dropzone.on("canceled",handleDocumentCanceled);
dropzone.on("error",handleDocumentError);
for (var i=0; i<model.documents().length; i++) { for (var i=0; i<model.documents().length; i++) {
var document = model.documents()[i]; var document = model.documents()[i];
var mockFile = { var mockFile = {
@ -411,8 +412,11 @@
} }
} }
function handleDocumentCanceled() function handleDocumentCanceled() {
{ window.countUploadingDocuments--;
}
function handleDocumentError() {
window.countUploadingDocuments--; window.countUploadingDocuments--;
} }
@endif @endif

View File

@ -1003,6 +1003,7 @@
dropzone.on("removedfile",handleDocumentRemoved); dropzone.on("removedfile",handleDocumentRemoved);
dropzone.on("success",handleDocumentUploaded); dropzone.on("success",handleDocumentUploaded);
dropzone.on("canceled",handleDocumentCanceled); dropzone.on("canceled",handleDocumentCanceled);
dropzone.on("error",handleDocumentError);
for (var i=0; i<model.invoice().documents().length; i++) { for (var i=0; i<model.invoice().documents().length; i++) {
var document = model.invoice().documents()[i]; var document = model.invoice().documents()[i];
var mockFile = { var mockFile = {
@ -1435,8 +1436,11 @@
} }
} }
function handleDocumentCanceled() function handleDocumentCanceled() {
{ window.countUploadingDocuments--;
}
function handleDocumentError() {
window.countUploadingDocuments--; window.countUploadingDocuments--;
} }
@endif @endif