diff --git a/erp_web/pages/bill/other_in_list.html b/erp_web/pages/bill/other_in_list.html
index 8fa2bc8d..da65566b 100644
--- a/erp_web/pages/bill/other_in_list.html
+++ b/erp_web/pages/bill/other_in_list.html
@@ -117,15 +117,15 @@
|
- 单据编号: |
-
+ | 单据编号: |
+
|
关联单号: |
-
+ |
|
-
+ |
|
@@ -430,7 +430,11 @@
$("#DebtShow").text(debt);
$("#AccountDayShow").text(res.accountDay); //结算天数
$("#LinkNumberShow").text(res.linkNumber); //关联订单号
- $("#billTypeShow").text(res.billType); //单据类型
+ if(res.billType && res.billType!="undefined"){
+ $("#billTypeShow").text("单据类型:"+res.billType); //单据类型
+ } else {
+ $("#billTypeShow").text("");
+ }
var otherMoney = res.otherMoney?res.otherMoney:0;
if(otherMoney!=0 && res.otherMoneyList && res.otherMoneyItem){
var itemArr = res.otherMoneyList.split(","); //支出项目id列表
diff --git a/erp_web/pages/bill/other_out_list.html b/erp_web/pages/bill/other_out_list.html
index 84d0f671..9432ebde 100644
--- a/erp_web/pages/bill/other_out_list.html
+++ b/erp_web/pages/bill/other_out_list.html
@@ -111,15 +111,15 @@
|
- 单据编号: |
-
+ | 单据编号: |
+
|
关联单号: |
-
+ |
|
-
+ |
|
@@ -423,7 +423,11 @@
$("#DebtShow").text(debt);
$("#AccountDayShow").text(res.accountDay); //结算天数
$("#LinkNumberShow").text(res.linkNumber); //关联订单号
- $("#billTypeShow").text(res.billType); //单据类型
+ if(res.billType && res.billType!="undefined"){
+ $("#billTypeShow").text("单据类型:"+res.billType); //单据类型
+ } else {
+ $("#billTypeShow").text("");
+ }
var otherMoney = res.otherMoney?res.otherMoney:0;
if(otherMoney!=0 && res.otherMoneyList && res.otherMoneyItem){
var itemArr = res.otherMoneyList.split(","); //支出项目id列表