Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
7ae71b9b6e
@ -1,77 +1,77 @@
|
|||||||
<?php
|
<?php
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||||
// | 开源版本可自由商用,可去除界面版权logo
|
// | 开源版本可自由商用,可去除界面版权logo
|
||||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||||
// | 访问官网:https://www.likeadmin.cn
|
// | 访问官网:https://www.likeadmin.cn
|
||||||
// | likeadmin团队 版权所有 拥有最终解释权
|
// | likeadmin团队 版权所有 拥有最终解释权
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
// | author: likeadminTeam
|
// | author: likeadminTeam
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
namespace app\adminapi\lists\project_process_management;
|
namespace app\adminapi\lists\project_process_management;
|
||||||
|
|
||||||
|
|
||||||
use app\adminapi\lists\BaseAdminDataLists;
|
use app\adminapi\lists\BaseAdminDataLists;
|
||||||
use app\common\model\project_process_management\ApplyWithSeal;
|
use app\common\model\project_process_management\ApplyWithSeal;
|
||||||
use app\common\lists\ListsSearchInterface;
|
use app\common\lists\ListsSearchInterface;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ApplyWithSeal列表
|
* ApplyWithSeal列表
|
||||||
* Class ApplyWithSealLists
|
* Class ApplyWithSealLists
|
||||||
* @package app\adminapi\listsproject_process_management
|
* @package app\adminapi\listsproject_process_management
|
||||||
*/
|
*/
|
||||||
class ApplyWithSealLists extends BaseAdminDataLists implements ListsSearchInterface
|
class ApplyWithSealLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @notes 设置搜索条件
|
* @notes 设置搜索条件
|
||||||
* @return \string[][]
|
* @return \string[][]
|
||||||
* @author likeadmin
|
* @author likeadmin
|
||||||
* @date 2024/02/23 15:05
|
* @date 2024/02/23 15:05
|
||||||
*/
|
*/
|
||||||
public function setSearch(): array
|
public function setSearch(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'=' => ['num'],
|
'=' => ['num'],
|
||||||
];
|
|
||||||
}
|
];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @notes 获取列表
|
/**
|
||||||
* @return array
|
* @notes 获取列表
|
||||||
* @throws \think\db\exception\DataNotFoundException
|
* @return array
|
||||||
* @throws \think\db\exception\DbException
|
* @throws \think\db\exception\DataNotFoundException
|
||||||
* @throws \think\db\exception\ModelNotFoundException
|
* @throws \think\db\exception\DbException
|
||||||
* @author likeadmin
|
* @throws \think\db\exception\ModelNotFoundException
|
||||||
* @date 2024/02/23 15:05
|
* @author likeadmin
|
||||||
*/
|
* @date 2024/02/23 15:05
|
||||||
public function lists(): array
|
*/
|
||||||
{
|
public function lists(): array
|
||||||
return ApplyWithSeal::where($this->searchWhere)
|
{
|
||||||
->field(['id', 'dataid', 'num', 'types', 'filetype', 'ridingseam', 'name', 'frequency', 'limit', 'depar', 'stampman', 'project', 'principal', 'content', 'loan', 'borrow', 'returndate', 'applicant', 'date', 'sjborrow', 'sjborrower', 'sjreturn', 'returnee', 'annex'])
|
return ApplyWithSeal::where($this->searchWhere)
|
||||||
->limit($this->limitOffset, $this->limitLength)
|
->limit($this->limitOffset, $this->limitLength)
|
||||||
->order(['id' => 'desc'])
|
->order(['id' => 'desc'])
|
||||||
->select()
|
->select()
|
||||||
->toArray();
|
->toArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @notes 获取数量
|
* @notes 获取数量
|
||||||
* @return int
|
* @return int
|
||||||
* @author likeadmin
|
* @author likeadmin
|
||||||
* @date 2024/02/23 15:05
|
* @date 2024/02/23 15:05
|
||||||
*/
|
*/
|
||||||
public function count(): int
|
public function count(): int
|
||||||
{
|
{
|
||||||
return ApplyWithSeal::where($this->searchWhere)->count();
|
return ApplyWithSeal::where($this->searchWhere)->count();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -59,6 +59,9 @@ class ProjectProgressPaymentLists extends BaseAdminDataLists implements ListsSea
|
|||||||
->limit($this->limitOffset, $this->limitLength)
|
->limit($this->limitOffset, $this->limitLength)
|
||||||
->order(['id' => 'desc'])
|
->order(['id' => 'desc'])
|
||||||
->select()
|
->select()
|
||||||
|
->each(function($item){
|
||||||
|
$item['annex'] = json_decode($item['annex'], true);
|
||||||
|
})
|
||||||
->toArray();
|
->toArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,8 +41,8 @@ class ApplyWithSealLogic extends BaseLogic
|
|||||||
Db::startTrans();
|
Db::startTrans();
|
||||||
try {
|
try {
|
||||||
ApplyWithSeal::create([
|
ApplyWithSeal::create([
|
||||||
'dataid' => $params['dataid'],
|
'dataid' => generate_sn(ApplyWithSeal::class, 'dataid'),
|
||||||
'num' => $params['num'],
|
'num' => generate_sn(ApplyWithSeal::class, 'num'),
|
||||||
'types' => $params['types'],
|
'types' => $params['types'],
|
||||||
'filetype' => $params['filetype'],
|
'filetype' => $params['filetype'],
|
||||||
'ridingseam' => $params['ridingseam'],
|
'ridingseam' => $params['ridingseam'],
|
||||||
@ -63,7 +63,7 @@ class ApplyWithSealLogic extends BaseLogic
|
|||||||
'sjborrower' => $params['sjborrower'],
|
'sjborrower' => $params['sjborrower'],
|
||||||
'sjreturn' => $params['sjreturn'],
|
'sjreturn' => $params['sjreturn'],
|
||||||
'returnee' => $params['returnee'],
|
'returnee' => $params['returnee'],
|
||||||
'annex' => $params['annex'],
|
'annex' => json_encode($params['annex']),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Db::commit();
|
Db::commit();
|
||||||
@ -88,8 +88,6 @@ class ApplyWithSealLogic extends BaseLogic
|
|||||||
Db::startTrans();
|
Db::startTrans();
|
||||||
try {
|
try {
|
||||||
ApplyWithSeal::where('id', $params['id'])->update([
|
ApplyWithSeal::where('id', $params['id'])->update([
|
||||||
'dataid' => $params['dataid'],
|
|
||||||
'num' => $params['num'],
|
|
||||||
'types' => $params['types'],
|
'types' => $params['types'],
|
||||||
'filetype' => $params['filetype'],
|
'filetype' => $params['filetype'],
|
||||||
'ridingseam' => $params['ridingseam'],
|
'ridingseam' => $params['ridingseam'],
|
||||||
@ -110,7 +108,7 @@ class ApplyWithSealLogic extends BaseLogic
|
|||||||
'sjborrower' => $params['sjborrower'],
|
'sjborrower' => $params['sjborrower'],
|
||||||
'sjreturn' => $params['sjreturn'],
|
'sjreturn' => $params['sjreturn'],
|
||||||
'returnee' => $params['returnee'],
|
'returnee' => $params['returnee'],
|
||||||
'annex' => $params['annex'],
|
'annex' => json_encode($params['annex'])
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Db::commit();
|
Db::commit();
|
||||||
@ -145,6 +143,8 @@ class ApplyWithSealLogic extends BaseLogic
|
|||||||
*/
|
*/
|
||||||
public static function detail($params): array
|
public static function detail($params): array
|
||||||
{
|
{
|
||||||
return ApplyWithSeal::findOrEmpty($params['id'])->toArray();
|
$data = ApplyWithSeal::findOrEmpty($params['id'])->toArray();
|
||||||
|
$data['annex'] = json_decode($params['annex'], true);
|
||||||
|
return $data;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -41,7 +41,7 @@ class ProjectChangeVisaContentLogic extends BaseLogic
|
|||||||
Db::startTrans();
|
Db::startTrans();
|
||||||
try {
|
try {
|
||||||
ProjectChangeVisaContent::create([
|
ProjectChangeVisaContent::create([
|
||||||
'project_change_visa_dataid' => $params['project_change_visa_dataid'],
|
'project_change_visa_id' => $params['project_change_visa_id'],
|
||||||
'directory' => $params['directory'],
|
'directory' => $params['directory'],
|
||||||
'unit_name' => $params['unit_name'],
|
'unit_name' => $params['unit_name'],
|
||||||
'time' => $params['time'],
|
'time' => $params['time'],
|
||||||
|
@ -17,6 +17,7 @@ namespace app\adminapi\logic\project_process_management;
|
|||||||
|
|
||||||
use app\common\model\project_process_management\ProjectChangeVisa;
|
use app\common\model\project_process_management\ProjectChangeVisa;
|
||||||
use app\common\logic\BaseLogic;
|
use app\common\logic\BaseLogic;
|
||||||
|
use app\common\model\project_process_management\ProjectChangeVisaContent;
|
||||||
use think\facade\Db;
|
use think\facade\Db;
|
||||||
|
|
||||||
|
|
||||||
@ -110,6 +111,8 @@ class ProjectChangeVisaLogic extends BaseLogic
|
|||||||
*/
|
*/
|
||||||
public static function detail($params): array
|
public static function detail($params): array
|
||||||
{
|
{
|
||||||
return ProjectChangeVisa::with(['projectInfo'])->findOrEmpty($params['id'])->toArray();
|
$data = ProjectChangeVisa::with(['projectInfo'])->findOrEmpty($params['id'])->toArray();
|
||||||
|
$data['project_change_visa_content'] = ProjectChangeVisaContent::where('project_change_visa_id', $data['id'])->select();
|
||||||
|
return $data;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -40,7 +40,7 @@ class ProjectProgressPaymentLogic extends BaseLogic
|
|||||||
{
|
{
|
||||||
Db::startTrans();
|
Db::startTrans();
|
||||||
try {
|
try {
|
||||||
ProjectProgressPayment::create([
|
$p = ProjectProgressPayment::create([
|
||||||
'dataid' => generate_sn(ProjectProgressPayment::class, 'dataid'),
|
'dataid' => generate_sn(ProjectProgressPayment::class, 'dataid'),
|
||||||
'num' => generate_sn(ProjectProgressPayment::class, 'num'),
|
'num' => generate_sn(ProjectProgressPayment::class, 'num'),
|
||||||
'project_id' => $params['project_id'],
|
'project_id' => $params['project_id'],
|
||||||
@ -49,9 +49,12 @@ class ProjectProgressPaymentLogic extends BaseLogic
|
|||||||
'sbhj' => $params['sbhj'],
|
'sbhj' => $params['sbhj'],
|
||||||
'shhj' => $params['shhj'],
|
'shhj' => $params['shhj'],
|
||||||
'ljhj' => $params['ljhj'],
|
'ljhj' => $params['ljhj'],
|
||||||
'annex' => $params['annex'],
|
'annex' => json_encode($params['annex'])
|
||||||
]);
|
]);
|
||||||
|
foreach ($params['project_progress_payment_detail'] as $item) {
|
||||||
|
$item['project_progress_payment_id'] = $p->id;
|
||||||
|
ProjectChangeVisaContentLogic::add($item);
|
||||||
|
}
|
||||||
Db::commit();
|
Db::commit();
|
||||||
return true;
|
return true;
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
@ -80,7 +83,7 @@ class ProjectProgressPaymentLogic extends BaseLogic
|
|||||||
'sbhj' => $params['sbhj'],
|
'sbhj' => $params['sbhj'],
|
||||||
'shhj' => $params['shhj'],
|
'shhj' => $params['shhj'],
|
||||||
'ljhj' => $params['ljhj'],
|
'ljhj' => $params['ljhj'],
|
||||||
'annex' => $params['annex'],
|
'annex' => json_encode($params['annex'])
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Db::commit();
|
Db::commit();
|
||||||
@ -115,6 +118,8 @@ class ProjectProgressPaymentLogic extends BaseLogic
|
|||||||
*/
|
*/
|
||||||
public static function detail($params): array
|
public static function detail($params): array
|
||||||
{
|
{
|
||||||
return ProjectProgressPayment::with(['projectInfo'])->findOrEmpty($params['id'])->toArray();
|
$data = ProjectProgressPayment::with(['projectInfo'])->findOrEmpty($params['id'])->toArray();
|
||||||
|
$data['annex'] = json_decode($data['annex'], true);
|
||||||
|
return $data;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -55,6 +55,7 @@ class ProjectSurveySignatureLogic extends BaseLogic
|
|||||||
'content' => $params['content'],
|
'content' => $params['content'],
|
||||||
'result' => $params['result'],
|
'result' => $params['result'],
|
||||||
'remark' => $params['remark'],
|
'remark' => $params['remark'],
|
||||||
|
'annex' => json_encode($params['annex'])
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Db::commit();
|
Db::commit();
|
||||||
@ -91,6 +92,7 @@ class ProjectSurveySignatureLogic extends BaseLogic
|
|||||||
'content' => $params['content'],
|
'content' => $params['content'],
|
||||||
'result' => $params['result'],
|
'result' => $params['result'],
|
||||||
'remark' => $params['remark'],
|
'remark' => $params['remark'],
|
||||||
|
'annex' => json_encode($params['annex'])
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Db::commit();
|
Db::commit();
|
||||||
@ -125,6 +127,8 @@ class ProjectSurveySignatureLogic extends BaseLogic
|
|||||||
*/
|
*/
|
||||||
public static function detail($params): array
|
public static function detail($params): array
|
||||||
{
|
{
|
||||||
return ProjectSurveySignature::with(['projectInfo'])->findOrEmpty($params['id'])->toArray();
|
$data = ProjectSurveySignature::with(['projectInfo'])->findOrEmpty($params['id'])->toArray();
|
||||||
|
$data['annex'] = json_decode($data['annex'], true);
|
||||||
|
return $data;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user