|
|
@@ -76,12 +76,14 @@ class OrderClearController extends BaseController
|
|
|
$connection = Yii::$app->db;
|
|
|
$transaction = $connection->beginTransaction();
|
|
|
$name = $this->shopAdmin['name'] ?? '';
|
|
|
+ $complete = $post['complete'] ?? 0;
|
|
|
$data = [
|
|
|
'customId' => $customId,
|
|
|
'ghsShopAdminId' => $this->shopAdminId,
|
|
|
'ghsShopAdminName' => $name,
|
|
|
'modifyPrice' => $modifyPrice,
|
|
|
'payWay' => $payWay,
|
|
|
+ 'complete' => $complete,
|
|
|
];
|
|
|
try {
|
|
|
$respond = OrderClearClass::clear($data, $id, $this->sjId, $this->shopId);
|