零售和收预付款,支持刷会员卡的功能

This commit is contained in:
季圣华
2017-07-02 22:14:10 +08:00
parent cd8c0160cd
commit 79dad49adb
2 changed files with 24 additions and 4 deletions

View File

@@ -619,6 +619,18 @@
initTableData_account("add"); //明细列表
reject(); //撤销下、刷新材料列表
url = path + '/accountHead/create.action';
//收预付款单据支持刷卡功能
if(listType == "收预付款") {
//当会员卡号长度超过10位后自动点击下拉框用于兼容刷卡器
$("#OrganId").next().find("input").off("keyup").on("keyup",function(){
if($(this).val().length === 10){
setTimeout(function(){
$(".combo-panel .combobox-item-selected").click();
},500);
}
});
}
}
//编辑信息