complete document service

This commit is contained in:
iIronside
2022-11-16 14:24:52 +03:00
parent 5c0badaf92
commit c52dd918db
20 changed files with 649 additions and 177 deletions

View File

@ -2,16 +2,13 @@
namespace backend\modules\document\controllers;
use backend\modules\card\models\UserCard;
use backend\modules\document\models\DocumentTemplate;
use common\classes\Debug;
use kartik\mpdf\Pdf;
use Yii;
use backend\modules\document\models\Document;
use backend\modules\document\models\DocumentSearch;
use common\services\DocumentService;
use Yii;
use yii\filters\VerbFilter;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
/**
* DocumentController implements the CRUD actions for Document model.
@ -70,8 +67,8 @@ class DocumentController extends Controller
{
$model = new Document();
if ($model->load(Yii::$app->request->post()) && $model->validate()) { // //$model->save(false)
$this::generateDocumentBody($model);
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
DocumentService::generateDocumentBody($model);
$model->save(false);
return $this->redirect(['view', 'id' => $model->id]);
}
@ -142,7 +139,7 @@ class DocumentController extends Controller
* @param integer $id
* @throws NotFoundHttpException
*/
public function actionUpdateDocumentBody($id)
public function actionUpdateDocumentBody($id): string
{
$model = $this->findModel($id);
$model->scenario = $model::SCENARIO_UPDATE_DOCUMENT_BODY;
@ -157,67 +154,33 @@ class DocumentController extends Controller
]);
}
public function generateDocumentBody(Document $model)
public function actionDownloadPdf($id): string
{
$templateModel = DocumentTemplate::findOne($model->template_id);
preg_match_all('/(\${\w+})/', $templateModel->template_body,$out);
$model = $this->findModel($id);
$model->scenario = $model::SCENARIO_DOWNLOAD_DOCUMENT;
$document = $templateModel->template_body;;
foreach ($out[0] as $field) {
if (str_contains($document, $field)) {
if($field == '${contract_number}') {
$fieldValue = 101;
} elseif ($field == '${title}') {
$fieldValue = $model->title;
} elseif ($field == '${company}') {
$fieldValue = $model->company->name;
} elseif ($field == '${manager}') {
$fieldValue = $model->manager->userCard->fio;
} elseif ($field == '${contractor_company}') {
$fieldValue = $model->company->name;
} elseif ($field == '${contractor_manager}') {
$fieldValue = $model->manager->userCard->fio;
}
} else {
$fieldValue = $field;
}
$document = str_replace($field, $fieldValue, $document);
if ($model->validate()) {
DocumentService::downloadPdf($id);
}
$model->body = $document;
Yii::$app->session->setFlash('error', $model->getFirstError('body'));
return $this->render('download', [
'model' => Document::findOne($id)
]);
}
public function actionDownloadPdf($id)
public function actionDownloadDocx($id): string
{
$model = Document::findOne($id);
$model = $this->findModel($id);
$model->scenario = $model::SCENARIO_DOWNLOAD_DOCUMENT;
$pdf = new Pdf(); // or new Pdf();
$mpdf = $pdf->api; // fetches mpdf api
// $mpdf->SetHeader('Resume ' . $model->ti . '||Generated by ITGuild.info At: ' . date("d/m/Y")); // call methods or set any properties
$mpdf->SetFooter('{PAGENO}');
$mpdf->WriteHtml($model->body); // call mpdf write html
echo $mpdf->Output("{$model->title}", 'D'); // call the mpdf api output as needed
}
if ($model->validate()) {
DocumentService::downloadPdf($id);
}
public function actionDownloadDocx($id)
{
$model = Document::findOne($id);
$pw = new \PhpOffice\PhpWord\PhpWord();
// (B) ADD HTML CONTENT
$section = $pw->addSection();
$resumeText = str_replace(array('<br/>', '<br>', '</br>'), ' ', $model->body);
\PhpOffice\PhpWord\Shared\Html::addHtml($section, $resumeText, false, false);
// (C) SAVE TO DOCX ON SERVER
// $pw->save("convert.docx", "Word2007");
// (D) OR FORCE DOWNLOAD
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment;filename=\"$model->title.docx\"");
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($pw, "Word2007");
$objWriter->save("php://output");
exit();
Yii::$app->session->setFlash('error', $model->getFirstError('body'));
return $this->render('download', [
'model' => Document::findOne($id)
]);
}
}