| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218 |
- <?php
- namespace ghs\controllers;
- use biz\item\classes\PtItemClass;
- use biz\item\classes\UnitClass;
- use biz\shop\classes\ShopExtClass;
- use bizGhs\book\classes\BookItemClass;
- use bizGhs\custom\classes\CustomClass;
- use bizGhs\item\classes\ItemClass;
- use bizGhs\shop\classes\ShopAdminClass;
- use common\components\arrayUtil;
- use common\components\dict;
- use common\components\imgUtil;
- use common\components\miniUtil;
- use common\components\noticeUtil;
- use common\components\stringUtil;
- use common\components\util;
- use bizGhs\product\classes\ProductClass;
- use bizHd\wx\classes\WxOpenClass;
- use Yii;
- class ItemController extends BaseController
- {
- //花材已购客户列表 ssh 20250710
- public function actionHasLimitBuyCustomList()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? '';
- $item = ItemClass::getById($id, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- $customList = ProductClass::getHasLimitBuyList($item);
- util::success(['customList' => $customList]);
- }
- //清空单个客户的已购 ssh 20250710
- public function actionClearOneLimitBuy()
- {
- $get = Yii::$app->request->get();
- $productId = $get['productId'] ?? '';
- $customId = $get['customId'] ?? 0;
- $item = ItemClass::getById($productId, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- $custom = CustomClass::getById($customId, true);
- if (empty($custom)) {
- util::fail('没有客户');
- }
- if ($custom->ownMainId != $this->mainId) {
- util::fail('不是你的客户');
- }
- ProductClass::baseClearLimitBuy($productId, $customId);
- util::complete('清除成功');
- }
- //取消花材全部客户的已限数,重新开始计算
- public function actionClearLimitBuy()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? '';
- $item = ItemClass::getById($id, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- ProductClass::cancelLimitBuy($id);
- util::complete('清除成功');
- }
- public function actionModifyWeight()
- {
- $shop = $this->shop;
- if ($shop->default == 0) {
- util::fail('请在总店(首店)修改');
- }
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? '';
- $weight = $get['weight'] ?? 1;
- if ($weight <= 0) {
- util::fail('重量不能小于0');
- }
- $item = ItemClass::getById($id, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- $adminId = $this->adminId;
- $ptItemId = $item->itemId ?? 0;
- $respond = ShopAdminClass::changeWeightRight($adminId, $ptItemId);
- $hasRightChange = $respond['hasRightChange'];
- if ($hasRightChange == 0) {
- util::fail('不能修改');
- }
- $ptItem = PtItemClass::getById($ptItemId, true);
- if (empty($ptItem)) {
- util::fail('花材信息缺失');
- }
- $connection = Yii::$app->db;
- $transaction = $connection->beginTransaction();
- try {
- $ptItem->weight = $weight;
- $ptItem->save();
- ItemClass::updateByCondition(['itemId' => $ptItemId], ['weight' => $weight]);
- $transaction->commit();
- util::complete('修改成功');
- } catch (\Exception $e) {
- $transaction->rollBack();
- Yii::info("修改失败原因:" . $e->getMessage());
- util::fail('修改失败');
- }
- }
- public function actionModifyRatio()
- {
- $shop = $this->shop;
- if ($shop->default == 0) {
- util::fail('请在总店(首店)修改');
- }
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? '';
- $ratio = $get['ratio'] ?? 20;
- if ($ratio < 1) {
- util::fail('单位比不能小于1');
- }
- $item = ItemClass::getById($id, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- $adminId = $this->adminId;
- $ptItemId = $item->itemId ?? 0;
- $respond = ShopAdminClass::changeWeightRight($adminId, $ptItemId);
- $hasRightChange = $respond['hasRightChange'];
- if ($hasRightChange == 0) {
- util::fail('不能修改');
- }
- $ptItem = PtItemClass::getById($ptItemId, true);
- if (empty($ptItem)) {
- util::fail('花材信息缺失');
- }
- $connection = Yii::$app->db;
- $transaction = $connection->beginTransaction();
- try {
- $ptItem->ratio = $ratio;
- $ptItem->save();
- ItemClass::updateByCondition(['itemId' => $ptItemId], ['ratio' => $ratio]);
- $transaction->commit();
- util::complete('修改成功');
- } catch (\Exception $e) {
- $transaction->rollBack();
- Yii::info("修改失败原因:" . $e->getMessage());
- util::fail('修改失败');
- }
- }
- public function actionModifyUnit()
- {
- $shop = $this->shop;
- if ($shop->default == 0) {
- util::fail('请在总店(首店)修改');
- }
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? '';
- $unitId = $get['unitId'] ?? 1;
- $unit = UnitClass::getById($unitId, true);
- $type = $get['type'] ?? 'big';
- if (empty($unit)) {
- util::fail('没有找到单位');
- }
- $unitName = $unit->name;
- $item = ItemClass::getById($id, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- $adminId = $this->adminId;
- $ptItemId = $item->itemId ?? 0;
- $respond = ShopAdminClass::changeWeightRight($adminId, $ptItemId);
- $hasRightChange = $respond['hasRightChange'];
- if ($hasRightChange == 0) {
- util::fail('不能修改');
- }
- $ptItem = PtItemClass::getById($ptItemId, true);
- if (empty($ptItem)) {
- util::fail('花材信息缺失');
- }
- $connection = Yii::$app->db;
- $transaction = $connection->beginTransaction();
- try {
- if ($type == 'big') {
- $ptItem->bigUnit = $unitName;
- $ptItem->bigUnitId = $unitId;
- $ptItem->save();
- ItemClass::updateByCondition(['itemId' => $ptItemId], ['bigUnit' => $unitName, 'bigUnitId' => $unitId]);
- } else {
- $ptItem->smallUnit = $unitName;
- $ptItem->smallUnitId = $unitId;
- $ptItem->save();
- ItemClass::updateByCondition(['itemId' => $ptItemId], ['smallUnit' => $unitName, 'smallUnitId' => $unitId]);
- }
- $transaction->commit();
- util::complete('修改成功');
- } catch (\Exception $e) {
- $transaction->rollBack();
- Yii::info("修改失败原因:" . $e->getMessage());
- util::fail('修改失败');
- }
- }
- //挪到处理区 ssh 20250418
- public function actionMoveToLosing()
- {
- //避免重复提交
- util::checkRepeatCommit($this->adminId, 4);
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? '';
- $num = $get['num'] ?? 0;
- $item = ItemClass::getById($id, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- if ($num <= 0) {
- util::fail('请输入数量');
- }
- $remark = '挪到处理区';
- $staff = $this->shopAdmin;
- $staffName = $staff->name ?? '';
- $staffId = $staff->id;
- $adminId = $this->adminId;
- $params = [
- 'staffId' => $staffId,
- 'staffName' => $staffName,
- 'adminId' => $adminId,
- 'remark' => $remark,
- ];
- $connection = Yii::$app->db;
- $transaction = $connection->beginTransaction();
- try {
- $shop = $this->shop;
- ItemClass::moveLose($item, $num, $shop, $params);
- $transaction->commit();
- util::complete('挪动成功');
- } catch (\Exception $e) {
- $transaction->rollBack();
- Yii::info("挪动失败原因:" . $e->getMessage());
- util::fail('挪动失败');
- }
- }
- //设为处理区用的花材 ssh 20250418
- public function actionSetLosing()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? '';
- $item = ItemClass::getById($id, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- $shopAdmin = $this->shopAdmin;
- if ($shopAdmin->founder == 1) {
- util::fail('请用超管手机操作');
- }
- $shopId = $this->shopId;
- $ext = ShopExtClass::getByCondition(['shopId' => $shopId], true);
- if (empty($ext)) {
- util::fail('设置失败,没有找到门店信息');
- }
- $ext->losingItem = $id;
- $ext->save();
- util::complete('设置成功');
- }
- //增加和减少半扎 ssh 20250417
- public function actionChangeHalf()
- {
- util::fail('此功能已停用');
- $post = Yii::$app->request->post();
- $productId = $post['productId'] ?? '';
- $add = $post['add'] ?? 0;
- $remark = $post['remark'] ?? '';
- $product = ProductClass::getLockById($productId);
- if (empty($product)) {
- util::fail('没有找到花材');
- }
- if ($product->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- if ($product->ratioType == 1) {
- util::fail('若干扎的花材不能减半份');
- }
- //避免重复提交
- util::checkRepeatCommit($this->adminId, 4);
- $connection = Yii::$app->db;
- $transaction = $connection->beginTransaction();
- try {
- $shop = $this->shop;
- $staff = $this->shopAdmin;
- $staffName = $staff->name ?? '';
- $staffId = $staff->id;
- $adminId = $this->adminId;
- $params = [
- 'staffId' => $staffId,
- 'staffName' => $staffName,
- 'adminId' => $adminId,
- 'remark' => $remark,
- ];
- ItemClass::modifyHalf($shop, $product, $params, $add);
- $product = ProductClass::getLockById($productId);
- $stock = $product->stock;
- $stock = floatval($stock);
- $transaction->commit();
- util::success(['stock' => $stock]);
- } catch (\Exception $e) {
- $transaction->rollBack();
- Yii::info("加减半份失败原因:" . $e->getMessage());
- util::fail('加减半份失败');
- }
- }
- //修改一个花材的采购人 ssh 20240719
- public function actionModifyCgStaff()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? 0;
- $staffId = $get['staffId'] ?? 0;
- $item = ItemClass::getById($id, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- $staff = ShopAdminClass::getById($staffId, true);
- if (empty($staff) || $staff->mainId != $this->mainId) {
- util::fail('不是你的员工');
- }
- $staffName = $staff->name ?? '';
- $item->cgStaffId = $staffId;
- $item->cgStaffName = $staffName;
- $item->save();
- $shop = $this->shop;
- $bookSn = $shop->bookSn ?? 0;
- if (!empty($bookSn)) {
- BookItemClass::updateByCondition(['bookSn' => $bookSn, 'itemId' => $id], ['cgStaffId' => $staffId, 'cgStaffName' => $staffName]);
- }
- util::complete('修改成功');
- }
- //获取花材最新信息,库存 ssh 20240318
- public function actionGetNewInfo()
- {
- $post = Yii::$app->request->post();
- $str = $post['data'] ?? '';
- if (empty($str)) {
- util::fail('请传花材信息');
- }
- $arr = json_decode($str, true);
- if (empty($arr)) {
- util::fail('请传花材信息哈');
- }
- $ids = array_column($arr, 'productId');
- $list = ItemClass::getAllByCondition(['id' => ['in', $ids]], null, 'id,name,stock,mainId', 'id', true);
- if (!empty($list)) {
- foreach ($list as $item) {
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- }
- }
- util::success(['list' => $list]);
- }
- //列出所有花材 ssh 20240222
- public function actionGetItemList()
- {
- $get = Yii::$app->request->get();
- $search = $get['search'] ?? '';
- $requestType = $get['requestType'] ?? 'kd';
- $classId = $get['classId'] ?? 0;
- $lookStock = $get['lookStock'] ?? 0;
- $where['mainId'] = $this->mainId;
- if ($requestType == 'kd') {
- $where['delStatus'] = 0;
- $where['status'] = 1;
- } elseif ($requestType == 'itemList') {
- $where['delStatus'] = 0;
- if ($lookStock == 1) {
- $where['stock>'] = 0;
- }
- if ($lookStock == 2) {
- $where['stock'] = 0;
- }
- unset($where['status']);
- } elseif ($requestType == 'changePrice') {
- $where['delStatus'] = 0;
- $where['stock>'] = 0;
- } elseif ($requestType == 'hasStockList') {
- $where['delStatus'] = 0;
- $where['stock>'] = 0;
- } elseif ($requestType == 'book') {
- $where['delStatus'] = 0;
- unset($where['status']);
- } elseif ($requestType == 'outList') {
- $where['delStatus'] = 0;
- $where['status'] = 2;
- $where['removeStatus'] = 0;
- } elseif ($requestType == 'stopList') {
- $where['delStatus'] = 1;
- unset($where['status']);
- $where['removeStatus'] = 0;
- } elseif ($requestType == 'removeList') {
- $where['delStatus'] = 1;
- unset($where['status']);
- $where['removeStatus'] = 1;
- } elseif ($requestType == 'cg') {
- $where['delStatus'] = 0;
- unset($where['status']);
- } elseif ($requestType == 'changeStock') {
- $where['delStatus'] = 0;
- unset($where['status']);
- } elseif ($requestType == 'check') {
- $where['delStatus'] = 0;
- unset($where['status']);
- } elseif ($requestType == 'stockOut') {
- $where['delStatus'] = 0;
- $where['status'] = 1;
- } elseif ($requestType == 'break') {
- $where['delStatus'] = 0;
- $where['status'] = 1;
- } elseif ($requestType == 'part') {
- $where['delStatus'] = 0;
- $where['status'] = 1;
- } else {
- util::fail('没有定义的请求方式');
- }
- if (!empty($search)) {
- if (stringUtil::isLetter($search)) {
- $search = strtolower($search);
- $where['py'] = ['like', $search];
- } else {
- $where['name'] = ['like', $search];
- }
- } else {
- if (!empty($classId)) {
- if ($classId == -1) {
- $where['discountPrice>'] = 0;
- } elseif ($classId == -2) {
- $where['reachNum>'] = 0;
- } elseif ($classId == -3) {
- $where['presell'] = 1;
- } else {
- $where['classId'] = $classId;
- }
- }
- }
- $customId = $get['customId'] ?? 0;
- $custom = CustomClass::getById($customId, true);
- if (!empty($custom)) {
- if ($custom->ownMainId != $this->mainId) {
- util::fail('不是你的客户');
- }
- }
- $level = $custom->level ?? 1;
- $field = '*';
- //只查我负责的花材
- $globalCgMyCharge = $get['globalCgMyCharge'] ?? 0;
- $needCgList = [];
- $shop = $this->shop;
- $bookSn = $shop->bookSn ?? 0;
- $staff = $this->shopAdmin;
- $staffId = $staff->id ?? 0;
- if (!empty($bookSn)) {
- $biList = BookItemClass::getAllByCondition(['bookSn' => $bookSn, 'cgStaffId' => $staffId], null, '*', null, true);
- if (!empty($biList)) {
- $myIds = [];
- foreach ($biList as $biInfo) {
- $biProductId = $biInfo->itemId ?? 0;
- if ($biInfo->needCgNum > 0) {
- $myIds[] = $biProductId;
- $needCgList[$biProductId] = $biInfo->needCgNum;
- }
- }
- if ($globalCgMyCharge == 1) {
- if (!empty($myIds)) {
- $where['id'] = ['in', $myIds];
- } else {
- $where['id'] = ['in', [0]];
- }
- }
- } else {
- if ($globalCgMyCharge == 1) {
- $where['id'] = ['in', [0]];
- }
- }
- }
- $result = ProductClass::getList($field, $where, ['inTurn' => SORT_DESC, 'actualSold' => SORT_DESC]);
- $list = $result['list'] ?? [];
- if ($requestType == 'hasStockList') {
- util::fail('无效方式');
- } elseif ($requestType == 'changePrice') {
- $list = ProductClass::changePriceGroup($list, $level);
- } elseif ($requestType == 'changeStock') {
- $list = ProductClass::changeStockGroup($list, $level);
- } elseif ($requestType == 'kd') {
- $list = ProductClass::kdItemGroup($list, $level);
- } elseif ($requestType == 'book') {
- $list = ProductClass::bookItemGroup($list, $level);
- } elseif ($requestType == 'itemList') {
- $list = ProductClass::itemListGroup($list, $level);
- } elseif ($requestType == 'outList') {
- $list = ProductClass::simpleGroup($list, $level);
- } elseif ($requestType == 'stopList') {
- $list = ProductClass::simpleGroup($list, $level);
- } elseif ($requestType == 'removeList') {
- $list = ProductClass::simpleGroup($list, $level);
- } elseif ($requestType == 'check') {
- $list = ProductClass::checkItemGroup($list, $level);
- } elseif ($requestType == 'break') {
- $list = ProductClass::breakItemGroup($list, $level);
- } elseif ($requestType == 'part') {
- $list = ProductClass::partItemGroup($list, $level);
- } elseif ($requestType == 'stockOut') {
- $list = ProductClass::stockOutGroup($list, $level);
- } elseif ($requestType == 'cg') {
- $list = ProductClass::cgItemGroup($list, $level);
- } elseif ($requestType == 'warning') {
- util::fail('无效方式');
- // $itemInfoData = Product::find()->where("mainId={$this->mainId}")
- // ->andWhere('`stock`+`onStock`<`stockWarning`')
- // ->andWhere("delStatus=0")
- // ->select($field)->asArray()->all();
- // $itemInfoData = ProductClass::warningGroup($itemInfoData, $level);
- } else {
- util::fail('没有数据');
- }
- if (!empty($needCgList)) {
- //采购人采自己花材需要知道要采多少
- if (!empty($list)) {
- foreach ($list as $key => $val) {
- $productId = $val['id'] ?? 0;
- if (isset($needCgList[$productId])) {
- $needCgNum = $needCgList[$productId];
- $list[$key]['needCgNum'] = $needCgNum;
- }
- }
- }
- }
- if (!empty($list) && $classId == -1) {
- //限购的排在最前面,多处同步修改limit_ahead
- $list = arrayUtil::arraySort($list, 'limitBuy');
- }
- $result['list'] = $list;
- util::success($result);
- }
- //花材申请平台认证 ssh 20231125
- public function actionApplyAuth()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? 0;
- $info = ItemClass::getById($id, true);
- if (empty($info)) {
- util::fail('没有找到花材');
- }
- if ($info->mainId != $this->mainId) {
- util::fail('不是你的花材哦');
- }
- $shop = $this->shop;
- $sjName = $shop->merchantName ?? '';
- $shopName = $shop->shopName ?? '';
- $name = $shopName == '首店' ? $sjName : $sjName . ' ' . $shopName;
- $ptItemId = $info->itemId ?? 0;
- $ptItem = PtItemClass::getById($ptItemId, true);
- if (empty($ptItem)) {
- util::fail('没有找到平台花材');
- }
- $ptItemName = $ptItem->name ?? '';
- noticeUtil::push($name . " 申请将【{$ptItemName}/{$ptItemId}】进行认证", '15280215347');
- util::complete();
- }
- //简单花材的列表
- public function actionSimpleList()
- {
- $get = Yii::$app->request->get();
- $name = $get['name'] ?? '';
- $num = $get['num'] ?? 0;
- $where = ['mainId' => $this->mainId, 'delStatus' => 0];
- if (!empty($name)) {
- if (stringUtil::isLetter($name)) {
- $where['py'] = ['like', $name];
- } else {
- $where['name'] = ['like', $name];
- }
- }
- $respond = ItemClass::getSimpleList($where, $num);
- util::success($respond);
- }
- //可借库存的花材列表 ssh 20240720
- public function actionGetLoanList()
- {
- $get = Yii::$app->request->get();
- $name = $get['name'] ?? '';
- $where = ['mainId' => $this->mainId, 'delStatus' => 0];
- if (!empty($name)) {
- if (stringUtil::isLetter($name)) {
- $where['py'] = ['like', $name];
- } else {
- $where['name'] = ['like', $name];
- }
- }
- $shop = $this->shop;
- $respond = ItemClass::getLoanList($where, $shop);
- util::success($respond);
- }
- public function actionChangeFrontHide()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? 0;
- $status = $get['status'] ?? '';
- if (is_numeric($status) == false) {
- util::fail('请选择方式');
- }
- $info = ItemClass::getById($id, true);
- if (empty($info)) {
- util::fail('没有找到花材');
- }
- if ($info->mainId != $this->mainId) {
- util::fail('无法操作');
- }
- $info->frontHide = $status;
- $info->save();
- util::complete();
- }
- //检测是否要刷新
- public function actionCheckRefresh()
- {
- $mainId = $this->mainId;
- $staffId = $this->shopAdminId;
- $respond = Yii::$app->redis->executeCommand('GET', ['ghs_cashier_' . $mainId . '_' . $staffId . '_may_refresh']);
- if ($respond == 'yes') {
- util::success(['remind' => 1]);
- }
- util::complete();
- }
- //批量恢复花材 ssh 20230206
- public function actionBatchRecover()
- {
- $post = Yii::$app->request->post();
- $string = $post['ids'] ?? '';
- $ids = json_decode($string, true);
- $ids = array_unique(array_filter($ids));
- if (empty($ids)) {
- util::fail('请选择花材6');
- }
- $infoList = ItemClass::getAllByCondition(['id' => ['in', $ids]], null, 'id,name,mainId,status,delStatus,removeStatus', null, true);
- if (empty($infoList)) {
- util::fail('请选择花材哦8');
- }
- foreach ($infoList as $info) {
- if ($info->mainId != $this->mainId) {
- util::fail('请选择自己的花材');
- }
- $info->removeStatus = 0;
- $info->save();
- }
- util::complete('操作成功');
- }
- //批量删除花材 ssh 202302026
- public function actionBatchRemove()
- {
- $post = Yii::$app->request->post();
- $string = $post['ids'] ?? '';
- $ids = json_decode($string, true);
- $ids = array_unique(array_filter($ids));
- if (empty($ids)) {
- util::fail('请选择花材7');
- }
- $infoList = ItemClass::getAllByCondition(['id' => ['in', $ids]], null, 'id,name,mainId,status,delStatus,removeStatus', null, true);
- if (empty($infoList)) {
- util::fail('请选择花材哦10');
- }
- foreach ($infoList as $info) {
- if ($info->mainId != $this->mainId) {
- util::fail('请选择自己的花材');
- }
- $name = $info->name ?? '';
- if ($info->delStatus != 1) {
- util::fail($name . ' 停用了才能删除');
- }
- $info->removeStatus = 1;
- $info->save();
- }
- util::complete('操作成功');
- }
- //批量启用花材 ssh 20230206
- public function actionBatchEnable()
- {
- $post = Yii::$app->request->post();
- $string = $post['ids'] ?? '';
- $ids = json_decode($string, true);
- $ids = array_unique(array_filter($ids));
- if (empty($ids)) {
- util::fail('请选择花材11');
- }
- $infoList = ItemClass::getAllByCondition(['id' => ['in', $ids]], null, 'id,name,mainId,status,delStatus,removeStatus', null, true);
- if (empty($infoList)) {
- util::fail('请选择花材哦12');
- }
- foreach ($infoList as $info) {
- if ($info->mainId != $this->mainId) {
- util::fail('请选择自己的花材');
- }
- $info->delStatus = 0;
- $info->save();
- }
- util::complete('操作成功');
- }
- //批量停用花材 20230206
- public function actionBatchStop()
- {
- $post = Yii::$app->request->post();
- $string = $post['ids'] ?? '';
- $ids = json_decode($string, true);
- $ids = array_unique(array_filter($ids));
- if (empty($ids)) {
- util::fail('请选择花材13');
- }
- $infoList = ItemClass::getAllByCondition(['id' => ['in', $ids]], null, 'id,name,mainId,status,delStatus,removeStatus', null, true);
- if (empty($infoList)) {
- util::fail('请选择花材哦14');
- }
- foreach ($infoList as $info) {
- if ($info->mainId != $this->mainId) {
- util::fail('请选择自己的花材');
- }
- $name = $info->name ?? '';
- if ($info->status != 2) {
- util::fail($name . ' 下载了才能停用');
- }
- $info->delStatus = 1;
- $info->save();
- }
- util::complete('操作成功');
- }
- //获取给散客下单的花材海报 ssh 20220111
- public function actionGetSkPoster()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? 0;
- $item = ItemClass::getById($id, true);
- if (empty($item) || $item->mainId != $this->mainId) {
- util::fail('获取失败');
- }
- $cover = $item->cover ?? '';
- if (empty($cover)) {
- util::fail('获取失败');
- }
- $merchant = WxOpenClass::getMallWxInfo();
- $page = 'pages/item/detail';
- $ptStyle = dict::getDict('ptStyle', 'mall');
- $shop = $this->shop;
- $lsShopId = $shop->lsShopId ?? 0;
- //scene不能超过32个字条
- $scene = "id=" . $id . '&a=' . $lsShopId;
- $miniCode = miniUtil::generateUnlimitedMiniCode($merchant, $page, $scene, $ptStyle);
- $miniCode = $miniCode . '?x-oss-process=image/resize,m_fill,h_200,w_200';
- $miniCodeBase64 = stringUtil::ossBase64($miniCode);
- Yii::$app->params['ptStyle'] = dict::getDict('ptStyle', 'hd');
- $prefix = imgUtil::getPrefix();
- $price = $item->skPrice ?? 0;
- if ($item->discountPrice > 0) {
- $skMore = $item->skMore ?? 0;
- $price = bcadd($item->discountPrice, $skMore, 2);
- }
- $newPrice = '¥' . floatval($price);
- $priceBase64 = stringUtil::ossBase64($newPrice);
- $name = $item->name ?? '';
- $nameBase64 = stringUtil::ossBase64($name);
- $staff = $this->shopAdmin;
- $staffName = $staff->name ?? '';
- $newStaffName = $staffName . ' 为您推荐';
- $staffNameBase64 = stringUtil::ossBase64($newStaffName);
- //花材主图
- $itemCover = $cover . '?x-oss-process=image/resize,m_fill,h_750,w_750';
- $itemCoverBase64 = stringUtil::ossBase64($itemCover);
- $logoBase64 = '';
- if (in_array($this->mainId, [52, 1459, 13495])) {
- $logo = 'poster/hyxh_ncd_logo.png?x-oss-process=image/resize,m_fill,h_90,w_90';
- if ($this->mainId == 1459) {
- $logo = 'poster/hyxh_gcd_logo.png?x-oss-process=image/resize,m_fill,h_90,w_90';
- }
- if ($this->mainId == 13495) {
- $logo = 'poster/hyxh_hzd_logo.png?x-oss-process=image/resize,m_fill,h_90,w_90';
- }
- $logoBase64 = stringUtil::ossBase64($logo);
- }
- $url = $prefix . 'poster/1234.jpg?x-oss-process=image';
- //花材主图
- $url .= '/watermark,image_' . $itemCoverBase64 . ',g_nw,x_0,y_0';
- //小程序码
- $url .= '/watermark,image_' . $miniCodeBase64 . ',g_se';
- if (!empty($logoBase64)) {
- //logo
- $url .= '/watermark,image_' . $logoBase64 . ',g_se,x_65,y_65';
- }
- //为你推荐
- $url .= '/watermark,text_' . $staffNameBase64 . ',g_sw,x_18,y_235,color_8B8989,type_d3F5LW1pY3JvaGVp,size_30';
- //标题
- $url .= '/watermark,text_' . $nameBase64 . ',g_sw,x_18,y_145';
- //价格
- $url .= '/watermark,text_' . $priceBase64 . ',g_sw,x_18,y_50,color_EE2C2C,type_d3F5LW1pY3JvaGVp,size_50';
- $respond = ['imgUrl' => $url];
- util::success($respond);
- }
- //下载商品码,用于花市卖花 ssh 20240823
- public function actionDownMiniCode()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? 0;
- $item = ItemClass::getById($id, true);
- if (empty($item)) {
- util::fail('没有找到花材');
- }
- if ($item->mainId != $this->mainId) {
- util::fail('不是你的花材');
- }
- $merchant = WxOpenClass::getWxInfo();
- $page = 'admin/ghsProduct/detail';
- $ptStyle = dict::getDict('ptStyle', 'hd');
- //小程序码,scene不能超过32个字条
- $scene = "id=" . $id . '&sId=' . $this->shopId;
- $miniCode = miniUtil::generateUnlimitedMiniCode($merchant, $page, $scene, $ptStyle);
- $miniCode = $miniCode . '?x-oss-process=image/resize,m_fill,h_450,w_450';
- $miniCodeBase64 = stringUtil::ossBase64($miniCode);
- $prefix = imgUtil::getPrefix();
- $url = $prefix . 'poster/mini_bg.jpg?x-oss-process=image';
- //小程序码
- $url .= '/watermark,image_' . $miniCodeBase64 . ',g_north,x_0,y_25';
- $name = $item->name ?? '';
- $nameBase64 = stringUtil::ossBase64($name);
- //标题
- $url .= '/watermark,text_' . $nameBase64 . ',g_south,x_0,y_35';
- $file = fopen($url, "rb");
- Header("Content-type: application/octet-stream ");
- Header("Accept-Ranges: bytes ");
- Header("Content-Disposition: attachment;filename={$name}.jpg");
- $contents = "";
- while (!feof($file)) {
- $contents .= fread($file, 8192);
- }
- echo $contents;
- fclose($file);
- }
- //获取给花店下单的花材海报 ssh 20220111
- public function actionGetHdPoster()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? 0;
- $item = ItemClass::getById($id, true);
- if (empty($item) || $item->mainId != $this->mainId) {
- util::fail('获取失败');
- }
- $cover = $item->cover ?? '';
- if (empty($cover)) {
- util::fail('获取失败');
- }
- $merchant = WxOpenClass::getWxInfo();
- $page = 'admin/ghsProduct/detail';
- $ptStyle = dict::getDict('ptStyle', 'hd');
- //小程序码,scene不能超过32个字条
- $scene = "id=" . $id . '&sId=' . $this->shopId;
- $miniCode = miniUtil::generateUnlimitedMiniCode($merchant, $page, $scene, $ptStyle);
- $miniCode = $miniCode . '?x-oss-process=image/resize,m_fill,h_200,w_200';
- $miniCodeBase64 = stringUtil::ossBase64($miniCode);
- Yii::$app->params['ptStyle'] = dict::getDict('ptStyle', 'ghs');
- $prefix = imgUtil::getPrefix();
- $price = $item->price ?? 0;
- if ($item->discountPrice > 0) {
- $price = $item->discountPrice;
- }
- $newPrice = '¥' . floatval($price);
- $priceBase64 = stringUtil::ossBase64($newPrice);
- $name = $item->name ?? '';
- $nameBase64 = stringUtil::ossBase64($name);
- $staff = $this->shopAdmin;
- $staffName = $staff->name ?? '';
- $newStaffName = $staffName . ' 为您推荐';
- $staffNameBase64 = stringUtil::ossBase64($newStaffName);
- //花材主图
- $itemCover = $cover . '?x-oss-process=image/resize,m_fill,h_750,w_750';
- $itemCoverBase64 = stringUtil::ossBase64($itemCover);
- $logoBase64 = '';
- if (in_array($this->mainId, [52, 1459, 13495])) {
- $logo = 'poster/hyxh_ncd_logo.png?x-oss-process=image/resize,m_fill,h_90,w_90';
- if ($this->mainId == 1459) {
- $logo = 'poster/hyxh_gcd_logo.png?x-oss-process=image/resize,m_fill,h_90,w_90';
- }
- if ($this->mainId == 13495) {
- $logo = 'poster/hyxh_hzd_logo.png?x-oss-process=image/resize,m_fill,h_90,w_90';
- }
- $logoBase64 = stringUtil::ossBase64($logo);
- }
- $url = $prefix . 'poster/1234.jpg?x-oss-process=image';
- //花材主图
- $url .= '/watermark,image_' . $itemCoverBase64 . ',g_nw,x_0,y_0';
- //小程序码
- $url .= '/watermark,image_' . $miniCodeBase64 . ',g_se';
- if (!empty($logoBase64)) {
- //logo
- $url .= '/watermark,image_' . $logoBase64 . ',g_se,x_65,y_65';
- }
- //为你推荐
- $url .= '/watermark,text_' . $staffNameBase64 . ',g_sw,x_18,y_235,color_8B8989,type_d3F5LW1pY3JvaGVp,size_30';
- //标题
- $url .= '/watermark,text_' . $nameBase64 . ',g_sw,x_18,y_145';
- //价格
- $url .= '/watermark,text_' . $priceBase64 . ',g_sw,x_18,y_50,color_EE2C2C,type_d3F5LW1pY3JvaGVp,size_50';
- $respond = ['imgUrl' => $url];
- util::success($respond);
- }
- //是否有C级价格大于B级的 ssh 20221204
- public function actionGetErrorPrice()
- {
- $shop = $this->shop;
- $list = ItemClass::errorPrice($shop);
- util::success(['list' => $list]);
- }
- //列出所有花材,包括特价花材列表 ssh 20220315
- public function actionShowList()
- {
- $get = Yii::$app->request->get();
- $customId = $get['customId'] ?? 0;
- $custom = CustomClass::getById($customId, true);
- $where['mainId'] = $this->mainId;
- $where['delStatus'] = 0;
- $where['status'] = 1;
- $list = ItemClass::getShowList($where, $custom);
- $mainId = $this->mainId;
- $get = Yii::$app->request->get();
- $isCashier = $get['isCashier'] ?? 0;
- if ($isCashier == 1) {
- //去掉收银台提示价格更新
- $staffId = $this->shopAdminId;
- Yii::$app->redis->executeCommand('DEL', ['ghs_cashier_' . $mainId . '_' . $staffId . '_may_refresh']);
- }
- $productList = [];
- if (!empty($list)) {
- foreach ($list as $key => $item) {
- if (!empty($item)) {
- $productList = array_merge($productList, $item);
- }
- }
- }
- util::success(['list' => $list, 'productList' => $productList]);
- }
- public function actionAdd()
- {
- util::fail('开发中');
- }
- //批量添加花材
- public function actionBatchAdd()
- {
- $shopAdmin = $this->shopAdmin;
- if (isset($shopAdmin->super) == false || $shopAdmin->super != 1) {
- util::fail('超管才能操作');
- }
- $post = Yii::$app->request->post();
- //[{"itemId":"1175","classId":"3548","price":"5","skPrice":"8","cost":"1","name":"卡娜百合"}]
- $data = $post['data'];
- if (empty($data)) {
- util::fail("请选花材");
- }
- $data = json_decode($data, true);
- if (is_array($data) == false || empty($data)) {
- util::fail("请选花材");
- }
- $shop = $this->shop;
- $shopId = $this->shopId;
- $mainId = $this->mainId;
- $sjId = $this->sjId;
- $adminId = $this->adminId;
- $ids = array_column($data, 'itemId');
- $ids = array_unique(array_filter($ids));
- $has = ProductClass::getByCondition(['mainId' => $mainId, 'itemId' => ['in', $ids]]);
- if (!empty($has)) {
- $hasName = $has->name ?? '';
- util::fail($hasName . " 已经添加过了");
- }
- $ptItemInfo = PtItemClass::getAllByCondition(['id' => ['in', $ids]], null, '*', 'id');
- $connection = Yii::$app->db;
- $transaction = $connection->beginTransaction();
- try {
- foreach ($data as $v) {
- $ptItemId = $v['itemId'] ?? 0;
- $ratio = $ptItemInfo[$ptItemId]['ratio'] ?? 20;
- $shelfLife = $ptItemInfo[$ptItemId]['shelfLife'] ?? 7;
- $ratioType = $ptItemInfo[$ptItemId]['ratioType'] ?? 0;
- $variety = $ptItemInfo[$ptItemId]['variety'] ?? 0;
- $stockWarning = $ptItemInfo[$ptItemId]['stockWarning'] ?? 5;
- $weight = $ptItemInfo[$ptItemId]['weight'] ?? 1;
- $bigUnit = $ptItemInfo[$ptItemId]['bigUnit'] ?? '扎';
- $smallUnit = $ptItemInfo[$ptItemId]['smallUnit'] ?? '支';
- $bigUnitId = $ptItemInfo[$ptItemId]['bigUnitId'] ?? 1;
- $smallUnitId = $ptItemInfo[$ptItemId]['smallUnitId'] ?? 2;
- $cover = $ptItemInfo[$ptItemId]['cover'] ?? 'default-img.png';
- $v['ratio'] = $ratio;
- $v['cover'] = $cover;
- $v['shelfLife'] = $shelfLife;
- $v['ratioType'] = $ratioType;
- $v['variety'] = $variety;
- $v['stockWarning'] = $stockWarning;
- $v['weight'] = $weight;
- $v['bigUnit'] = $bigUnit;
- $v['smallUnit'] = $smallUnit;
- $v['bigUnitId'] = $bigUnitId;
- $v['smallUnitId'] = $smallUnitId;
- $v['adminId'] = $adminId;
- $v['sjId'] = $sjId;
- $v['shopId'] = $shopId;
- $v['mainId'] = $mainId;
- $v['staffName'] = $shopAdmin->name ?? '';
- $name = $v['name'] ?? '';
- $price = is_numeric($v['price']) ? $v['price'] : 0;
- $skPrice = is_numeric($v['skPrice']) ? $v['skPrice'] : 0;
- $cost = is_numeric($v['cost']) ? $v['cost'] : 0;
- if ($price <= 0) {
- util::fail("请填写{$name}的批发价");
- }
- if ($skPrice <= 0) {
- util::fail("请填写{$name}的零售价");
- }
- if ($cost <= 0) {
- util::fail("请填写{$name}的成本价");
- }
- if ($price > $skPrice) {
- util::fail("{$name}的批发价比零售价还高");
- }
- if ($cost > $price) {
- util::fail("{$name}的成本价比批发价还高");
- }
- $skMore = bcsub($skPrice, $price, 2);
- $addPrice = bcsub($price, $cost, 2);
- $v['skMore'] = $skMore;
- $v['addPrice'] = $addPrice;
- $v['hjAddPrice'] = $addPrice;
- $v['hjPrice'] = $price;
- ProductClass::addProduct($v, $shop);
- }
- $transaction->commit();
- util::complete('添加成功');
- } catch (Exception $e) {
- $transaction->rollBack();
- util::fail();
- }
- }
- public function actionDelete()
- {
- util::fail('不能删除哦!');
- }
- //获取平台里的花材信息
- public function actionPlatformItem()
- {
- $py = Yii::$app->request->get('py', '');
- $where = [];
- if ($py) {
- $where = ['py' => $py];
- }
- $list = PtItemClass::getItemList($where);
- util::success($list);
- }
- //列出需要进行颜色管理的花材 ssh 20220820
- public function actionColorList()
- {
- $mainId = $this->mainId ?? 0;
- $list = ItemClass::getAllByCondition(['mainId' => $mainId, 'variety' => 1], null, '*');
- util::success(['list' => $list]);
- }
- //多颜色管理启用与停用 ssh 20221229
- public function actionChangeVariety()
- {
- $get = Yii::$app->request->get();
- $id = $get['id'] ?? 0;
- $variety = $get['variety'] ?? 0;
- $info = ItemClass::getById($id, true);
- if (empty($info) || $info->mainId != $this->mainId) {
- util::fail('操作失败');
- }
- $info->variety = $variety;
- $info->save();
- util::complete('操作成功');
- }
- //拆散花材 ssh 20221229
- public function actionBreakItem()
- {
- util::fail('开发中');
- util::complete();
- }
- //批量修改花材的负责人 ssh 20240718
- public function actionChangeCgStaff()
- {
- $get = Yii::$app->request->get();
- $beforeId = $get['beforeId'] ?? 0;
- $newId = $get['newId'] ?? 0;
- if (empty($beforeId) || empty($newId)) {
- util::fail('员工信息有问题');
- }
- $new = ShopAdminClass::getById($newId, true);
- if (empty($new) || $new->mainId != $this->mainId) {
- util::fail('错误的员工信息');
- }
- $before = ShopAdminClass::getById($beforeId, true);
- if (empty($before) || $before->mainId != $this->mainId) {
- util::fail('错误的员工信息2');
- }
- $newName = $new->name ?? '';
- ItemClass::updateByCondition(['mainId' => $this->mainId, 'cgStaffId' => $beforeId], ['cgStaffId' => $newId, 'cgStaffName' => $newName]);
- $shop = $this->shop;
- $bookSn = $shop->bookSn ?? 0;
- if (!empty($bookSn)) {
- BookItemClass::updateByCondition(['bookSn' => $bookSn, 'cgStaffId' => $beforeId], ['cgStaffId' => $newId, 'cgStaffName' => $newName]);
- }
- util::complete('修改成功');
- }
- }
|