|
|
@@ -795,6 +795,19 @@ class CustomController extends BaseController
|
|
|
util::complete();
|
|
|
}
|
|
|
|
|
|
+ //修改货位名称 ssh 20241006
|
|
|
+ public function actionUpdateSeatSnName()
|
|
|
+ {
|
|
|
+ $get = Yii::$app->request->get();
|
|
|
+ $id = $get['id'] ?? 0;
|
|
|
+ $seatSnName = $get['seatSnName'] ?? '';
|
|
|
+ $custom = CustomClass::getById($id, true);
|
|
|
+ CustomClass::valid($custom, $this->shopId);
|
|
|
+ $custom->seatSnName = $seatSnName;
|
|
|
+ $custom->save();
|
|
|
+ util::complete();
|
|
|
+ }
|
|
|
+
|
|
|
//修改折扣 ssh 20210913
|
|
|
public function actionChangeDiscount()
|
|
|
{
|