This commit is contained in:
chenbo 2023-10-08 10:03:45 +08:00
parent 4ef6554994
commit dc130190d3

View File

@ -159,13 +159,14 @@ class CompanyController extends BaseAdminController
} }
return $this->fail(ContractLogic::getError()); return $this->fail(ContractLogic::getError());
} }
// /**生成合同 */
// /**发送合同 */
public function Draftingcontracts() public function Draftingcontracts()
{ {
$params = $this->request->param(); $params = $this->request->param();
$result = ContractLogic::Draftingcontracts($params); $result = ContractLogic::Draftingcontracts($params);
if ($result == true) { if ($result == true) {
return $this->success('生成合同成功', [], 1, 1); return $this->success('发送合同成功', [], 1, 1);
} }
return $this->fail(ContractLogic::getError()); return $this->fail(ContractLogic::getError());
} }