function receiptYear(){
var form = $('#up');
$('#year').val($('#Y').val());
form.submit();
}
$(function() {
$('a[node-express="untread"]').click(function() {
$('td[node-express="msg"]').html($(this).attr('title'));
});
$("input[name='untreadPost']").click(function() {
$("table[post-box='ture']").hide();
});
$("input[node-untread='post']").click(function() {
$("table[post-box='ture']").show();
});
$("a[node-approval^='approval']").click(function() {
$("input[name='status']").val($(this).attr("diss-data"));
$("form[name='invoiceApproval']").submit();
});
$("a[node-invoice='droppedInvoice']").click(function() {
$("input[name='droppedIidKey']").val($(this).attr("diss-data"));
});
$("a[node-invoice='untreadInvoice']").click(function() {
$("input[name='untreadIidKey']").val($(this).attr("diss-data"));
});
$("a[node-post='express']").click(function() {
var postData = $(this).attr("post-data");
$("input[name='iidKey']").val(postData);
$("div[loading-msg='true']").html("
");
var url = "/ajaxGetInvoicePostDetail";
$.ajax({
url : url,
type : "post",
cache : false,
dataType : "json",
data : {
iidKey : postData
},
global : true,
success : function(data) {
if (data.status == 1) {
$("td[recipients-data='true']").html(data.invoiceDetail.recipients);
$("td[recipientsPhone-data='true']").html(data.invoiceDetail.recipientsPhone);
$("td[recipientsAddress-data='true']").html(data.invoiceDetail.recipientsAddress);
$("td[mailItems-data='true']").html(data.invoiceDetail.mailItems);
$("div[loading-msg='true']").html("");
} else
$("div[loading-msg='true']").html("illegal request");
},
error : function(err) {
}
});
});
$("a[node-post='express-msg']").click(function() {
var postData = $(this).attr("post-data");
$("div[loading-msg='express-msg']").html("
");
var url = "/ajaxGetInvoicePostDetail";
$.ajax({
url : url,
type : "post",
cache : false,
dataType : "json",
data : {
iidKey : postData
},
global : true,
success : function(data) {
if (data.status == 1) {
$("td[recipients-data='express-msg']").html(data.invoiceDetail.recipients);
$("td[recipientsPhone-data='express-msg']").html(data.invoiceDetail.recipientsPhone);
$("td[recipientsAddress-data='express-msg']").html(data.invoiceDetail.recipientsAddress);
$("td[mailItems-data='express-msg']").html(data.invoiceDetail.mailItems);
$("td[actualItems-data='express-msg']").html(data.invoiceDetail.actualItems);
$("td[expressCompany-data='express-msg']").html(data.invoiceDetail.expressCompany);
$("td[expressNumber-data='express-msg']").html(data.invoiceDetail.expressNumber+" 点击查询快递信息");
$("div[loading-msg='express-msg']").html("");
} else
$("div[loading-msg='express-msg']").html("illegal request");
},
error : function(err) {
}
});
});
$("select[name='receivablesCategory']").click(function() {
var cid = $("select[name='receivablesCategory'] option:selected").attr("post-data");
var url = "/ajaxGetStaffByCategory";
$.ajax({
url : url,
type : "post",
cache : false,
dataType : "json",
data : {
cid : cid
},
global : true,
success : function(data) {
if (data.status == 1) {
$("select[name='receivablesStaff']").html(data.html);
}
//else
// $("div[loading-msg='true']").html("illegal request");
},
error : function(err) {
}
});
});
$('a[node-receivables="true"]').click(function() {
var postData = $(this).attr("data-key");
var url = "/ajaxGetInvoiceReceivables";
$.ajax({
url : url,
type : "post",
cache : false,
dataType : "json",
data : {
key : postData
},
global : true,
success : function(data) {
if (data.status == 1) {
$("input[name='key']").val(postData);
$("td[node-receivablesSerial]").html(data.detail.receivablesSerial);
$("td[node-inputStaff]").html(data.detail.inputStaff+" "+data.detail.date);
$("td[node-price]").html(""+data.detail.receivablesPrice+"");
$("td[node-message]").html(data.detail.receivablesMessage);
$("td[node-bank]").html(data.detail.receivablesBank);
$("td[node-date]").html(data.detail.receivablesDate);
}
},
error : function(err) {
}
});
});
$('a[node-recording="true"]').click(function() {
var postData = $(this).attr("data-key");
$("input[name='key']").val(postData);
$("input[name='invoiceKey']").val("");
$("p[node-msg='true']").hide();
$("p[node-loading='true']").hide();
$('tbody[data-invoice="myClaim"]').html("");
var url = "/ajaxGetInvoiceByStaff";
$.ajax({
url : url,
type : "post",
cache : false,
dataType : "json",
data : {
key : postData
},
global : true,
success : function(data) {
if (data.status == 1) {
$('tbody[data-invoice="myClaim"]').html(data.html);
}
},
error : function(err) {
}
});
});
$('a[node-receivalbles="bind"]').click(function() {
var postData = $(this).attr("diss-data");
$("input[name='key']").val(postData);
$("input[name='invoiceKey']").val("");
$("p[node-msg='true']").hide();
$("p[node-loading='true']").hide();
$('tbody[data-invoice="myReceivables"]').html("");
var url = "/ajaxGetReceivalblesByStaff";
$.ajax({
url : url,
type : "post",
cache : false,
dataType : "json",
data : {
key : postData
},
global : true,
success : function(data) {
if (data.status == 1) {
$('tbody[data-invoice="myReceivables"]').html(data.html);
$('tbody[box-enter="true"]').html(data.html2);
if(data.priceStatus == 1){
$('p[node-msg="true"]').html("收款金额超出开票金额 ¥"+data.price+"元,请谨慎操作。");
$('p[node-msg="true"]').show();
}
}
},
error : function(err) {
}
});
});
$("a[node-invoice='INFO']").click(function() {
var postData = $(this).attr("data-isKey");
var type =$(this).attr("data-type");
var po='INVOICE';
if(type=='receivables')
po='RECEIVABLES';
$("div[loading-msg='true']").html("
");
var url = "/ajaxGetInvoiceInfoByType";
$.ajax({
url : url,
type : "post",
cache : false,
dataType : "json",
data : {
serial : postData,
type:po
},
global : true,
success : function(data) {
if (data.status == 1) {
$("div[loading-msg='true']").html("");
if(type=='receivables')
$("#nr").html(data.html);
else
$("#nc").html(data.html);
} else
$("div[loading-msg='true']").html("illegal request");
},
error : function(err) {
$("div[loading-msg='true']").html("");
}
});
});
})