| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530 |
- <?php
- namespace common\libs\export;
- use common\helpers\Cache;
- use common\helpers\Cache as CacheHelper;
- use common\helpers\Date;
- use common\helpers\Form;
- use common\helpers\http\RemoteUploadApi;
- use common\helpers\LoggerTool;
- use common\helpers\Tool;
- use common\helpers\user\Info;
- use common\libs\dataList\DataList;
- use common\models\ApproachOrder;
- use common\models\ApproachOrderGoods;
- use common\models\BaApproachOrder;
- use common\models\BaApproachOrderGoods;
- use common\models\BaOrder;
- use common\models\BaOrderGoods;
- use common\models\BaUser;
- use common\models\Export;
- use common\models\Order;
- use common\models\OrderGoods;
- use common\models\Region;
- use common\models\ShopGoods;
- use common\models\User;
- use Yii;
- use yii\base\Exception;
- use yii\base\InvalidConfigException;
- use yii\base\StaticInstanceTrait;
- use yii\base\Component;
- use yii\db\Query;
- class BaseExport extends Component {
- use StaticInstanceTrait;
- public $moduleId;
- /**
- * @var string the model class name. This property must be set.
- */
- public $modelClass;
- /**
- * @var
- */
- public $listModelClass;
- /**
- * @var int
- */
- public $pageSize = 100;
- /**
- * @var int
- */
- public $totalCount = 0;
- /**
- * @var int
- */
- public $offset = 0;
- /**
- * @var int
- */
- public $limit = 100;
- /**
- * csv文件名称
- * @var null
- */
- public $fileName = null;
- /**
- * 保存的基本路径
- * @var null
- */
- public $saveBasePath = null;
- /**
- * 保存路径
- * @var null
- */
- public $savePath = null;
- /**
- * 正在导出的id
- * 来源于exporting_file表
- * @var null
- */
- public $exportId = null;
- /**
- * 操作人的id
- * @var null
- */
- public $userId = null;
- /**
- * 任务id
- * @var null
- */
- public $taskId = null;
- /**
- * 是否完成
- * @var bool
- */
- public $completed = false;
- /**
- * @var array
- */
- public $params = [];
- /**
- * 文件句柄
- * @var null
- */
- private $_fp = null;
- /**
- * 是否上传远程
- * @var bool
- */
- public $isRemote = true;
- /**
- * @var DataList
- */
- private $_listModel;
- public static function factory($taskId) {
- return new self([
- 'taskId' => $taskId
- ]
- );
- }
- /**
- *
- */
- public function init() {
- parent::init();
- $this->isRemote = \Yii::$app->params['isRemoteUpload'];
- }
- /**
- * 生成复杂的路径
- * @return string
- */
- public function pathCreator(...$params) {
- $hash = md5(implode('_', $params));
- $first = substr($hash, 0, 3);
- $second = substr($hash, 3, 2);
- $dir = $first . __DS__ . $second . __DS__;
- return $dir;
- }
- /**
- * 获取文件名
- * @return string|null
- * @throws \Exception
- */
- public function getFileName($ext = '.csv') {
- $this->fileName = date('YmdHis', Date::nowTime()) . random_int(1000, 9999) . $ext;
- return $this->fileName;
- }
- /**
- * 获取保存的路径
- * @return array|null
- */
- public function getSavePath() {
- $this->savePath = $this->pathCreator(date('Ymd', Date::nowTime()));
- return trim($this->savePath, __DS__);
- }
- /**
- * @return bool|string|null
- */
- public function getSaveBasePath() {
- $this->saveBasePath = Yii::getAlias('@backendApi') . __DS__ . 'web' . __DS__ . 'upload' . __DS__ . \Yii::$app->params['excelLocalDir'];
- return trim($this->saveBasePath, __DS__);
- }
- /**
- * 创建目录(递归创建)
- *
- * @param $dir
- * @return string|false
- */
- public function mkdir($dir) {
- if (!is_dir($dir)) {
- $this->mkdir(dirname($dir));
- if (!mkdir($dir, 0777))
- return false;
- @exec('chown -R www:www /'.$dir);
- @exec('chmod -R 777 /'.$dir);
- }
- return $dir;
- }
- /**
- * @return array|mixed
- */
- public function getParams() {
- $this->params = CacheHelper::getAsyncParams($this->taskId);
-
- // 设置语言
- Yii::$app->language = $this->params['language'] ?? 'en-US';
- Yii::$app->sourceLanguage = Yii::$app->language == 'zh-CN' ? 'en-US' : 'zh-CN';
- return $this->params;
- }
- /**
- * @return mixed|null
- */
- public function getUserId() {
- $this->userId = isset($this->params['userId']) ? $this->params['userId'] : null;
- return $this->userId;
- }
- /**
- * @return |null
- */
- public function getExportId() {
- $this->exportId = isset($this->params['exportId']) ? $this->params['exportId'] : null;
- return $this->userId;
- }
- /**
- * 生成
- * @return bool
- * @throws Exception
- * @throws InvalidConfigException
- * @throws \yii\httpclient\Exception
- */
- public function generate() {
- $this->getParams();
- if (!$this->params) {
- throw new Exception('无法获取需要的参数');
- }
- $path = $this->getSaveBasePath() . __DS__ . $this->getSavePath();
- $path = __DS__ . $path;
- $realFile = $this->mkdir($path) . __DS__ . $this->getFileName();
- $this->completed = false;
- $this->getExportId();
- $this->getUserId();
- $fileNameUpdated = false;
- $this->_fp = fopen($realFile, 'w');
- @exec('chown -R www:www /'.$realFile);
- @exec('chmod -R 777 /'.$realFile);
- // 获取列表数据及表头
- $this->_listModel = new $this->listModelClass();
- $this->_listModel->isExport = true;
- if(method_exists($this->_listModel, 'getExportHeaders')){
- if(method_exists($this->_listModel, 'exportPrepare')) {//导出数据提前设置参数
- $this->_listModel->exportPrepare(['condition' => $this->params['condition'], 'params' => $this->params['params'], 'others' => isset($this->params['others']) ? $this->params['others'] : [], 'page' => 0, 'pageSize' => $this->pageSize, 'userId' => $this->userId]);
- }
- $headers = $this->_listModel->getExportHeaders($this->userId);
- fputcsv($this->_fp, $headers);
- unset($headers);
- $this->_updateFirst($realFile, 1);
- } else {
- throw new Exception($this->listModelClass.'的getExportHeaders方法不存在');
- }
- $this->_loopWriteData($realFile, $fileNameUpdated);
- $this->complete();
- return true;
- }
- /**
- * 循环写入数据
- * @param $realFile
- * @param $fileNameUpdated
- * @param int $page
- * @param int $counter
- * @return string
- * @throws Exception
- */
- private function _loopWriteData($realFile, &$fileNameUpdated, $page = 0, $counter = 0){
- if(method_exists($this->_listModel, 'getList')){
- $list = $this->_listModel->getList(['condition'=>$this->params['condition'], 'params'=> $this->params['params'] ?? [], 'others'=> $this->params['others'] ?? [], 'page'=>$page, 'pageSize'=>$this->pageSize, 'userId'=>$this->userId]);
- } else {
- throw new Exception($this->listModelClass.'的getList方法不存在');
- }
- if($page >= $list['totalPages']){
- return 'finish';
- }
- if(!empty($list['list'])){
- foreach($list['list'] as $columnData){
- fputcsv($this->_fp, Tool::arrTextConvert($columnData));
- $counter++;
- if ($list['totalCount'] < $counter) {
- // $counter = $list['totalCount'];
- return 'finish';
- }
- $percent = intval(($counter / $list['totalCount']) * 100);
- $this->_updatePercent($percent);
- // if (!$fileNameUpdated) {
- // $this->_updateFirst($realFile, $percent);
- // } else {
- // $this->_updatePercent($percent);
- // }
- // $fileNameUpdated = true;
- unset($percent, $columnData);
- }
- $page++;
- unset($list);
- return $this->_loopWriteData($realFile, $fileNameUpdated, $page, $counter);
- }
- unset($list);
- return 'finish';
- }
- /**
- * 循环写入数据
- */
- private function _loopWriteDataOrder()
- {
- $orderQuery = Order::find()
- ->alias('O')
- ->where($this->params['condition'], $this->params['params'])
- ->select('O.*,U.REAL_NAME,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV,OG.STANDARD_PRICE')
- ->join('LEFT JOIN', User::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', OrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- // 订单中间表只查询待支付和支付失败的订单
- $this->params['params'][':NOT_PAID'] = \Yii::$app->params['orderStatus']['notPaid']['value']; // 待支付
- $this->params['params'][':FAIL_PAID'] = \Yii::$app->params['orderStatus']['failPaid']['value']; // 支付失败
- $orderStandardQuery = ApproachOrder::find()
- ->alias('O')
- ->where($this->params['condition'] . ' AND (O.STATUS = :NOT_PAID OR O.STATUS = :FAIL_PAID)', $this->params['params'])
- ->select('O.*,U.REAL_NAME,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV,OG.STANDARD_PRICE')
- ->join('LEFT JOIN', User::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', ApproachOrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- $queryAll = $orderQuery->union($orderStandardQuery, true);
- $query = (new Query())->from(['Q' => $queryAll])->select('Q.*')->distinct()->orderBy(['CREATED_AT' => SORT_DESC]);
- $lists = $query->all();
- if(!empty($lists)){
- $regionConfig = Cache::getRegionConfig();
- foreach($lists as $columnData) {
- $CREATE_USER_ID = Info::getUserIdByUserName($columnData['CREATE_USER']);
- $createUserName = Info::getUserRealNameByUserId($CREATE_USER_ID);
- $columnAccept = [
- 'USER_NAME' => $columnData['USER_NAME'],
- 'DEC_USER_NAME' => $columnData['DEC_USER_ID'],
- 'CREATE_USER' => $columnData['CREATE_USER'],
- 'CREATE_USER_NAME' => $createUserName,
- 'SN' => $columnData['SN'],
- 'STATUS' => Tool::paramConvert(\Yii::$app->params['orderStatus'])[$columnData['STATUS']]['label'] ?? '',
- 'SKU_CODE' => $columnData['SKU_CODE'],
- 'GOODS_TITLE' => Tool::mbSignConvert($columnData['GOODS_TITLE']) ,
- 'CONSIGNEE' => $columnData['CONSIGNEE'],
- 'MOBILE' => "\t{$columnData['MOBILE']}",
- 'TEL' => "\t{$columnData['TEL']}",
- 'PROVINCE' => $regionConfig[$columnData['PROVINCE']]['REGION_NAME'] ?? '',
- 'CITY' => $regionConfig[$columnData['CITY']]['REGION_NAME'] ?? '',
- 'COUNTY' => $regionConfig[$columnData['COUNTY']]['REGION_NAME'] ?? '',
- 'ADDRESS' => $columnData['ADDRESS'],
- 'PERIOD_NUM' => $columnData['PERIOD_NUM'],
- 'ORDER_TYPE' => ($columnData['ORDER_TYPE'] == 'ZC') ? 'Welcome pack' : (in_array($columnData['PAY_TYPE'], ['cash', 'pay_stack']) ? 'Repeat Purchase': 'Points'),
- // 'WAREHOUSE' => $columnData['WAREHOUSE'],
- 'CREATED_AT' => Date('Y-m-d H:i:s', $columnData['CREATED_AT']),
- 'PAY_TYPE' => ShopGoods::payTypes()[$columnData['PAY_TYPE']]['name'] ?? ShopGoods::payTypes()['cash']['name'],
- 'PAY_AT' => $columnData['PAY_AT'] > 0 ? Date('Y-m-d H:i:s', $columnData['PAY_AT']) : '',
- 'DELIVERY_AT' => $columnData['DELIVERY_AT'] > 0 ? Date('Y-m-d H:i:s', $columnData['DELIVERY_AT']) : '',
- 'BUY_NUMS' => $columnData['BUY_NUMS'],
- 'REAL_PRICE' => $columnData['REAL_PRICE'],
- 'TOTAL_PRICE' => $columnData['REAL_PRICE'] * $columnData['BUY_NUMS'],
- 'REAL_PV' => $columnData['REAL_PV'] * $columnData['BUY_NUMS'],
- 'STANDARD_PRICE' => $columnData['STANDARD_PRICE'] * $columnData['BUY_NUMS'],
- 'PAY_FREIGHT' => $columnData['PAY_FREIGHT'],
- 'TAX_RATE' => $columnData['TAX_RATE'],
- 'TAX_AMOUNT' => Tool::calculateTax($columnData['REAL_PRICE'], $columnData['TAX_RATE'], $columnData['BUY_NUMS']),
- 'EXPRESS_COMPANY' => $columnData['EXPRESS_COMPANY'],
- 'ORDER_TRACK_NO' => $columnData['ORDER_TRACK_NO'],
- 'EXPRESS_TYPE' => $columnData['EXPRESS_TYPE'] == 0 ? 'mailing ':' auto pick',
- 'FRONT_REMARK' => $columnData['FRONT_REMARK'],
- 'DELIVERY_STATUS_NAME' => Tool::paramConvert(\Yii::$app->params['deliveryStatus'])[$columnData['DELIVERY_STATUS']]['label'] ?? '',
- 'IS_AUTO' => $columnData['IS_AUTO'] == 1 ? 'Yes' : 'No',
- ];
- fputcsv($this->_fp, Tool::arrTextConvert($columnAccept));
- unset($percent, $columnData, $columnAccept);
- }
- unset($list);
- }
- unset($list);
- return 'finish';
- }
- /**
- * 完成
- * @return bool
- * @throws Exception
- * @throws InvalidConfigException
- * @throws \yii\httpclient\Exception
- */
- public function complete() {
- $this->_updatePercent(100);
- if ($this->completed) {
- return true;
- }
- if ($this->_fp) {
- fclose($this->_fp);
- }
- // 把导出的文件上传至静态文件服务器
- if ($this->isRemote) {
- $realFile = $this->getSaveBasePath() . __DS__ . $this->getSavePath() . __DS__ . $this->getFileName();
- $remoteUploadApi = RemoteUploadApi::instance();
- if ($uploadResult = $remoteUploadApi->upload($realFile)) {
- Export::updateAll(['REMOTE_URL' => $uploadResult['url'], 'IS_EXPORTING' => 0, 'EXPORT_PERCENT' => 100, 'ENDED_AT' => Date::nowTime()], 'ID=:ID', [':ID' => $this->exportId]);
- } else {
- $this->_errorHandle();
- throw new Exception('文件远程上传失败');
- }
- // 删除本地临时文件
- unlink($realFile);
- } else {
- Export::updateAll(['IS_EXPORTING' => 0, 'EXPORT_PERCENT' => 100, 'ENDED_AT' => Date::nowTime()], 'ID=:ID', [':ID' => $this->exportId]);
- }
- \Yii::$app->swooleAsyncTimer->pushAsyncPercentToAdmin(100, ['MODEL' => 'EXPORT', 'ID' => $this->exportId, 'FIELD' => 'EXPORT_PERCENT']);
- CacheHelper::deleteAsyncParams($this->taskId);
- $this->completed = true;
- }
- /**
- * @param $message
- */
- private function _errorNotice($message) {
- Yii::$app->swooleAsyncTimer->pushAsyncResultToAdmin($this->userId, $message, false);
- }
- /**
- * 首次更新
- * @param $exportId
- * @param $realName
- */
- private function _updateFirst($realName, $percent) {
- $fileName = str_replace($this->getSaveBasePath() . __DS__, '', $realName);
- Export::updateAll([
- 'FILE_NAME' => str_replace(__DS__, '/', $fileName),
- 'UPDATED_AT' => Date::nowTime(),
- 'EXPORT_PERCENT' => $percent,
- ], 'ID=:ID', [':ID' => $this->exportId]);
- }
- /**
- * 更新百分比
- * @param $exportId
- * @param $percent
- */
- private function _updatePercent($percent) {
- // 把数据写入数据库中
- Export::updateAll(['EXPORT_PERCENT' => $percent], 'ID=:ID', [':ID' => $this->exportId]);
- \Yii::$app->swooleAsyncTimer->pushAsyncPercentToAdmin($percent, ['MODEL' => 'EXPORT', 'ID' => $this->exportId, 'FIELD' => 'EXPORT_PERCENT']);
- }
- /**
- * 发生错误处理
- * @param $exportId
- */
- private function _errorHandle() {
- Export::updateAll(['IS_EXPORTING' => 0], 'ID=:ID', [':ID' => $this->exportId]);
- }
- /**
- * 导出逻辑
- * @param $filter
- * @param $listName
- * @param null $consoleRouter
- * @throws Exception
- */
- public function exportHandle($filter, $listName, $consoleRouter = null){
- $params = [
- 'moduleId' => $this->moduleId,
- 'listName' => $listName,
- 'action' => $consoleRouter ? $consoleRouter : Yii::$app->controller->id.'/'.Yii::$app->controller->action->id, // 这里这么写,是因为调用的异步路由和同步的控制器和方法是一样的,所以,只要不传默认调和同步一样的异步方法
- 'userId' => Yii::$app->user->id,
- ];
- $this->webToAsync($params,$filter);
- }
- /**
- * 页面到异步的请求
- * @param $params
- * @param array $extend
- * @return bool
- * @throws Exception
- */
- public function webToAsync($params, $extend = []) {
- $default = [
- 'moduleId' => null,
- 'listName' => null,
- 'remark' => null,
- 'action' => null,
- 'userId' => null,
- ];
- $params = Tool::deepParse($params, $default);
- if (!$params['moduleId'] || !$params['listName'] || !$params['action']) {
- throw new Exception('请设置moduleId,listName和action');
- }
- // 把文件对应的相关资料存入数据库中
- $export = new Export();
- $export->EXPORT_NAME = $params['listName'] . '_' . date('Exp_y-m-d H:i:s', Date::nowTime());
- $export->MODULE_NAME = $params['moduleId'];
- $export->REMARK = $params['remark'];
- $export->IS_EXPORTING = 1;
- $export->ADMIN_ID = \Yii::$app->user->id;
- $export->STARTED_AT = Date::nowTime();
- $export->CREATED_AT = Date::nowTime();
- $export->EXPORT_PERCENT = 0;
- $export->ENDED_AT = 0;
- $export->UPDATED_AT = 0;
- if (!$export->save()) {
- throw new Exception(Form::formatErrorsForApi($export->getErrors()));
- }
- $extend = array_merge($extend, [
- 'exportId' => $export->ID,
- 'userId' => $params['userId'],
- 'language' => Yii::$app->language,
- ]);
- // 异步处理添加任务
- $taskKey = \Yii::$app->swooleAsyncTimer->asyncHandle($params['action'], $extend);
- if($taskKey === false){
- // 删除刚刚添加的导出数据
- Export::deleteAll(['ID'=>$export->ID]);
- throw new Exception('导出失败,请求异步处理服务器失败');
- }
- return $taskKey;
- }
- /**
- * 生成
- * @return bool
- * @throws Exception
- * @throws InvalidConfigException
- * @throws \yii\httpclient\Exception
- */
- public function generateOrderExcel() {
- $this->getParams();
- if (!$this->params) {
- throw new Exception('无法获取需要的参数');
- }
- $path = $this->getSaveBasePath() . __DS__ . $this->getSavePath();
- $path = __DS__ . $path;
- $realFile = $this->mkdir($path) . __DS__ . $this->getFileName();
- $this->completed = false;
- $this->getExportId();
- $this->getUserId();
- $fileNameUpdated = false;
- $this->_fp = fopen($realFile, 'w');
- @exec('chown -R www:www /'.$realFile);
- @exec('chmod -R 777 /'.$realFile);
- // 获取列表数据及表头
- $this->_listModel = new $this->listModelClass();
- $this->_listModel->isExport = true;
- if(method_exists($this->_listModel, 'getExportHeaders')){
- if(method_exists($this->_listModel, 'exportPrepare')) {//导出数据提前设置参数
- $this->_listModel->exportPrepare(['condition' => $this->params['condition'], 'params' => $this->params['params'], 'others' => $this->params['others'] ?? [], 'page' => 0, 'pageSize' => 100000, 'userId' => $this->userId]);
- }
- $headers = $this->_listModel->getExportHeaders($this->userId);
- fputcsv($this->_fp, $headers);
- unset($headers);
- $this->_updateFirst($realFile, 1);
- } else {
- throw new Exception($this->listModelClass.'的getExportHeaders方法不存在');
- }
- $this->_loopWriteDataOrder();
- $this->complete();
- return true;
- }
- /**
- * 生成
- * @return bool
- * @throws Exception
- * @throws InvalidConfigException
- * @throws \yii\httpclient\Exception
- */
- public function generateOrderPDF() {
- $this->getParams();
- if (!$this->params) {
- throw new Exception('无法获取需要的参数');
- }
- $path = __DS__ . $this->getSaveBasePath() . __DS__ . $this->getSavePath();
- $realFile = $path . __DS__ . $this->getFileName('.pdf');
- $this->completed = false;
- $this->getExportId();
- $this->getUserId();
- $fileNameUpdated = false;
- // 获取列表数据及表头
- $this->_listModel = new $this->listModelClass();
- $this->_listModel->isExport = true;
- // 查询订单数据
- // $oderList = $this->_loopWriteDataPDF($realFile, $fileNameUpdated);
- $orderQuery = Order::find()
- ->alias('O')
- ->where($this->params['condition'], $this->params['params'])
- ->select('O.*,U.REAL_NAME,U.DEC_ID,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV')
- ->join('LEFT JOIN', User::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', OrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- // 订单中间表只查询待支付和支付失败的订单
- $this->params['params'][':NOT_PAID'] = \Yii::$app->params['orderStatus']['notPaid']['value']; // 待支付
- $this->params['params'][':FAIL_PAID'] = \Yii::$app->params['orderStatus']['failPaid']['value']; // 支付失败
- $orderStandardQuery = ApproachOrder::find()
- ->alias('O')
- ->where($this->params['condition'] . ' AND (O.STATUS = :NOT_PAID OR O.STATUS = :FAIL_PAID)', $this->params['params'])
- ->select('O.*,U.REAL_NAME,U.DEC_ID,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV')
- ->join('LEFT JOIN', User::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', ApproachOrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- $queryAll = $orderQuery->union($orderStandardQuery, true);
- $query = (new Query())->from(['Q' => $queryAll])->select('Q.*')->distinct()->orderBy(['CREATED_AT' => SORT_DESC]);
- $oderList = $query->all();
- if ($oderList) {
- $userId = '';
- $userName = '';
- $address = '';
- $mobile = '';
- $orderAt = '';
- $orderDetails = '';
- $orderSn = '';
- $orderAmount = 0; // 合计总额
- $orderNums = 0; // 合计总数
- $totalTaxAmount = 0; // 合计税额
- $totalAmount = 0;
- foreach ($oderList as $key => $value) {
- $provinceName = $value['PROVINCE'] ? Region::getCnName($value['PROVINCE']) : '';
- $cityName = $value['CITY'] ? Region::getCnName($value['CITY']) : '';
- $countyName = $value['COUNTY'] ? Region::getCnName($value['COUNTY']) : '';
- $userId = $value['USER_NAME'];
- $userName = $value['REAL_NAME'];
- $address = $provinceName . $cityName . $countyName . $value['ADDRESS'];
- $mobile = $value['MOBILE'];
- $orderAt = Date::convert($value['CREATED_AT'],'Y-m-d H:i:s');
- $orderSn = $value['SN'];
- // 总价
- $totalAmount = $value['BUY_NUMS'] * $value['REAL_PRICE'];
- $orderAmount += $totalAmount;
- $orderNums += $value['BUY_NUMS'];
- // 税额
- $taxAmount = Tool::calculateTax($value['REAL_PRICE'], $value['TAX_RATE'], $value['BUY_NUMS']);
- $totalTaxAmount += $taxAmount;
- $taxAmount = Tool::formatAmount($taxAmount);
- $totalAmount = Tool::formatAmount($totalAmount);
- // 订单详情
- $orderDetails .= <<<EOT
- <tr>
- <td>{$value['SKU_CODE']}</td>
- <td>{$value['GOODS_TITLE']}</td>
- <td style="text-align: right;">{$value['REAL_PRICE']}</td>
- <td>{$value['BUY_NUMS']}</td>
- <td style="text-align: right;">{$value['TAX_RATE']}</td>
- <td style="text-align: right;">{$taxAmount}</td>
- <td style="text-align: right;">{$totalAmount}</td>
- </tr>
- EOT;
- }
- $memberCode = Yii::t('app', 'memberCode');
- $memberName = Yii::t('app', 'memberName');
- $memberAddress = Yii::t('app', 'memberAddress');
- $memberPhone = Yii::t('app', 'memberPhone');
- $orderCode = Yii::t('app', 'orderCode');
- $orderDetail = Yii::t('app', 'orderDetail');
- $productCode = Yii::t('app', 'productCode');
- $productName = Yii::t('app', 'productName');
- $productPrice = Yii::t('app', 'productPrice');
- $quantity = Yii::t('app', 'qty');
- $taxRate = Yii::t('app', 'taxRate');
- $totalTax = Yii::t('app', 'totalTax');
- $totalAmount = Yii::t('app', 'totalAmount');
- $total = Yii::t('app', 'total');
- $signature = Yii::t('app', 'signature');
- $date = Yii::t('app', 'date');
- $createAt = Yii::t('app', 'createAt');
- // 订单基本信息
- $orderBase = <<<ORDER
- <table border="1" style="table-layout: fixed; padding: 10px 20px;" width="100%">
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$memberCode}</td>
- <td width="70%">{$userId}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$memberName}</td>
- <td width="70%">{$userName}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$memberAddress}</td>
- <td width="70%">{$address}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$memberPhone}</td>
- <td width="70%">{$mobile}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$orderCode}</td>
- <td width="70%">{$orderSn}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$createAt}</td>
- <td width="70%">{$orderAt}</td>
- </tr>
- <tr>
- <td class="bg" style="font-weight: bold; font-size: 14px; text-align: center;">{$orderDetail}</td>
- <td class="bg"></td>
- </tr>
- </table>
- ORDER;
- $l['a_meta_charset'] = 'UTF-8';
- $l['a_meta_dir'] = 'ltr';
- $l['a_meta_language'] = 'zh';
- $l['w_page'] = '页面';
- $orderAmount = Tool::formatAmount($orderAmount);
- $totalTaxAmount = Tool::formatAmount($totalTaxAmount);
- $context = <<<ORDER
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <title>{$orderDetail}</title>
- <style>
- table {
- border-collapse: collapse;
- }
- table td, table th {
- border: 1px solid #ccc;
- /*padding: 5px 5px;*/
- border-collapse: collapse;
- }
- /*td {*/
- /* padding: 120px;*/
- /*}*/
- .bg {
- background-color: #ccc;
- }
- </style>
- </head>
- <body>
- <div class="content">
- <p style="text-align: center; font-weight: bold; font-size: 22px;"><b>{$orderDetail}</b><br></p>
- <div>
- <div style="display: block; width: 100%;">
- {$orderBase}
-
- <table border="1" width="100%" style="padding: 10px 5px; text-align: center;">
- <tr>
- <th width="15%" style="font-size: 14px; font-weight: bold; text-align: center;">{$productCode}</th>
- <th width="20%" style="font-size: 14px; font-weight: bold; text-align: center;">{$productName}</th>
- <th width="15%" style="font-size: 14px; font-weight: bold; text-align: center;">{$productPrice}</th>
- <th width="10%" style="font-size: 14px; font-weight: bold; text-align: center;">{$quantity}</th>
- <th width="12%" style="font-size: 14px; font-weight: bold; text-align: center;">{$taxRate}</th>
- <th width="13%" style="font-size: 14px; font-weight: bold; text-align: center;">{$totalTax}</th>
- <th width="15%" style="font-size: 14px; font-weight: bold; text-align: center;">{$totalAmount}</th>
- </tr>
- {$orderDetails}
- <tr>
- <td colspan="3">{$total}</td>
- <td style="text-align: right;">{$orderNums}</td>
- <td></td>
- <td style="text-align: right;">{$totalTaxAmount}</td>
- <td style="text-align: right;">{$orderAmount}</td>
- </tr>
- </table>
- </div>
-
- <div style="width: 100%; margin-top: 50px; height: 30px;">
- <table width="100%" style="border: none; padding: 10px 20px; text-align: center;">
- <tr style="border: none;">
- <td width="70%" style="border: none;"></td>
- <td width="30%" style="font-weight: bold; text-align: left; font-size: 14px; border: none;">{$signature}:</td>
- </tr>
- <tr style="border: none;">
- <td width="70%" style="border: none;"></td>
- <td width="30%" style="font-weight: bold; text-align: left; font-size: 14px; border: none;">{$date}:</td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </body>
- </html>
- ORDER;
- require_once (\Yii::$app->vendorPath . '/tecnickcom/tcpdf/tcpdf.php');
- $pdf = new \TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
- // 设置打印模式
- $pdf->SetCreator(PDF_CREATOR);
- $pdf->SetAuthor('DaZe');
- $pdf->SetTitle($orderSn);
- $pdf->SetSubject('TCPDF Tutorial');
- $pdf->SetKeywords('TCPDF, PDF, example, test, guide');
- // 是否显示页眉
- $pdf->setPrintHeader(false);
- // 设置页眉字体
- $pdf->setHeaderFont(Array('dejavusans', '', '12'));
- // 页眉距离顶部的距离
- $pdf->SetHeaderMargin('5');
- // 是否显示页脚
- $pdf->setPrintFooter(false);
- // 设置默认等宽字体
- $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
- // 设置行高
- $pdf->setCellHeightRatio(1);
- // 设置左、上、右的间距
- $pdf->SetMargins('10', '0', '10');
- // 设置是否自动分页 距离底部多少距离时分页
- $pdf->SetAutoPageBreak(TRUE, '15');
- // 设置图像比例因子
- $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
- if (@file_exists(\Yii::$app->vendorPath . 'tecnickcom/tcpdf/examples/lang/eng.php')) {
- require_once(\Yii::$app->vendorPath . '/tecnickcom/tcpdf/examples/lang/eng.php');
- $pdf->setLanguageArray($l);
- }
- $pdf->setFontSubsetting(true);
- $pdf->AddPage();
- // 设置字体
- $pdf->SetFont('stsongstdlight', '', 10, '', true);
- // $image_file = \Yii::$app->basePath . '/../frontendEle/src/static/img/ngds-logo.jpg';
- // if (!file_exists($image_file)) {
- // $image_file = \Yii::$app->runtimePath . '/../common/uploads/ngds-logo.jpg';
- // }
- $image_file = \Yii::$app->runtimePath . '/../ngds-logo.jpg';
- $image = file_get_contents($image_file);
- $pdf->Image('@' . $image, 15, 12, 20, 7, 'JPG');
- $pdf->writeHTML($context);
- $pdf->Output($realFile, 'F');
- $this->_updateFirst($realFile, 1);
- }
- $this->complete();
- return true;
- }
- /**
- * 生成
- * @return bool
- * @throws Exception
- * @throws InvalidConfigException
- * @throws \yii\httpclient\Exception
- */
- public function generateDecOrderPDF() {
- $this->getParams();
- if (!$this->params) {
- throw new Exception('无法获取需要的参数');
- }
- $path = __DS__ . $this->getSaveBasePath() . __DS__ . $this->getSavePath();
- $realFile = $path . __DS__ . $this->getFileName('.pdf');
- $this->completed = false;
- $this->getExportId();
- $this->getUserId();
- $fileNameUpdated = false;
- // 获取列表数据及表头
- $this->_listModel = new $this->listModelClass();
- $this->_listModel->isExport = true;
- // 查询订单数据
- // $oderList = $this->_loopWriteDataPDF($realFile, $fileNameUpdated);
- $orderQuery = Order::find()
- ->alias('O')
- ->where($this->params['condition'], $this->params['params'])
- ->select('O.*,U.REAL_NAME,U.DEC_ID,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV')
- ->join('LEFT JOIN', User::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', OrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- // 订单中间表只查询待支付和支付失败的订单
- $this->params['params'][':NOT_PAID'] = \Yii::$app->params['orderStatus']['notPaid']['value']; // 待支付
- $this->params['params'][':FAIL_PAID'] = \Yii::$app->params['orderStatus']['failPaid']['value']; // 支付失败
- $orderStandardQuery = ApproachOrder::find()
- ->alias('O')
- ->where($this->params['condition'] . ' AND (O.STATUS = :NOT_PAID OR O.STATUS = :FAIL_PAID)', $this->params['params'])
- ->select('O.*,U.REAL_NAME,U.DEC_ID,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV')
- ->join('LEFT JOIN', User::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', ApproachOrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- $queryAll = $orderQuery->union($orderStandardQuery, true);
- $query = (new Query())->from(['Q' => $queryAll])->select('Q.*')->distinct()->orderBy(['CREATED_AT' => SORT_DESC]);
- $oderList = $query->all();
- if ($oderList) {
- $userId = '';
- $userName = '';
- $address = '';
- $mobile = '';
- $orderAt = '';
- $orderDetails = '';
- $orderSn = '';
- $orderAmount = 0; // 合计总额
- $orderNums = 0; // 合计总数
- $totalTaxAmount = 0; // 合计税额
- $totalAmount = 0;
- foreach ($oderList as $key => $value) {
- $provinceName = $value['PROVINCE'] ? Region::getCnName($value['PROVINCE']) : '';
- $cityName = $value['CITY'] ? Region::getCnName($value['CITY']) : '';
- $countyName = $value['COUNTY'] ? Region::getCnName($value['COUNTY']) : '';
- $userId = $value['USER_NAME'];
- $userName = $value['REAL_NAME'];
- $address = $provinceName . $cityName . $countyName . $value['ADDRESS'];
- $mobile = $value['MOBILE'];
- $orderAt = Date::convert($value['CREATED_AT'],'Y-m-d H:i:s');
- $orderSn = $value['SN'];
- // 总价
- $totalAmount = $value['BUY_NUMS'] * $value['REAL_PRICE'];
- $orderAmount += $totalAmount;
- $orderNums += $value['BUY_NUMS'];
- // 税额
- $taxAmount = Tool::calculateTax($value['REAL_PRICE'], $value['TAX_RATE'], $value['BUY_NUMS']);
- $totalTaxAmount += $taxAmount;
- $taxAmount = Tool::formatAmount($taxAmount);
- $totalAmount = Tool::formatAmount($totalAmount);
- // 订单详情
- $orderDetails .= <<<EOT
- <tr>
- <td>{$value['SKU_CODE']}</td>
- <td>{$value['GOODS_TITLE']}</td>
- <td style="text-align: right;">{$value['REAL_PRICE']}</td>
- <td>{$value['BUY_NUMS']}</td>
- <td style="text-align: right;">{$value['TAX_RATE']}</td>
- <td style="text-align: right;">{$taxAmount}</td>
- <td style="text-align: right;">{$totalAmount}</td>
- </tr>
- EOT;
- }
- $memberCode = Yii::t('app', 'memberCode');
- $memberName = Yii::t('app', 'memberName');
- $memberAddress = Yii::t('app', 'memberAddress');
- $memberPhone = Yii::t('app', 'memberPhone');
- $orderCode = Yii::t('app', 'orderCode');
- $orderDetail = Yii::t('app', 'orderDetail');
- $productCode = Yii::t('app', 'productCode');
- $productName = Yii::t('app', 'productName');
- $productPrice = Yii::t('app', 'productPrice');
- $quantity = Yii::t('app', 'qty');
- $taxRate = Yii::t('app', 'taxRate');
- $totalTax = Yii::t('app', 'totalTax');
- $totalAmount = Yii::t('app', 'totalAmount');
- $total = Yii::t('app', 'total');
- $signature = Yii::t('app', 'signature');
- $date = Yii::t('app', 'date');
- $createAt = Yii::t('app', 'createAt');
- // 订单基本信息
- $orderBase = <<<ORDER
- <table border="1" style="table-layout: fixed; padding: 10px 20px;" width="100%">
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$memberCode}</td>
- <td width="70%">{$userId}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$memberName}</td>
- <td width="70%">{$userName}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$memberAddress}</td>
- <td width="70%">{$address}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$memberPhone}</td>
- <td width="70%">{$mobile}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$orderCode}</td>
- <td width="70%">{$orderSn}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">{$createAt}</td>
- <td width="70%">{$orderAt}</td>
- </tr>
- <tr>
- <td class="bg" style="font-weight: bold; font-size: 14px; text-align: center;">{$orderDetail}</td>
- <td class="bg"></td>
- </tr>
- </table>
- ORDER;
- $l['a_meta_charset'] = 'UTF-8';
- $l['a_meta_dir'] = 'ltr';
- $l['a_meta_language'] = 'zh';
- $l['w_page'] = '页面';
- $orderAmount = sprintf('%.2f', $orderAmount);
- $totalTaxAmount = sprintf('%.2f', $totalTaxAmount);
- $context = <<<ORDER
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <title>{$orderDetail}</title>
- <style>
- table {
- border-collapse: collapse;
- }
- table td, table th {
- border: 1px solid #ccc;
- /*padding: 5px 5px;*/
- border-collapse: collapse;
- }
- /*td {*/
- /* padding: 120px;*/
- /*}*/
- .bg {
- background-color: #ccc;
- }
- </style>
- </head>
- <body>
- <div class="content">
- <p style="text-align: center; font-weight: bold; font-size: 22px;"><b>{$orderDetail}</b><br></p>
- <div>
- <div style="display: block; width: 100%;">
- {$orderBase}
-
- <table border="1" width="100%" style="padding: 10px 5px; text-align: center;">
- <tr>
- <th width="15%" style="font-size: 14px; font-weight: bold; text-align: center;">{$productCode}</th>
- <th width="20%" style="font-size: 14px; font-weight: bold; text-align: center;">{$productName}</th>
- <th width="15%" style="font-size: 14px; font-weight: bold; text-align: center;">{$productPrice}</th>
- <th width="10%" style="font-size: 14px; font-weight: bold; text-align: center;">{$quantity}</th>
- <th width="12%" style="font-size: 14px; font-weight: bold; text-align: center;">{$taxRate}</th>
- <th width="13%" style="font-size: 14px; font-weight: bold; text-align: center;">{$totalTax}</th>
- <th width="15%" style="font-size: 14px; font-weight: bold; text-align: center;">{$totalAmount}</th>
- </tr>
- {$orderDetails}
- <tr>
- <td colspan="3">{$total}</td>
- <td style="text-align: right;">{$orderNums}</td>
- <td></td>
- <td style="text-align: right;">{$totalTaxAmount}</td>
- <td style="text-align: right;">{$orderAmount}</td>
- </tr>
- </table>
- </div>
-
- <div style="width: 100%; margin-top: 50px; height: 30px;">
- <table width="100%" style="border: none; padding: 10px 20px; text-align: center;">
- <tr style="border: none;">
- <td width="70%" style="border: none;"></td>
- <td width="30%" style="font-weight: bold; text-align: left; font-size: 14px; border: none;">{$signature}:</td>
- </tr>
- <tr style="border: none;">
- <td width="70%" style="border: none;"></td>
- <td width="30%" style="font-weight: bold; text-align: left; font-size: 14px; border: none;">{$date}:</td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </body>
- </html>
- ORDER;
- require_once (\Yii::$app->vendorPath . '/tecnickcom/tcpdf/tcpdf.php');
- $pdf = new \TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
- // 设置打印模式
- $pdf->SetCreator(PDF_CREATOR);
- $pdf->SetAuthor('DaZe');
- $pdf->SetTitle($orderSn);
- $pdf->SetSubject('TCPDF Tutorial');
- $pdf->SetKeywords('TCPDF, PDF, example, test, guide');
- // 是否显示页眉
- $pdf->setPrintHeader(false);
- // 设置页眉字体
- $pdf->setHeaderFont(Array('dejavusans', '', '12'));
- // 页眉距离顶部的距离
- $pdf->SetHeaderMargin('5');
- // 是否显示页脚
- $pdf->setPrintFooter(false);
- // 设置默认等宽字体
- $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
- // 设置行高
- $pdf->setCellHeightRatio(1);
- // 设置左、上、右的间距
- $pdf->SetMargins('10', '10', '10');
- // 设置是否自动分页 距离底部多少距离时分页
- $pdf->SetAutoPageBreak(TRUE, '15');
- // 设置图像比例因子
- $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
- if (@file_exists(\Yii::$app->vendorPath . 'tecnickcom/tcpdf/examples/lang/eng.php')) {
- require_once(\Yii::$app->vendorPath . '/tecnickcom/tcpdf/examples/lang/eng.php');
- $pdf->setLanguageArray($l);
- }
- $pdf->setFontSubsetting(true);
- $pdf->AddPage();
- // 设置字体
- $pdf->SetFont('stsongstdlight', '', 10, '', true);
- $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
- // $image_file = \Yii::$app->basePath . '/../frontendEle/src/static/img/ngds-logo.jpg';
- // if (!file_exists($image_file)) {
- // $image_file = \Yii::$app->runtimePath . '/../common/uploads/ngds-logo.jpg';
- // }
- $image_file = \Yii::$app->runtimePath . '/../ngds-logo.jpg';
- $image = file_get_contents($image_file);
- $pdf->Image('@' . $image, 165, 5, 20, 10, 'JPG');
- $pdf->writeHTML($context);
- $pdf->Output($realFile, 'F');
- $this->_updateFirst($realFile, 1);
- }
- $this->complete();
- return true;
- }
- /**
- * 循环写入数据
- * @param $realFile
- * @param $fileNameUpdated
- * @param int $page
- * @param int $counter
- * @return array
- * @throws Exception
- */
- private function _loopWriteDataPDF($realFile, &$fileNameUpdated, $page = 0, $counter = 0){
- if(method_exists($this->_listModel, 'getList')){
- $list = $this->_listModel->getList(['condition'=>$this->params['condition'], 'params'=>isset($this->params['params']) ? $this->params['params'] : [], 'others'=>isset($this->params['others']) ? $this->params['others'] : [], 'page'=>$page, 'pageSize'=>$this->pageSize, 'userId'=>$this->userId]);
- } else {
- throw new Exception($this->listModelClass.'的getList方法不存在');
- }
- return $list['list'];
- }
- /**
- * 生成
- * @return bool
- * @throws Exception
- * @throws InvalidConfigException
- * @throws \yii\httpclient\Exception
- */
- public function generateBaOrderExcel() {
- $this->getParams();
- if (!$this->params) {
- throw new Exception('无法获取需要的参数');
- }
- $path = $this->getSaveBasePath() . __DS__ . $this->getSavePath();
- $path = __DS__ . $path;
- $realFile = $this->mkdir($path) . __DS__ . $this->getFileName();
- $this->completed = false;
- $this->getExportId();
- $this->getUserId();
- $this->_fp = fopen($realFile, 'w');
- @exec('chown -R www:www /'.$realFile);
- @exec('chmod -R 777 /'.$realFile);
- // 获取列表数据及表头
- $this->_listModel = new $this->listModelClass();
- $this->_listModel->isExport = true;
- if(method_exists($this->_listModel, 'getExportHeaders')){
- if(method_exists($this->_listModel, 'exportPrepare')) {//导出数据提前设置参数
- $this->_listModel->exportPrepare(['condition' => $this->params['condition'], 'params' => $this->params['params'], 'others' => $this->params['others'] ?? [], 'page' => 0, 'pageSize' => 100000, 'userId' => $this->userId]);
- }
- $headers = $this->_listModel->getExportHeaders($this->userId);
- fputcsv($this->_fp, $headers);
- unset($headers);
- $this->_updateFirst($realFile, 1);
- } else {
- throw new Exception($this->listModelClass.'的getExportHeaders方法不存在');
- }
- $this->_loopWriteDataBaOrder();
- $this->complete();
- return true;
- }
- /**
- * 循环写入数据
- */
- private function _loopWriteDataBaOrder()
- {
- $orderQuery = BaOrder::find()
- ->alias('O')
- ->where($this->params['condition'], $this->params['params'])
- ->select('O.*,U.REAL_NAME,U.DEC_ID,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV')
- ->join('LEFT JOIN', BaUser::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', BaOrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- // 订单中间表只查询待支付和支付失败的订单
- $this->params['params'][':NOT_PAID'] = \Yii::$app->params['orderStatus']['notPaid']['value']; // 待支付
- $this->params['params'][':FAIL_PAID'] = \Yii::$app->params['orderStatus']['failPaid']['value']; // 支付失败
- $orderStandardQuery = BaApproachOrder::find()
- ->alias('O')
- ->where($this->params['condition'] . ' AND (O.STATUS = :NOT_PAID OR O.STATUS = :FAIL_PAID)', $this->params['params'])
- ->select('O.*,U.REAL_NAME,U.DEC_ID,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV')
- ->join('LEFT JOIN', BaUser::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', BaApproachOrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- $queryAll = $orderQuery->union($orderStandardQuery, true);
- $query = (new Query())->from(['Q' => $queryAll])->select('Q.*')->distinct()->orderBy(['CREATED_AT' => SORT_DESC]);
- $lists = $query->all();
- if(!empty($lists)){
- $regionConfig = Cache::getRegionConfig();
- foreach($lists as $columnData) {
- $CREATE_USER_ID = Info::getBaUserIdByUserName($columnData['CREATE_USER']);
- $createUserName = Info::getBaUserRealNameByUserId($CREATE_USER_ID);
- $decUserName = Info::getBaUserNameByUserId($columnData['DEC_ID']);
- $columnAccept = [
- 'USER_NAME' => $columnData['USER_NAME'],
- 'DEC_USER_NAME' => $decUserName,
- 'CREATE_USER' => $columnData['CREATE_USER'],
- 'CREATE_USER_NAME' => $createUserName,
- 'SN' => $columnData['SN'],
- 'STATUS' => Tool::paramConvert(\Yii::$app->params['orderStatus'])[$columnData['STATUS']]['label'] ?? '',
- 'SKU_CODE' => $columnData['SKU_CODE'],
- 'GOODS_TITLE' => $columnData['GOODS_TITLE'],
- 'BUY_NUMS' => $columnData['BUY_NUMS'],
- 'CONSIGNEE' => $columnData['CONSIGNEE'],
- 'MOBILE' => "\t{$columnData['MOBILE']}",
- 'TEL' => "\t{$columnData['TEL']}",
- 'PROVINCE' => $regionConfig[$columnData['PROVINCE']]['REGION_NAME'] ?? '',
- 'CITY' => $regionConfig[$columnData['CITY']]['REGION_NAME'] ?? '',
- 'COUNTY' => $regionConfig[$columnData['COUNTY']]['REGION_NAME'] ?? '',
- 'ADDRESS' => $columnData['ADDRESS'],
- 'PERIOD_NUM' => $columnData['PERIOD_NUM'],
- 'ORDER_TYPE' => ($columnData['ORDER_TYPE'] == 'ZC') ? 'Welcome pack' : (in_array($columnData['PAY_TYPE'], ['cash', 'pay_stack']) ? 'Reselling': 'Points'),
- 'CREATED_AT' => Date('Y-m-d H:i:s', $columnData['CREATED_AT']),
- 'PAY_TYPE' => ShopGoods::payTypes()[$columnData['PAY_TYPE']]['name'] ?? ShopGoods::payTypes()['cash']['name'],
- 'PAY_AT' => $columnData['PAY_AT'] > 0 ? Date('Y-m-d H:i:s', $columnData['PAY_AT']) : '',
- 'DELIVERY_AT' => $columnData['DELIVERY_AT'] > 0 ? Date('Y-m-d H:i:s', $columnData['DELIVERY_AT']) : '',
- 'REAL_PRICE' => $columnData['REAL_PRICE'] ?? 0,
- 'REAL_PV' => $columnData['REAL_PV'] ?? 0,
- 'PAY_FREIGHT' => $columnData['PAY_FREIGHT'] ?? 0,
- 'TAX_RATE' => $columnData['TAX_RATE'],
- 'TAX_AMOUNT' => Tool::calculateTax($columnData['REAL_PRICE'], $columnData['TAX_RATE'], $columnData['BUY_NUMS']),
- 'EXPRESS_COMPANY' => $columnData['EXPRESS_COMPANY'],
- 'ORDER_TRACK_NO' => $columnData['ORDER_TRACK_NO'],
- 'EXPRESS_TYPE' => $columnData['EXPRESS_TYPE'] == 0 ? 'mailing ':' auto pick',
- 'FRONT_REMARK' => $columnData['FRONT_REMARK'],
- 'DELIVERY_STATUS_NAME' => Tool::paramConvert(\Yii::$app->params['deliveryStatus'])[$columnData['DELIVERY_STATUS']]['label'] ?? '',
- ];
-
- fputcsv($this->_fp, Tool::arrTextConvert($columnAccept));
- unset($percent, $columnData, $columnAccept);
- }
- unset($list);
- }
- unset($list);
- return 'finish';
- }
- /**
- * 生成
- * @return bool
- * @throws Exception
- * @throws InvalidConfigException
- * @throws \yii\httpclient\Exception
- */
- public function generateBaOrderPDF()
- {
- $this->getParams();
- if (!$this->params) {
- throw new Exception('无法获取需要的参数');
- }
- $path = __DS__ . $this->getSaveBasePath() . __DS__ . $this->getSavePath();
- $realFile = $path . __DS__ . $this->getFileName('.pdf');
- $this->completed = false;
- $this->getExportId();
- $this->getUserId();
- $fileNameUpdated = false;
- // 获取列表数据及表头
- $this->_listModel = new $this->listModelClass();
- $this->_listModel->isExport = true;
- // 查询订单数据
- $orderQuery = BaOrder::find()
- ->alias('O')
- ->where($this->params['condition'], $this->params['params'])
- ->select('O.*,U.REAL_NAME,U.DEC_ID,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV')
- ->join('LEFT JOIN', BaUser::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', BaOrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- // 订单中间表只查询待支付和支付失败的订单
- $this->params['params'][':NOT_PAID'] = \Yii::$app->params['orderStatus']['notPaid']['value']; // 待支付
- $this->params['params'][':FAIL_PAID'] = \Yii::$app->params['orderStatus']['failPaid']['value']; // 支付失败
- $orderStandardQuery = BaApproachOrder::find()
- ->alias('O')
- ->where($this->params['condition'] . ' AND (O.STATUS = :NOT_PAID OR O.STATUS = :FAIL_PAID)', $this->params['params'])
- ->select('O.*,U.REAL_NAME,U.DEC_ID,SG.CATEGORY_TYPE,OG.REAL_PRICE,OG.TAX_RATE,OG.BUY_NUMS,OG.SKU_CODE,OG.GOODS_TITLE,OG.REAL_PV')
- ->join('LEFT JOIN', BaUser::tableName() . ' AS U', 'U.ID=O.USER_ID')
- ->join('LEFT JOIN', BaApproachOrderGoods::tableName() . ' AS OG', 'OG.ORDER_SN=O.SN')
- ->join('LEFT JOIN', ShopGoods::tableName() . ' AS SG', 'SG.ID=OG.GOODS_ID')
- ->orderBy('O.CREATED_AT DESC');
- $queryAll = $orderQuery->union($orderStandardQuery, true);
- $query = (new Query())->from(['Q' => $queryAll])->select('Q.*')->distinct()->orderBy(['CREATED_AT' => SORT_DESC]);
- $oderList = $query->all();
- if ($oderList) {
- $userId = '';
- $userName = '';
- $address = '';
- $mobile = '';
- $orderAt = '';
- $orderDetails = '';
- $orderSn = '';
- $orderAmount = 0; // 合计总额
- $orderNums = 0; // 合计总数
- $totalTaxAmount = 0; // 合计税额
- $totalAmount = 0;
- foreach ($oderList as $key => $value) {
- $provinceName = $value['PROVINCE'] ? Region::getCnName($value['PROVINCE']) : '';
- $cityName = $value['CITY'] ? Region::getCnName($value['CITY']) : '';
- $countyName = $value['COUNTY'] ? Region::getCnName($value['COUNTY']) : '';
- $userId = $value['USER_NAME'];
- $userName = $value['REAL_NAME'];
- $address = $provinceName . $cityName . $countyName . $value['ADDRESS'];
- $mobile = $value['MOBILE'];
- $orderAt = Date::convert($value['CREATED_AT'],'Y-m-d H:i:s');
- $orderSn = $value['SN'];
- // 总价
- $totalAmount = $value['BUY_NUMS'] * $value['REAL_PRICE'];
- $orderAmount += $totalAmount;
- $orderNums += $value['BUY_NUMS'];
- // 税额
- $taxAmount = Tool::calculateTax($value['REAL_PRICE'], $value['TAX_RATE'], $value['BUY_NUMS']);
- $totalTaxAmount += $taxAmount;
- $taxAmount = Tool::formatAmount($taxAmount);
- $totalAmount = Tool::formatAmount($totalAmount);
- // 订单详情
- $orderDetails .= <<<EOT
- <tr>
- <td>{$value['SKU_CODE']}</td>
- <td>{$value['GOODS_TITLE']}</td>
- <td style="text-align: right;">{$value['REAL_PRICE']}</td>
- <td>{$value['BUY_NUMS']}</td>
- <td style="text-align: right;">{$value['TAX_RATE']}</td>
- <td style="text-align: right;">{$taxAmount}</td>
- <td style="text-align: right;">{$totalAmount}</td>
- </tr>
- EOT;
- }
- // 订单基本信息
- $orderBase = <<<ORDER
- <table border="1" style="table-layout: fixed; padding: 10px 20px;" width="100%">
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">Member Code</td>
- <td width="70%">{$userId}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">Member Name</td>
- <td width="70%">{$userName}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">Member Address</td>
- <td width="70%">{$address}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">Member Phone</td>
- <td width="70%">{$mobile}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">Order Code</td>
- <td width="70%">{$orderSn}</td>
- </tr>
- <tr>
- <td width="30%" style="font-weight: bold; text-align: center; font-size: 14px;">Creation Time</td>
- <td width="70%">{$orderAt}</td>
- </tr>
- <tr>
- <td class="bg" style="font-weight: bold; font-size: 14px; text-align: center;">Order Detail</td>
- <td class="bg"></td>
- </tr>
- </table>
- ORDER;
- $l['a_meta_charset'] = 'UTF-8';
- $l['a_meta_dir'] = 'ltr';
- $l['a_meta_language'] = 'zh';
- $l['w_page'] = '页面';
- $orderAmount = Tool::formatAmount($orderAmount);
- $totalTaxAmount = Tool::formatAmount($totalTaxAmount);
- $context = <<<ORDER
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <title>Order detail</title>
- <style>
- table {
- border-collapse: collapse;
- }
- table td, table th {
- border: 1px solid #ccc;
- padding: 5px 5px;
- border-collapse: collapse;
- }
- /*td {*/
- /* padding: 120px;*/
- /*}*/
- .bg {
- background-color: #ccc;
- }
- </style>
- </head>
- <body>
- <div class="content">
- <p style="text-align: center; font-weight: bold; font-size: 22px;"><b>Order detail</b><br></p>
- <div>
- <div style="display: block; width: 100%;">
- {$orderBase}
-
- <table border="1" width="100%" style="padding: 10px 5px; text-align: center;">
- <tr>
- <th width="15%" style="font-size: 14px; font-weight: bold; text-align: center;">Product Code</th>
- <th width="25%" style="font-size: 14px; font-weight: bold; text-align: center;">Product Name</th>
- <th width="15%" style="font-size: 14px; font-weight: bold; text-align: center;">Product Price</th>
- <th width="10%" style="font-size: 14px; font-weight: bold; text-align: center;">Qty</th>
- <th width="10%" style="font-size: 14px; font-weight: bold; text-align: center;">Tax Rate</th>
- <th width="10%" style="font-size: 14px; font-weight: bold; text-align: center;">Tax</th>
- <th width="15%" style="font-size: 14px; font-weight: bold; text-align: center;">Total Amount</th>
- </tr>
- {$orderDetails}
- <tr>
- <td colspan="3">Total</td>
- <td>{$orderNums}</td>
- <td></td>
- <td style="text-align: right;">{$totalTaxAmount}</td>
- <td style="text-align: right;">{$orderAmount}</td>
- </tr>
- </table>
- </div>
-
- <div style="width: 100%; margin-top: 50px; height: 30px;">
- <table width="100%" style="border: none; padding: 10px 20px; text-align: center;">
- <tr style="border: none;">
- <td width="70%" style="border: none;"></td>
- <td width="30%" style="font-weight: bold; text-align: left; font-size: 14px; border: none;">Signature:</td>
- </tr>
- <tr style="border: none;">
- <td width="70%" style="border: none;"></td>
- <td width="30%" style="font-weight: bold; text-align: left; font-size: 14px; border: none;">Date:</td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </body>
- </html>
- ORDER;
- require_once (\Yii::$app->vendorPath . '/tecnickcom/tcpdf/tcpdf.php');
- $pdf = new \TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
- // 设置打印模式
- $pdf->SetCreator(PDF_CREATOR);
- $pdf->SetAuthor('DaZe');
- $pdf->SetTitle($orderSn);
- $pdf->SetSubject('TCPDF Tutorial');
- $pdf->SetKeywords('TCPDF, PDF, example, test, guide');
- // 是否显示页眉
- $pdf->setPrintHeader(false);
- // 设置页眉字体
- $pdf->setHeaderFont(Array('dejavusans', '', '12'));
- // 页眉距离顶部的距离
- $pdf->SetHeaderMargin('5');
- // 是否显示页脚
- $pdf->setPrintFooter(false);
- // 设置默认等宽字体
- $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
- // 设置行高
- $pdf->setCellHeightRatio(1);
- // 设置左、上、右的间距
- $pdf->SetMargins('10', '0', '10');
- // 设置是否自动分页 距离底部多少距离时分页
- $pdf->SetAutoPageBreak(TRUE, '15');
- // 设置图像比例因子
- $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
- if (@file_exists(\Yii::$app->vendorPath . 'tecnickcom/tcpdf/examples/lang/eng.php')) {
- require_once(\Yii::$app->vendorPath . '/tecnickcom/tcpdf/examples/lang/eng.php');
- $pdf->setLanguageArray($l);
- }
- $pdf->setFontSubsetting(true);
- $pdf->AddPage();
- // 设置字体
- $pdf->SetFont('stsongstdlight', '', 10, '', true);
- // $image_file = \Yii::$app->basePath . '/../frontendEle/src/static/img/ngds-logo.jpg';
- // if (!file_exists($image_file)) {
- // $image_file = \Yii::$app->runtimePath . '/../common/uploads/ngds-logo.jpg';
- // }
- $image_file = \Yii::$app->runtimePath . '/../ngds-logo.jpg';
- $image = file_get_contents($image_file);
- $pdf->Image('@' . $image, 15, 12, 20, 7, 'JPG');
- $pdf->writeHTML($context);
- $pdf->Output($realFile, 'F');
- $this->_updateFirst($realFile, 1);
- }
- $this->complete();
- return true;
- }
- }
|