update
This commit is contained in:
parent
ab2c41fa76
commit
4156fd1b63
@ -116,9 +116,10 @@ class ContractLogic extends BaseLogic
|
|||||||
public static function edit(array $params): bool
|
public static function edit(array $params): bool
|
||||||
{
|
{
|
||||||
$buy_bidding_document = BidBuyBiddingDocument::field('project_id')->where('id',$params['buy_bidding_document_id'])->findOrEmpty();
|
$buy_bidding_document = BidBuyBiddingDocument::field('project_id')->where('id',$params['buy_bidding_document_id'])->findOrEmpty();
|
||||||
|
$returned_money = $params['returned_money'];
|
||||||
Db::startTrans();
|
Db::startTrans();
|
||||||
try {
|
try {
|
||||||
Contract::where('approve_id', $params['approve_id'])->update([
|
Contract::where('id', $params['id'])->update([
|
||||||
"org_id" => $params['org_id'],
|
"org_id" => $params['org_id'],
|
||||||
"dept_id" =>$params['dept_id'],
|
"dept_id" =>$params['dept_id'],
|
||||||
"project_id" => $buy_bidding_document['project_id'],
|
"project_id" => $buy_bidding_document['project_id'],
|
||||||
@ -147,6 +148,34 @@ class ContractLogic extends BaseLogic
|
|||||||
"remark" => $params['remark'] ?? '',
|
"remark" => $params['remark'] ?? '',
|
||||||
'annex' => $params['annex']? json_encode($params['annex']) : null,
|
'annex' => $params['annex']? json_encode($params['annex']) : null,
|
||||||
]);
|
]);
|
||||||
|
foreach ($returned_money as $item)
|
||||||
|
{
|
||||||
|
if(isset($item['id']) && $item['id'] != ''){
|
||||||
|
FinanceReturnedMoney::where('id',$item['id'])->update([
|
||||||
|
'project_id' => $buy_bidding_document['project_id'],
|
||||||
|
'contract_id' => $params['id'],
|
||||||
|
'return_date' => strtotime($item['return_date']),
|
||||||
|
'period' => $item['period'],
|
||||||
|
'amount' => $item['amount'],
|
||||||
|
'return_status' => 2,
|
||||||
|
'return_duty_id' => 0,
|
||||||
|
'remark' => $item['remark'] ?? '',
|
||||||
|
'annex' => null,
|
||||||
|
]);
|
||||||
|
}else{
|
||||||
|
FinanceReturnedMoney::create([
|
||||||
|
'project_id' => $buy_bidding_document['project_id'],
|
||||||
|
'contract_id' => $params['id'],
|
||||||
|
'return_date' => strtotime($item['return_date']),
|
||||||
|
'period' => $item['period'],
|
||||||
|
'amount' => $item['amount'],
|
||||||
|
'return_status' => 2,
|
||||||
|
'return_duty_id' => 0,
|
||||||
|
'remark' => $item['remark'] ?? '',
|
||||||
|
'annex' => null,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
Db::commit();
|
Db::commit();
|
||||||
return true;
|
return true;
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
|
@ -21,6 +21,7 @@ use app\common\model\custom\Custom;
|
|||||||
use app\common\model\dept\Dept;
|
use app\common\model\dept\Dept;
|
||||||
use app\common\model\dept\Orgs;
|
use app\common\model\dept\Orgs;
|
||||||
use app\common\model\dict\DictData;
|
use app\common\model\dict\DictData;
|
||||||
|
use app\common\model\finance\FinanceReturnedMoney;
|
||||||
use app\common\model\project\Project;
|
use app\common\model\project\Project;
|
||||||
use app\common\validate\BaseValidate;
|
use app\common\validate\BaseValidate;
|
||||||
|
|
||||||
@ -231,6 +232,12 @@ class ContractValidate extends BaseValidate
|
|||||||
return '回款计划数据格式错误';
|
return '回款计划数据格式错误';
|
||||||
}
|
}
|
||||||
foreach($detail as $v) {
|
foreach($detail as $v) {
|
||||||
|
if(isset($v['id']) && $v['id'] != ''){
|
||||||
|
$info = FinanceReturnedMoney::where('id',$v['id'])->findOrEmpty();
|
||||||
|
if($info->isEmpty()){
|
||||||
|
return '回款计划信息不存在';
|
||||||
|
}
|
||||||
|
}
|
||||||
if(empty($v['period'])){
|
if(empty($v['period'])){
|
||||||
return '请选择期次';
|
return '请选择期次';
|
||||||
}else{
|
}else{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user