shish 1 rok temu
rodzic
commit
00db2d0559
1 zmienionych plików z 22 dodań i 0 usunięć
  1. 22 0
      app-ghs/controllers/CustomController.php

+ 22 - 0
app-ghs/controllers/CustomController.php

@@ -871,4 +871,26 @@ class CustomController extends BaseController
         util::success(['levelName' => $name]);
     }
 
+    //打印货位号 ssh 20241006
+    public function actionPrintSeatSn()
+    {
+        $get = Yii::$app->request->get();
+        $customId = $get['customId'] ?? 0;
+        $custom = CustomClass::getById($customId, true);
+        CustomClass::valid($custom, $this->shopId);
+        $seatSn = $custom->seatSn ?? 0;
+        $customName = $custom->name ?? '';
+        if (isset($custom->seatSnName) && !empty($custom->seatSnName)) {
+            $customName = $custom->seatSnName ?? '';
+        }
+        $a4Print = [
+            'customName' => $customName,
+            'seatSn' => $seatSn,
+        ];
+        $info['printData'] = $a4Print;
+        $template = '{"panels":[{"index":0,"name":1,"height":297,"width":210,"paperHeader":49.5,"paperFooter":780,"printElements":[{"options":{"left":12,"top":786,"height":49,"width":49},"printElementType":{"title":"html","type":"html"}},{"options":{"left":382.5,"top":785,"height":13,"width":136,"title":"销花宝提供技术支持","textAlign":"center","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":518.74609375,"bottom":801.49609375,"vCenter":450.74609375,"hCenter":794.99609375},"printElementType":{"title":"自定义文本","type":"text"}},{"options":{"left":6,"top":27,"height":19,"width":128,"right":134,"bottom":46,"vCenter":70,"hCenter":36.5,"field":"seatSn","testData":"593","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":12,"fontWeight":"bold","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":463.5,"top":22.5,"height":24,"width":120,"title":"文本","field":"customName","testData":"小林","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":15,"textAlign":"right","textContentVerticalAlign":"middle","qrCodeLevel":0,"right":583.5,"bottom":48,"vCenter":523.5,"hCenter":36},"printElementType":{"title":"文本","type":"text"}}],"paperNumberLeft":552.5,"paperNumberTop":785,"paperNumberContinue":true,"fontFamily":"Microsoft YaHei","watermarkOptions":{"content":"","rotate":25,"timestamp":false,"format":"YYYY-MM-DD HH:mm","fillStyle":"rgba(184, 184, 184, 0.3)","fontSize":"14px","width":200,"height":200},"panelLayoutOptions":{"layoutType":"column","layoutRowGap":0,"layoutColumnGap":0}}]}';
+        $info['template'] = $template;
+        util::success($info);
+    }
+
 }