Browse Source

订单项目列表修改

anderx 3 years ago
parent
commit
4d85b50767

+ 1 - 1
src/main/java/com/goafanti/common/mapper/TOrderTaskMapper.xml

@@ -792,7 +792,7 @@
     a.task_comment as taskComment ,a.commodity_price as commodityPrice, a.task_status as taskStatus,ttm.stop_type stopType,ttm.stop_status stopStatus,
     a.task_receiver as taskReceiver ,a.if_certification_fee ifCertificationFee , a.split_status splitStatus,
     a.cost_reduction costReduction,a.official_cost officialCost,i.`type` ,d.name ,a.declaration_batch declarationBatch,
-    a.patent_type patentType,a.picture_url pictureUrl,j.service_life serviceLife ,j.service_year serviceYear,j.year_sum yearSum,
+    a.patent_type patentType,a.picture_url pictureUrl,j.service_life serviceLife ,j.service_year serviceYear,j.year_sum yearSum,ttm.change,
     ttm.last_year lastYear,ttm.last_year_capital lastYearCapital,ttm.last_year_income lastYearIncome,ttm.stop_status projectStopStatus
     from t_order_task a left join business_project b on a.commodity_id=b.id left join t_order_new e on a.order_no=e.order_no
     left join admin f on e.salesman_id=f.id left join department g on e.order_dep=g.id left join user h on e.buyer_id=h.id

+ 8 - 0
src/main/java/com/goafanti/order/bo/TOrderTaskBo.java

@@ -52,10 +52,18 @@ public class TOrderTaskBo extends TOrderTask{
 	private Integer	stopStatus;
 	private Integer	stopType;
 	private Integer	projectStopStatus;
+	private Integer	change;
 	private String lastYear;
 	private BigDecimal lastYearCapital;
 	private BigDecimal lastYearIncome;
 
+	public Integer getChange() {
+		return change;
+	}
+
+	public void setChange(Integer change) {
+		this.change = change;
+	}
 
 	public Integer getStopType() {
 		return stopType;