Преглед изворни кода

订单首付达标后项目任务生产BUG修复

anderx пре 7 година
родитељ
комит
0c3ee08042

+ 2 - 0
src/main/java/com/goafanti/common/mapper/ContractMapper.xml

@@ -745,6 +745,7 @@
 			commodity_type,
 			commodity_quantity,
 			task_status,
+			task_comment,
 			create_time
 		)
 	values
@@ -758,6 +759,7 @@
 		#{item.commodityType,jdbcType=INTEGER},
 		#{item.commodityQuantity,jdbcType=INTEGER},
 		#{item.taskStatus,jdbcType=INTEGER},
+		#{item.taskComment,jdbcType=VARCHAR},
 		#{item.createTime,jdbcType=TIMESTAMP}
 	  )
     </foreach>

+ 3 - 0
src/main/java/com/goafanti/order/service/impl/OrderServiceImpl.java

@@ -22,6 +22,7 @@ import com.goafanti.common.constant.AFTConstants;
 import com.goafanti.common.constant.ErrorConstants;
 import com.goafanti.common.dao.AdminMapper;
 import com.goafanti.common.dao.ContractMapper;
+import com.goafanti.common.dao.ContractTaskMapper;
 import com.goafanti.common.dao.NoticeMapper;
 import com.goafanti.common.dao.OrganizationManagementMapper;
 import com.goafanti.common.dao.TOrderBillMapper;
@@ -94,6 +95,8 @@ public class OrderServiceImpl extends BaseMybatisDao<TOrderMapper> implements Or
 	private OrganizationManagementMapper organizationManagementMapper;
 	@Autowired
 	private ContractMapper contractMapper;
+	@Autowired 
+	private ContractTaskMapper contractTaskMapper;
 	@Autowired
 	private TOrderChangeMapper tOrderChangeMapper;
 	@Autowired