Browse Source

页面单号链接样式修改;采购变更单过滤修改

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@10545 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
dongbw 8 years ago
parent
commit
704fb3feed
27 changed files with 77 additions and 53 deletions
  1. 14 15
      src/main/java/com/uas/platform/b2b/controller/SaleOrderChangeController.java
  2. 4 0
      src/main/webapp/resources/css/index.css
  3. 4 0
      src/main/webapp/resources/js/index/app.js
  4. 2 2
      src/main/webapp/resources/tpl/index/baseInfo/prodList.html
  5. 17 0
      src/main/webapp/resources/tpl/index/baseInfo/servicerInfo.html
  6. 1 1
      src/main/webapp/resources/tpl/index/make/accept.html
  7. 3 3
      src/main/webapp/resources/tpl/index/make/change.html
  8. 2 2
      src/main/webapp/resources/tpl/index/make/order.html
  9. 1 1
      src/main/webapp/resources/tpl/index/make/outorder.html
  10. 1 1
      src/main/webapp/resources/tpl/index/make/returns.html
  11. 2 2
      src/main/webapp/resources/tpl/index/purc/inquiry.html
  12. 2 2
      src/main/webapp/resources/tpl/index/purc/order.html
  13. 2 2
      src/main/webapp/resources/tpl/index/purc/prodList.html
  14. 1 1
      src/main/webapp/resources/tpl/index/purc/vendor.html
  15. 2 2
      src/main/webapp/resources/tpl/index/sale/accept.html
  16. 1 1
      src/main/webapp/resources/tpl/index/sale/approval.html
  17. 4 4
      src/main/webapp/resources/tpl/index/sale/change.html
  18. 1 1
      src/main/webapp/resources/tpl/index/sale/customer.html
  19. 2 2
      src/main/webapp/resources/tpl/index/sale/inquiry.html
  20. 1 1
      src/main/webapp/resources/tpl/index/sale/inquiry_mould.html
  21. 2 2
      src/main/webapp/resources/tpl/index/sale/notice.html
  22. 1 1
      src/main/webapp/resources/tpl/index/sale/order.html
  23. 1 1
      src/main/webapp/resources/tpl/index/sale/quotation_list.html
  24. 3 3
      src/main/webapp/resources/tpl/index/sale/returns.html
  25. 1 1
      src/main/webapp/resources/tpl/index/sale/sample.html
  26. 1 1
      src/main/webapp/resources/tpl/index/sale/send.html
  27. 1 1
      src/main/webapp/resources/tpl/index/sale/tenderlist.html

+ 14 - 15
src/main/java/com/uas/platform/b2b/controller/SaleOrderChangeController.java

@@ -1,19 +1,5 @@
 package com.uas.platform.b2b.controller;
 package com.uas.platform.b2b.controller;
 
 
-import java.text.SimpleDateFormat;
-import java.util.ArrayList;
-import java.util.List;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.data.domain.Page;
-import org.springframework.http.HttpStatus;
-import org.springframework.http.ResponseEntity;
-import org.springframework.stereotype.Controller;
-import org.springframework.ui.ModelMap;
-import org.springframework.util.CollectionUtils;
-import org.springframework.web.bind.annotation.*;
-import org.springframework.web.servlet.ModelAndView;
-
 import com.alibaba.fastjson.JSON;
 import com.alibaba.fastjson.JSON;
 import com.alibaba.fastjson.JSONObject;
 import com.alibaba.fastjson.JSONObject;
 import com.uas.platform.b2b.model.PurchaseOrderChange;
 import com.uas.platform.b2b.model.PurchaseOrderChange;
@@ -36,6 +22,19 @@ import com.uas.search.b2b.model.SPage;
 import com.uas.search.b2b.model.Sort;
 import com.uas.search.b2b.model.Sort;
 import com.uas.search.b2b.model.Sort.Type;
 import com.uas.search.b2b.model.Sort.Type;
 import com.uas.search.b2b.util.SearchConstants;
 import com.uas.search.b2b.util.SearchConstants;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.data.domain.Page;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.ModelMap;
+import org.springframework.util.CollectionUtils;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.servlet.ModelAndView;
+
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.List;
 
 
 /**
 /**
  * 卖家对变更单的操作
  * 卖家对变更单的操作
@@ -161,7 +160,7 @@ public class SaleOrderChangeController {
 	}
 	}
 
 
 	/**
 	/**
-	 * 作为卖家,收到的采购变更单(已处理
+	 * 作为卖家,收到的采购变更单(无需确认
 	 *
 	 *
      * @param params
      * @param params
      * @param searchFilter
      * @param searchFilter

+ 4 - 0
src/main/webapp/resources/css/index.css

@@ -4311,4 +4311,8 @@ input[required]:invalid, input:focus:invalid, textarea[required]:invalid, textar
 
 
 #image-box .x-close-wrap:hover {
 #image-box .x-close-wrap:hover {
 	opacity: .7
 	opacity: .7
+}
+
+a.order-detail {
+	color: #327ebe !important;
 }
 }

+ 4 - 0
src/main/webapp/resources/js/index/app.js

@@ -2240,6 +2240,10 @@ define(['toaster', 'charts', 'ngTable', 'common/services', 'common/directives',
             case 'standard':
             case 'standard':
                 fn = 'getStandard';
                 fn = 'getStandard';
                 break;
                 break;
+            // 变更单无需确认
+            case 'unread':
+                fn = 'getUnread';
+                break;
         }
         }
         return fn;
         return fn;
     };
     };

+ 2 - 2
src/main/webapp/resources/tpl/index/baseInfo/prodList.html

@@ -294,8 +294,8 @@ width: 80px;
                 <td class="text-center" title="{{product.code}}" ng-bind="::product.code"></td>
                 <td class="text-center" title="{{product.code}}" ng-bind="::product.code"></td>
                 <td class="line-h20 first text-center">
                 <td class="line-h20 first text-center">
                     <div class="order-main">
                     <div class="order-main">
-                        <a ng-bind="::product.title" ui-sref="sale.productDetail({id:product.id})" target="_self"  title="查看详情" ng-if="product.standard != 1"></a>
-                        <a ng-bind="::product.kind" ui-sref="sale.productDetail({id:product.id})" target="_self"  title="查看详情" ng-if="product.standard == 1"></a>
+                        <a class="order-detail" ng-bind="::product.title" ui-sref="sale.productDetail({id:product.id})" target="_self"  title="查看详情" ng-if="product.standard != 1"></a>
+                        <a class="order-detail" ng-bind="::product.kind" ui-sref="sale.productDetail({id:product.id})" target="_self"  title="查看详情" ng-if="product.standard == 1"></a>
                     </div>
                     </div>
                 </td>
                 </td>
                <td class="hover-show text-center" ng-class="{'bg01' : product.standard == 1 , 'bg02' :  product.standard != 1}" ng-if="product.standard != 1">
                <td class="hover-show text-center" ng-class="{'bg01' : product.standard == 1 , 'bg02' :  product.standard != 1}" ng-if="product.standard != 1">

+ 17 - 0
src/main/webapp/resources/tpl/index/baseInfo/servicerInfo.html

@@ -115,6 +115,20 @@
 	margin-left: 0px;
 	margin-left: 0px;
 	line-height: 30px;
 	line-height: 30px;
 }
 }
+.order-table .company-list tr .first{
+	border-bottom: #e8e8e8 1px solid;
+}
+#customer-tab tbody tr.height16{
+	height: 16px;
+	border-left: #f5f5f5 2px solid;
+	border-right: #f5f5f5 2px solid;
+}
+#customer-tab tbody tr.height16 td{
+	background: #f5f5f5;
+}
+#myquest-public .customer-tab tbody{
+	border-bottom: none;
+}
 </style>
 </style>
 <div style="margin-left: -240px; width: 1170px; background: #fff;" id="myquest-public">
 <div style="margin-left: -240px; width: 1170px; background: #fff;" id="myquest-public">
 <div ng-include src="'static/tpl/index/baseInfo/vendorAndCustomer.html'"></div>
 <div ng-include src="'static/tpl/index/baseInfo/vendorAndCustomer.html'"></div>
@@ -193,6 +207,9 @@
 							<!--<a ng-if="vendor.vendswitch == 1" ng-click="purcByEn(vendor.vendorEnterprise.enBussinessCode)" class="btn02">下采购单</a>-->
 							<!--<a ng-if="vendor.vendswitch == 1" ng-click="purcByEn(vendor.vendorEnterprise.enBussinessCode)" class="btn02">下采购单</a>-->
 						<!--</td>-->
 						<!--</td>-->
 					</tr>
 					</tr>
+					<tr class="height16">
+						<td colspan="5"></td>
+					</tr>
 			</tbody>
 			</tbody>
 			<tbody ng-if="customerParams.total() == 0" class="no-record-tab">
 			<tbody ng-if="customerParams.total() == 0" class="no-record-tab">
 				<tr>
 				<tr>

+ 1 - 1
src/main/webapp/resources/tpl/index/make/accept.html

@@ -275,7 +275,7 @@
 				</td>
 				</td>
 				<td class="br-l" colspan="2">
 				<td class="br-l" colspan="2">
 					<div>
 					<div>
-						单据编号:<a ui-sref="sale.makeorder_detail({id:item.order.id})"
+						单据编号:<a class="order-detail" title="查看采购单详情" ui-sref="sale.makeorder_detail({id:item.order.id})"
 							ng-bind="item.order.code"></a>
 							ng-bind="item.order.code"></a>
 					</div>
 					</div>
 					<div>
 					<div>

+ 3 - 3
src/main/webapp/resources/tpl/index/make/change.html

@@ -206,9 +206,9 @@
 					<span class="text-num text-bold"
 					<span class="text-num text-bold"
 						ng-bind="::change.orderChange.date | date:'yyyy-MM-dd'"></span>
 						ng-bind="::change.orderChange.date | date:'yyyy-MM-dd'"></span>
 					<span ng-bind="::change.orderChange.enterprise.enName"></span>
 					<span ng-bind="::change.orderChange.enterprise.enName"></span>
-					<span>流水号:<a
-						class="text-num" ng-bind="::change.orderChange.code" ui-sref="sale.makechange_detail({id:change.id})" target="_self"></a></span> <span>订单:<a
-						class="text-num text-bold" ng-bind="::change.orderCode" ui-sref="sale.makeorder_detail({id:change.orderId})" target="_blank"></a></span>
+					<span>流水号:<a title="查看变更单详情"
+						class="text-num order-detail" ng-bind="::change.orderChange.code" ui-sref="sale.makechange_detail({id:change.id})" target="_self"></a></span> <span>订单:<a
+						class="text-num text-bold order-detail" title="查看委外单详情" ng-bind="::change.orderCode" ui-sref="sale.makeorder_detail({id:change.orderId})" target="_blank"></a></span>
 				</div>
 				</div>
 			</td>
 			</td>
 			<td colspan="1" class="" title="{{change.orderChange.remark}}">
 			<td colspan="1" class="" title="{{change.orderChange.remark}}">

+ 2 - 2
src/main/webapp/resources/tpl/index/make/order.html

@@ -257,8 +257,8 @@
 					<span class="text-num text-bold" ng-bind="::order.date | date:'yyyy-MM-dd'"></span>
 					<span class="text-num text-bold" ng-bind="::order.date | date:'yyyy-MM-dd'"></span>
 					<span ng-bind="::order.enterprise.enName"></span>
 					<span ng-bind="::order.enterprise.enName"></span>
 					<span>订单号:
 					<span>订单号:
-					  <a class="text-num" ng-bind="::order.code" ui-sref="sale.makeorder_detail({id:order.id})" target="_self"
-						 ng-click="setOrdersRead(order.id)"></a></span>
+					  <a class="text-num order-detail" ng-bind="::order.code" ui-sref="sale.makeorder_detail({id:order.id})" target="_self"
+						 ng-click="setOrdersRead(order.id)" title="查看详情"></a></span>
 				</div>
 				</div>
 			</td>
 			</td>
 			<td colspan="1" class="order-sum">{{::order.currency}}: <span
 			<td colspan="1" class="order-sum">{{::order.currency}}: <span

+ 1 - 1
src/main/webapp/resources/tpl/index/make/outorder.html

@@ -212,7 +212,7 @@
 							ng-bind="::order.date | date:'yyyy-MM-dd'"></span>
 							ng-bind="::order.date | date:'yyyy-MM-dd'"></span>
 						<span ng-bind="::order.enterprise.enName"></span>
 						<span ng-bind="::order.enterprise.enName"></span>
 						<span>订单号:
 						<span>订单号:
-							<a class="text-num" ng-bind="::order.code"
+							<a class="text-num order-detail" ng-bind="::order.code" title="查看详情"
 							   ui-sref="purc.outorder_detail({id:order.id})" target="_self"></a>
 							   ui-sref="purc.outorder_detail({id:order.id})" target="_self"></a>
 						</span>
 						</span>
 					</div>
 					</div>

+ 1 - 1
src/main/webapp/resources/tpl/index/make/returns.html

@@ -257,7 +257,7 @@
 				</td>
 				</td>
 				<td class="br-l" colspan="2">
 				<td class="br-l" colspan="2">
 					<div>
 					<div>
-						单据编号:<a ui-sref="sale.makeorder_detail({id:item.order.id})"
+						单据编号:<a class="order-detail" title="查看采购单详情" ui-sref="sale.makeorder_detail({id:item.order.id})"
 							ng-bind="::item.order.code"></a>
 							ng-bind="::item.order.code"></a>
 					</div>
 					</div>
 					<div>
 					<div>

+ 2 - 2
src/main/webapp/resources/tpl/index/purc/inquiry.html

@@ -482,8 +482,8 @@ margin-left: 55px;
 									  ng-bind="::inquiryItem.inquiry.date | date:'yyyy-MM-dd'"></span>
 									  ng-bind="::inquiryItem.inquiry.date | date:'yyyy-MM-dd'"></span>
 					<span
 					<span
 							ng-bind="::inquiryItem.enterprise.enName"></span>
 							ng-bind="::inquiryItem.enterprise.enName"></span>
-					<span>流水号:<a
-						class="text-num" ng-bind="::inquiryItem.inquiry.code" target="_self"
+					<span>流水号:<a title="查看详情"
+						class="text-num order-detail" ng-bind="::inquiryItem.inquiry.code" target="_self"
 						href="#/purc/purcinquirydetail/{{inquiryItem.inquiry.id}}" ng-click="setOrdersRead(inquiryItem.id)"></a></span>
 						href="#/purc/purcinquirydetail/{{inquiryItem.inquiry.id}}" ng-click="setOrdersRead(inquiryItem.id)"></a></span>
 				</div>
 				</div>
 			</td>
 			</td>

+ 2 - 2
src/main/webapp/resources/tpl/index/purc/order.html

@@ -337,8 +337,8 @@
 					<span class="text-num text-bold"
 					<span class="text-num text-bold"
 						ng-bind="::order.date | date:'yyyy-MM-dd'"></span>
 						ng-bind="::order.date | date:'yyyy-MM-dd'"></span>
 					<span ng-bind="::order.receiveName"></span>
 					<span ng-bind="::order.receiveName"></span>
-					<span>订单号:<a
-						class="text-num" ng-bind="::order.code" ui-sref="purc.order_detail({id:order.id})" target="_self"
+					<span>订单号:<a title="查看详情"
+						class="text-num order-detail" ng-bind="::order.code" ui-sref="purc.order_detail({id:order.id})" target="_self"
 						ng-click="setOrdersRead(order.id)"></a></span>
 						ng-click="setOrdersRead(order.id)"></a></span>
 				</div>
 				</div>
 			</td>
 			</td>

+ 2 - 2
src/main/webapp/resources/tpl/index/purc/prodList.html

@@ -265,8 +265,8 @@
                 <td class="text-center" title="{{product.code}}" ng-bind="::product.code"></td>
                 <td class="text-center" title="{{product.code}}" ng-bind="::product.code"></td>
                 <td class="line-h20 first text-center">
                 <td class="line-h20 first text-center">
                     <div class="order-main">
                     <div class="order-main">
-                        <a ng-bind="::product.title" ui-sref="purc.productDetail({id:product.id})" target="_self"  title="查看详情" ng-if="product.standard != 1"></a>
-                        <a ng-bind="::product.kind" ui-sref="purc.productDetail({id:product.id})" target="_self"  title="查看详情" ng-if="product.standard == 1"></a>
+                        <a class="order-detail" ng-bind="::product.title" ui-sref="purc.productDetail({id:product.id})" target="_self"  title="查看详情" ng-if="product.standard != 1"></a>
+                        <a class="order-detail" ng-bind="::product.kind" ui-sref="purc.productDetail({id:product.id})" target="_self"  title="查看详情" ng-if="product.standard == 1"></a>
                     </div>
                     </div>
                 </td>
                 </td>
                 <td class="hover-show text-center" ng-class="{'bg01' : product.standard == 1 , 'bg02' :  product.standard != 1}" ng-if="product.standard != 1">
                 <td class="hover-show text-center" ng-class="{'bg01' : product.standard == 1 , 'bg02' :  product.standard != 1}" ng-if="product.standard != 1">

+ 1 - 1
src/main/webapp/resources/tpl/index/purc/vendor.html

@@ -123,7 +123,7 @@
 			<tbody>
 			<tbody>
 					<tr ng-repeat="vendor in $data">
 					<tr ng-repeat="vendor in $data">
 						<td ng-bind="::vendor.vendorEnterprise.uu"></td>
 						<td ng-bind="::vendor.vendorEnterprise.uu"></td>
-						<td class="text-center"><a  href="#/purc/vendor/{{vendor.id}}" ng-bind="::vendor.vendorEnterprise.enName" class="color32"></a></td>
+						<td class="text-center"><a href="#/purc/vendor/{{vendor.id}}" ng-bind="::vendor.vendorEnterprise.enName" title="查看供应商资料" class="color32 order-detail"></a></td>
 						<td class="text-center" ng-bind="::vendor.vendorEnterprise.enShortname"></td>
 						<td class="text-center" ng-bind="::vendor.vendorEnterprise.enShortname"></td>
 						<td class="text-center" ng-bind="::vendor.vendorEnterprise.enAddress"></td>
 						<td class="text-center" ng-bind="::vendor.vendorEnterprise.enAddress"></td>
 						<td class="text-center" ng-bind="::vendor.vendorUser.userName"></td>
 						<td class="text-center" ng-bind="::vendor.vendorUser.userName"></td>

+ 2 - 2
src/main/webapp/resources/tpl/index/sale/accept.html

@@ -208,7 +208,7 @@
 							ng-bind="accept.date | date:'yyyy-MM-dd'"></span> <span
 							ng-bind="accept.date | date:'yyyy-MM-dd'"></span> <span
 							title="客户名称"
 							title="客户名称"
 							ng-bind="accept.enterprise.enName"></span>
 							ng-bind="accept.enterprise.enName"></span>
-						<span>流水号:<a class="text-num" ng-bind="accept.code" ui-sref="sale.accept_detail({id: accept.id})"></a></span>
+						<span>流水号:<a class="text-num order-detail" title="查看详情" ng-bind="accept.code" ui-sref="sale.accept_detail({id: accept.id})"></a></span>
 						<span class="text-info" ng-if="accept.sendCode != null"
 						<span class="text-info" ng-if="accept.sendCode != null"
 							title="送货单号:{{::accept.sendCode}}"> 送货单号: <span
 							title="送货单号:{{::accept.sendCode}}"> 送货单号: <span
 							ng-bind="accept.sendCode" class="text-num"></span>
 							ng-bind="accept.sendCode" class="text-num"></span>
@@ -270,7 +270,7 @@
 				</td>
 				</td>
 				<td class="br-l" colspan="2" ng-if="item.orderItem.order.code">
 				<td class="br-l" colspan="2" ng-if="item.orderItem.order.code">
 					<div>
 					<div>
-						单据编号:<a ui-sref="sale.order_detail({id:item.orderItem.order.id})"
+						单据编号:<a class="order-detail" title="查看采购单详情" ui-sref="sale.order_detail({id:item.orderItem.order.id})"
 							ng-bind="item.orderItem.order.code"></a>
 							ng-bind="item.orderItem.order.code"></a>
 					</div>
 					</div>
 					<div>
 					<div>

+ 1 - 1
src/main/webapp/resources/tpl/index/sale/approval.html

@@ -249,7 +249,7 @@
 						</span> -->
 						</span> -->
 						<span class="text-num text-bold" title="{{approval.inDate | date: 'yyyy年MM月dd日 hh:mm'}}" ng-bind="::approval.inDate | date:'yyyy-MM-dd'"></span>
 						<span class="text-num text-bold" title="{{approval.inDate | date: 'yyyy年MM月dd日 hh:mm'}}" ng-bind="::approval.inDate | date:'yyyy-MM-dd'"></span>
 						<span title="客户名称" ng-bind="::approval.enterprise.enName"></span>
 						<span title="客户名称" ng-bind="::approval.enterprise.enName"></span>
-						<span
+						单号:<span
 							title="认定单号" ng-bind="::approval.code"></span>
 							title="认定单号" ng-bind="::approval.code"></span>
 					</div>
 					</div>
 				</td>
 				</td>

+ 4 - 4
src/main/webapp/resources/tpl/index/sale/change.html

@@ -257,12 +257,12 @@
 						ng-bind="::change.date | date:'yyyy-MM-dd'"></span>
 						ng-bind="::change.date | date:'yyyy-MM-dd'"></span>
 					<span
 					<span
 							ng-bind="::change.enterprise.enName"></span>
 							ng-bind="::change.enterprise.enName"></span>
-					<span>流水号:<a
-						class="text-num" ng-bind="::change.code" ui-sref="sale.change_detail({id:change.id})" target="_self"
+					<span>流水号:<a title="查看变更单详情"
+						class="text-num order-detail" ng-bind="::change.code" ui-sref="sale.change_detail({id:change.id})" target="_self"
 						ng-click="setOrdersRead(change.id)"></a>
 						ng-click="setOrdersRead(change.id)"></a>
 					</span>
 					</span>
-					<span>订单:<a
-						class="text-num text-bold" ng-bind="::change.orderCode" ui-sref="sale.order_detail({id:change.orderId})" target="_blank"></a></span>
+					<span>订单:<a title="查看采购单详情"
+						class="text-num text-bold order-detail" ng-bind="::change.orderCode" ui-sref="sale.order_detail({id:change.orderId})" target="_blank"></a></span>
 				</div>
 				</div>
 			</td>
 			</td>
 			<td colspan="1" class="" style="line-height: 20px; padding-top: 5px;">
 			<td colspan="1" class="" style="line-height: 20px; padding-top: 5px;">

+ 1 - 1
src/main/webapp/resources/tpl/index/sale/customer.html

@@ -136,7 +136,7 @@
 			<tbody ng-repeat="customer in $data" ng-mouseenter="showUserInfo(customer,true)" ng-mouseleave="showUserInfo(customer,false)">
 			<tbody ng-repeat="customer in $data" ng-mouseenter="showUserInfo(customer,true)" ng-mouseleave="showUserInfo(customer,false)">
 					<tr>
 					<tr>
 						<td class="text-center" ng-bind="::customer.myEnterprise.uu"></td>
 						<td class="text-center" ng-bind="::customer.myEnterprise.uu"></td>
-						<td class="text-center"><a ng-click="viewDetail(customer.id)" ng-bind="::customer.myEnterprise.enName" class="color32"></a></td>
+						<td class="text-center"><a ng-click="viewDetail(customer.id)" title="查看客户资料" ng-bind="::customer.myEnterprise.enName" class="color32 order-detail"></a></td>
 						<td class="text-center" ng-bind="::customer.myEnterprise.enAddress"></td>
 						<td class="text-center" ng-bind="::customer.myEnterprise.enAddress"></td>
 						<td class="text-center" ng-bind="::customer.myUser.userName"></td>
 						<td class="text-center" ng-bind="::customer.myUser.userName"></td>
 						<td ng-bind="::customer.myUser.userTel"></td>
 						<td ng-bind="::customer.myUser.userTel"></td>

+ 2 - 2
src/main/webapp/resources/tpl/index/sale/inquiry.html

@@ -335,8 +335,8 @@
 									  ng-bind="::inquiryItem.inquiry.date | date:'yyyy-MM-dd'"></span>
 									  ng-bind="::inquiryItem.inquiry.date | date:'yyyy-MM-dd'"></span>
 					<span
 					<span
 							ng-bind="::inquiryItem.inquiry.enterprise.enName"></span>
 							ng-bind="::inquiryItem.inquiry.enterprise.enName"></span>
-					<span>流水号:<a
-						class="text-num" ng-bind="::inquiryItem.inquiry.code" ui-sref="sale.inquiry_detail({id:inquiryItem.inquiry.id})" target="_self"
+					<span>流水号:<a title="查看详情"
+						class="text-num order-detail" ng-bind="::inquiryItem.inquiry.code" ui-sref="sale.inquiry_detail({id:inquiryItem.inquiry.id})" target="_self"
 						ng-click="setOrdersRead(inquiryItem.id)"></a>
 						ng-click="setOrdersRead(inquiryItem.id)"></a>
 					</span>
 					</span>
 				</div>
 				</div>

+ 1 - 1
src/main/webapp/resources/tpl/index/sale/inquiry_mould.html

@@ -369,7 +369,7 @@ tbody td div.text-mould {
 							ng-model="inquiryMould.$selected">
 							ng-model="inquiryMould.$selected">
 						</span>--> <span class="text-num text-bold" title="{{inquiryMould.date}}" ng-bind="::inquiryMould.date | date:'yyyy-MM-dd'"></span>
 						</span>--> <span class="text-num text-bold" title="{{inquiryMould.date}}" ng-bind="::inquiryMould.date | date:'yyyy-MM-dd'"></span>
 						<span ng-bind="::inquiryMould.enterprise.enName"></span>
 						<span ng-bind="::inquiryMould.enterprise.enName"></span>
-						<span>流水号:<a class="text-num" ng-bind="::inquiryMould.code" ui-sref="sale.inquiry_mould_detail({id:inquiryMould.id})" target="_self"
+						<span>流水号:<a class="text-num order-detail" ng-bind="::inquiryMould.code" ui-sref="sale.inquiry_mould_detail({id:inquiryMould.id})" target="_self"
 							ng-click="setOrdersRead(inquiryMould.id)" title="查看详情"></a>
 							ng-click="setOrdersRead(inquiryMould.id)" title="查看详情"></a>
 						</span>
 						</span>
 						币别:<span ng-bind="inquiryMould.currency"></span>
 						币别:<span ng-bind="inquiryMould.currency"></span>

+ 2 - 2
src/main/webapp/resources/tpl/index/sale/notice.html

@@ -352,8 +352,8 @@
                             ng-bind="notice.orderItem.order.enterprise.enName"></span>
                             ng-bind="notice.orderItem.order.enterprise.enName"></span>
                 </div>
                 </div>
             </td>
             </td>
-            <td class="text-right" colspan="2" class="order-sum"><a
-                    class="dropdown-toggle" ui-sref="sale.order_detail({id:notice.orderItem.order.id})" target="_self"> <span
+            <td class="text-right" colspan="2" class="order-sum"><a title="查看采购单详情"
+                    class="dropdown-toggle order-detail" ui-sref="sale.order_detail({id:notice.orderItem.order.id})" target="_self"> <span
                     class="text-num text-bold" ng-bind="::notice.orderItem.order.code" ng-click="setOrdersRead(notice.id)"></span>
                     class="text-num text-bold" ng-bind="::notice.orderItem.order.code" ng-click="setOrdersRead(notice.id)"></span>
                 第{{notice.orderItem.number}}行 <i class="fa fa-fw fa-angle-down"></i>
                 第{{notice.orderItem.number}}行 <i class="fa fa-fw fa-angle-down"></i>
             </a>
             </a>

+ 1 - 1
src/main/webapp/resources/tpl/index/sale/order.html

@@ -402,7 +402,7 @@
 					&nbsp;&nbsp;<span class="text-num text-bold"
 					&nbsp;&nbsp;<span class="text-num text-bold"
 						ng-bind="::order.date | date:'yyyy-MM-dd'"></span>
 						ng-bind="::order.date | date:'yyyy-MM-dd'"></span>
 					<span ng-bind="::order.enterprise.enName"></span>
 					<span ng-bind="::order.enterprise.enName"></span>
-					<span>订单号:<a class="text-num" ng-bind="::order.code" ui-sref="sale.order_detail({id:order.id})" target="_self"  ng-click="setOrdersRead(order.id)"></a></span>
+					<span>订单号:<a class="text-num order-detail" ng-bind="::order.code" ui-sref="sale.order_detail({id:order.id})" target="_self" title="查看详情" ng-click="setOrdersRead(order.id)"></a></span>
 				</div>
 				</div>
 			</td>
 			</td>
 			<td colspan="1" class="order-sum">{{::order.currency}}: <span
 			<td colspan="1" class="order-sum">{{::order.currency}}: <span

+ 1 - 1
src/main/webapp/resources/tpl/index/sale/quotation_list.html

@@ -167,7 +167,7 @@
 					<!--<span> <input type="checkbox" class="selector" ng-model="quotationItem.$selected"></span>-->
 					<!--<span> <input type="checkbox" class="selector" ng-model="quotationItem.$selected"></span>-->
 					<span class="text-num text-bold" title="{{quotationItem.date}}" ng-bind="::quotationItem.date | date:'yyyy-MM-dd'"></span>
 					<span class="text-num text-bold" title="{{quotationItem.date}}" ng-bind="::quotationItem.date | date:'yyyy-MM-dd'"></span>
 					<span ng-bind="::quotationItem.cust.enName"></span>
 					<span ng-bind="::quotationItem.cust.enName"></span>
-					<span>流水号:<a class="text-num" ng-bind="::quotationItem.code" ui-sref="sale.quotation.item({id:quotationItem.id})" target="_self"></a></span>
+					<span>流水号:<a class="text-num order-detail" ng-bind="::quotationItem.code" ui-sref="sale.quotation.item({id:quotationItem.id})" title="查看详情" target="_self"></a></span>
 				</div>
 				</div>
 			</td>
 			</td>
 			<td>
 			<td>

+ 3 - 3
src/main/webapp/resources/tpl/index/sale/returns.html

@@ -207,8 +207,8 @@
 						<span title="客户名称"
 						<span title="客户名称"
 								ng-bind="::returns.returnItems[0].orderItem.order.enterprise.enName" ng-if="returns.returnItems[0].orderItem"></span>
 								ng-bind="::returns.returnItems[0].orderItem.order.enterprise.enName" ng-if="returns.returnItems[0].orderItem"></span>
 						<span title="客户名称">{{returns.enName}}</span>
 						<span title="客户名称">{{returns.enName}}</span>
-						<span>流水号:<a
-							class="text-num" ng-bind="::returns.code" ui-sref="sale.return_detail({id: returns.id})"></a></span>
+						<span>流水号:<a title="查看详情"
+							class="text-num order-detail" ng-bind="::returns.code" ui-sref="sale.return_detail({id: returns.id})"></a></span>
 					</div>
 					</div>
 				</td>
 				</td>
 				<td colspan="1" class="order-sum">
 				<td colspan="1" class="order-sum">
@@ -260,7 +260,7 @@
 				</td>
 				</td>
 				<td class="br-l" colspan="2">
 				<td class="br-l" colspan="2">
 					<div>
 					<div>
-						单据编号:<a ui-sref="sale.order_detail({id:item.orderItem.order.id})"
+						单据编号:<a class="order-detail" title="查看采购单详情" ui-sref="sale.order_detail({id:item.orderItem.order.id})"
 							ng-bind="::item.orderItem.order.code"></a>
 							ng-bind="::item.orderItem.order.code"></a>
 					</div>
 					</div>
 					<div>
 					<div>

+ 1 - 1
src/main/webapp/resources/tpl/index/sale/sample.html

@@ -271,7 +271,7 @@
 						ng-bind="sample.proofing.date | date:'yyyy-MM-dd'"></span>
 						ng-bind="sample.proofing.date | date:'yyyy-MM-dd'"></span>
 					<span title="客户名称"
 					<span title="客户名称"
 						  ng-bind="sample.proofing.enterprise.enName"></span>
 						  ng-bind="sample.proofing.enterprise.enName"></span>
-					<span>流水号:<a class="text-num" ng-bind="::sample.proofing.code"
+					<span>流水号:<a class="text-num order-detail" ng-bind="::sample.proofing.code" title="查看详情"
 								 ui-sref="sale.sample_detail({id:sample.id})" target="_self"
 								 ui-sref="sale.sample_detail({id:sample.id})" target="_self"
 								 ng-click="setOrdersRead(sample.id)"></a>
 								 ng-click="setOrdersRead(sample.id)"></a>
 					</span>
 					</span>

+ 1 - 1
src/main/webapp/resources/tpl/index/sale/send.html

@@ -248,7 +248,7 @@
 					</span> -->
 					</span> -->
 					<span class="text-num text-bold" title="{{::send.date | date: 'yyyy年MM月dd日 hh:mm'}}" ng-bind="send.date | date:'yyyy-MM-dd'"></span>
 					<span class="text-num text-bold" title="{{::send.date | date: 'yyyy年MM月dd日 hh:mm'}}" ng-bind="send.date | date:'yyyy-MM-dd'"></span>
 					<span title="客户名称" ng-bind="::send.sendItems[0].orderItem.order.enterprise.enName"></span>
 					<span title="客户名称" ng-bind="::send.sendItems[0].orderItem.order.enterprise.enName"></span>
-					<span>发货单号:<a class="text-num" ng-bind="::send.code" ui-sref="sale.send_detail({id:send.id})"></a></span>
+					<span>发货单号:<a class="text-num order-detail" title="查看详情" ng-bind="::send.code" ui-sref="sale.send_detail({id:send.id})"></a></span>
 				</div>
 				</div>
 			</td>
 			</td>
 			<td colspan="1" class="order-sum">
 			<td colspan="1" class="order-sum">

+ 1 - 1
src/main/webapp/resources/tpl/index/sale/tenderlist.html

@@ -431,7 +431,7 @@
                         招标标题:{{tender.title}}
                         招标标题:{{tender.title}}
                     </div>
                     </div>
                     <div>
                     <div>
-                        单号:<a ui-sref="sale.tender({id:tender.id})" target="_self" title="点击查看详情" ng-click="setOrdersRead(tender.id)">{{tender.code}}</a>
+                        单号:<a class="order-detail" ui-sref="sale.tender({id:tender.id})" target="_self" title="点击查看详情" ng-click="setOrdersRead(tender.id)">{{tender.code}}</a>
                     </div>
                     </div>
                     <div>
                     <div>
                         <strong ng-if="tender.ifOpen == 0">指定招标</strong>
                         <strong ng-if="tender.ifOpen == 0">指定招标</strong>