Browse Source

询价列表增加供应商UU

chenw 7 years ago
parent
commit
fc6fd9d6ac

+ 9 - 0
applications/purchase/purchase-dto/src/main/java/com/usoftchina/saas/purchase/dto/QuotationRspDTO.java

@@ -11,6 +11,7 @@ public class QuotationRspDTO implements Serializable {
 
     private Long id;
     private String vendName;
+    private Long vendUU;
     private String tel;
     private String replaceOrispeccode;
     private Long leadTime;
@@ -42,6 +43,14 @@ public class QuotationRspDTO implements Serializable {
         this.vendName = vendName;
     }
 
+    public Long getVendUU() {
+        return vendUU;
+    }
+
+    public void setVendUU(Long vendUU) {
+        this.vendUU = vendUU;
+    }
+
     public String getTel() {
         return tel;
     }

+ 1 - 0
applications/purchase/purchase-server/src/main/java/com/usoftchina/saas/purchase/service/impl/PurchaseServiceImpl.java

@@ -889,6 +889,7 @@ public class PurchaseServiceImpl extends CommonBaseServiceImpl<PurchaseMapper, P
                     QuotationRspDTO quotationRspDTO = new QuotationRspDTO();
                     quotationRspDTO.setId(publicInquiryItem.getId());
                     quotationRspDTO.setVendName(publicInquiryItem.getVendName());
+                    quotationRspDTO.setVendUU(publicInquiryItem.getVendUU());
                     quotationRspDTO.setTaxRate(new BigDecimal(publicInquiryItem.getTaxrate()).doubleValue());
                     quotationRspDTO.setLeadTime(publicInquiryItem.getLeadtime());
                     quotationRspDTO.setTel(publicInquiryItem.getUser().getUserTel());