diff --git a/app/admin/lists/system_store_storage/SystemStoreStorageLists.php b/app/admin/lists/system_store_storage/SystemStoreStorageLists.php index 59cfcd95..4a380b5b 100644 --- a/app/admin/lists/system_store_storage/SystemStoreStorageLists.php +++ b/app/admin/lists/system_store_storage/SystemStoreStorageLists.php @@ -59,8 +59,8 @@ class SystemStoreStorageLists extends BaseAdminDataLists implements ListsSearchI $item['staff_name'] = '无'; } $find=StoreProduct::where('id',$item['product_id'])->field('store_name,image')->find(); - $item['store_name']=$find['store_name']; - $item['image']=$find['image']; + $item['store_name']=$find['store_name']??''; + $item['image']=$find['image']??''; return $item; }) ->toArray(); diff --git a/app/admin/logic/purchase_order/PurchaseOrderLogic.php b/app/admin/logic/purchase_order/PurchaseOrderLogic.php new file mode 100644 index 00000000..1fb4f533 --- /dev/null +++ b/app/admin/logic/purchase_order/PurchaseOrderLogic.php @@ -0,0 +1,116 @@ + $params['store_id'], + 'order_arr' => $params['order_arr'], + 'order_id' => $params['order_id'], + 'total' => $params['total'], + 'actual' => $params['actual'], + 'money' => $params['money'], + 'paid' => $params['paid'], + 'file' => $params['file'], + 'data' => $params['data'], + 'is_opurchase' => $params['is_opurchase'], + 'is_mer' => $params['is_mer'], + 'storage' => $params['storage'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑采购订单 + * @param array $params + * @return bool + * @author admin + * @date 2024/08/01 16:32 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + PurchaseOrder::where('id', $params['id'])->update([ + 'store_id' => $params['store_id'], + 'order_arr' => $params['order_arr'], + 'order_id' => $params['order_id'], + 'total' => $params['total'], + 'actual' => $params['actual'], + 'money' => $params['money'], + 'paid' => $params['paid'], + 'file' => $params['file'], + 'data' => $params['data'], + 'is_opurchase' => $params['is_opurchase'], + 'is_mer' => $params['is_mer'], + 'storage' => $params['storage'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除采购订单 + * @param array $params + * @return bool + * @author admin + * @date 2024/08/01 16:32 + */ + public static function delete(array $params): bool + { + return PurchaseOrder::destroy($params['id']); + } + + + /** + * @notes 获取采购订单详情 + * @param $params + * @return array + * @author admin + * @date 2024/08/01 16:32 + */ + public static function detail($params): array + { + return PurchaseOrder::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/admin/validate/purchase_order/PurchaseOrderValidate.php b/app/admin/validate/purchase_order/PurchaseOrderValidate.php new file mode 100644 index 00000000..3c9ef046 --- /dev/null +++ b/app/admin/validate/purchase_order/PurchaseOrderValidate.php @@ -0,0 +1,86 @@ + 'require', + 'store_id' => 'require', + 'order_id' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'store_id' => '所属商户', + 'order_id' => '单据编号', + ]; + + + /** + * @notes 添加场景 + * @return PurchaseOrderValidate + * @author admin + * @date 2024/08/01 16:32 + */ + public function sceneAdd() + { + return $this->only(['store_id','order_id']); + } + + + /** + * @notes 编辑场景 + * @return PurchaseOrderValidate + * @author admin + * @date 2024/08/01 16:32 + */ + public function sceneEdit() + { + return $this->only(['id','store_id','order_id']); + } + + + /** + * @notes 删除场景 + * @return PurchaseOrderValidate + * @author admin + * @date 2024/08/01 16:32 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return PurchaseOrderValidate + * @author admin + * @date 2024/08/01 16:32 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file