From f48a8d2ebb67a55afb55f02e512a3c730e30f66a Mon Sep 17 00:00:00 2001 From: liumengyi Date: Fri, 10 Jan 2025 10:03:34 +0800 Subject: [PATCH] * [misc] get text field. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index 369d3d1b13..17810ac425 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -1167,7 +1167,7 @@ class executionModel extends model if($productID != 0) { - return $this->dao->select('t2.*, t2.`desc`')->from(TABLE_PROJECTPRODUCT)->alias('t1') + return $this->dao->select('t2.*, t2.`desc`,t2.`plans`')->from(TABLE_PROJECTPRODUCT)->alias('t1') ->leftJoin(TABLE_EXECUTION)->alias('t2')->on('t1.project= t2.id') ->where('t1.product')->eq($productID) ->andWhere('t2.deleted')->eq(0)