@@ -71,6 +71,10 @@ public class Customer extends BasePo {
* 客户名称
*/
private String name;
+ /**
+ * 客户简称
+ */
+ private String shortName;
/**
* 客户类型(字典表key)
@@ -55,4 +55,9 @@ public class ContractOutboundRecords extends BasePo {
private BigDecimal truckQuantity;
+ * 工厂价
+ private BigDecimal factoryPrice;
+
}
@@ -16,7 +16,8 @@
</select>
<select id="getList" resultType="com.fjhx.sale.entity.ext.vo.ExtQuotationProductVo">
SELECT eqp.*,
- qp.business_cost_price
+ qp.business_cost_price,
+ qp.prod_price
FROM ext_quotation_product eqp
LEFT JOIN quotation_product qp ON eqp.quotation_product_id = qp.id
${ew.customSqlSegment}