Browse Source

处理应收账款的问题

yujia 7 years ago
parent
commit
7123720ee4

+ 8 - 2
src/main/java/com/uas/platform/b2c/core/constant/Type.java

@@ -252,15 +252,21 @@ public enum Type {
 	ENTERPRISING(1602, "ENTERPRISING"),
 
 	/**
-	 * 付款给平台
+	 * 买家付款给平台
 	 */
 	PAIDTOPLATFORM(1603, "PAIDTOPLATFORM"),
 
 	/**
-	 * 付款给卖家
+	 * 买家付款给卖家
 	 */
 	PAIDTOVENDOR(1604, "PAIDTOVENDOR"),
 
+
+	/**
+	 * 平台付款给卖家
+	 */
+	PLATFORMPAIDTOVENDOR(1605, "PLATFORMPAIDTOVENDOR"),
+
 	/**
 	 * {@code 1666 企业入库 <b>企业入库</b>}
 	 */

+ 0 - 1
src/main/java/com/uas/platform/b2c/prod/commodity/service/impl/ProductServiceImpl.java

@@ -1248,7 +1248,6 @@ public class ProductServiceImpl implements ProductService {
             product.setEncapsulation(result.getEncapsulation());
         }
         product.setCmpImg(result.getImg());
-
         return product;
     }