更新
This commit is contained in:
parent
e2dc42701d
commit
d5cc469c39
@ -24,6 +24,7 @@ use app\common\model\auth\Admin;
|
|||||||
use app\common\model\Company;
|
use app\common\model\Company;
|
||||||
use think\facade\Db;
|
use think\facade\Db;
|
||||||
use app\common\logic\contract\ContractLogic;
|
use app\common\logic\contract\ContractLogic;
|
||||||
|
use app\common\model\contract\Contract;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Company控制器
|
* Company控制器
|
||||||
@ -138,7 +139,8 @@ class CompanyController extends BaseAdminController
|
|||||||
public function postsms()
|
public function postsms()
|
||||||
{
|
{
|
||||||
$params = (new CompanyValidate())->goCheck('detail');
|
$params = (new CompanyValidate())->goCheck('detail');
|
||||||
$res = ContractLogic::postsms($params);
|
$id=Contract::where('party_b', $params['id'])->value('id');
|
||||||
|
$res = ContractLogic::postsms(['id'=>$id]);
|
||||||
if ($res == true) {
|
if ($res == true) {
|
||||||
return $this->success('发送成功', [], 1, 1);
|
return $this->success('发送成功', [], 1, 1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -168,7 +168,8 @@ class CompanyController extends BaseApiController
|
|||||||
public function postsms()
|
public function postsms()
|
||||||
{
|
{
|
||||||
$params = $this->request->param();
|
$params = $this->request->param();
|
||||||
$res = ContractLogic::postsms($params);
|
$id=Contract::where('party_b', $params['id'])->value('id');
|
||||||
|
$res = ContractLogic::postsms(['id'=>$id]);
|
||||||
if ($res == true) {
|
if ($res == true) {
|
||||||
return $this->success('发送成功', [], 1, 1);
|
return $this->success('发送成功', [], 1, 1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -20,6 +20,7 @@ use app\api\validate\PasswordValidate;
|
|||||||
use app\api\validate\SetUserInfoValidate;
|
use app\api\validate\SetUserInfoValidate;
|
||||||
use app\api\validate\UserValidate;
|
use app\api\validate\UserValidate;
|
||||||
use app\common\logic\contract\ContractLogic;
|
use app\common\logic\contract\ContractLogic;
|
||||||
|
use app\common\model\contract\Contract;
|
||||||
use Common;
|
use Common;
|
||||||
use think\facade\Db;
|
use think\facade\Db;
|
||||||
|
|
||||||
@ -199,7 +200,8 @@ class UserController extends BaseApiController
|
|||||||
public function postsms()
|
public function postsms()
|
||||||
{
|
{
|
||||||
$params = $this->request->param();
|
$params = $this->request->param();
|
||||||
$res = ContractLogic::postsms($params);
|
$id=Contract::where('party_b', $params['id'])->value('id');
|
||||||
|
$res = ContractLogic::postsms(['id'=>$id]);
|
||||||
if ($res == true) {
|
if ($res == true) {
|
||||||
return $this->success('发送成功', [], 1, 1);
|
return $this->success('发送成功', [], 1, 1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -179,17 +179,15 @@ class ContractLogic extends BaseLogic
|
|||||||
// /**发送合同 */
|
// /**发送合同 */
|
||||||
public static function Draftingcontracts($params,$type=1)
|
public static function Draftingcontracts($params,$type=1)
|
||||||
{
|
{
|
||||||
self::postsms(['id'=>158]);
|
|
||||||
return true;
|
|
||||||
if($type==1){
|
if($type==1){
|
||||||
$result = CompanyLogic::detail($params);
|
$result = CompanyLogic::detail($params);
|
||||||
}else{
|
}else{
|
||||||
$result = UserLogic::detail($params['id']);
|
$result = UserLogic::detail($params['id']);
|
||||||
}
|
}
|
||||||
if ($result && isset($result['contract']) && isset($result['contract']['file']) && $result['contract']['file'] != '') {
|
if ($result && isset($result['contract']) && isset($result['contract']['file']) && $result['contract']['file'] != '') {
|
||||||
// if ($result['contract']['check_status'] == 3) {
|
if ($result['contract']['check_status'] == 3) {
|
||||||
// return self::setError('你已经生成过合同,请问重复生成');
|
return self::setError('你已经生成过合同,请问重复生成');
|
||||||
// }
|
}
|
||||||
if($type==1){
|
if($type==1){
|
||||||
$name=$result['company_name'];
|
$name=$result['company_name'];
|
||||||
$data = [
|
$data = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user