-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransaction.php
63 lines (54 loc) · 1.98 KB
/
Transaction.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
require "General.php";
use OpenApi\Annotations as OA;
class Transaction extends General{
protected $table = "transaction";
/**
*@OA\Get(
* path="/transactions",
* @OA\Response(
* response="200",
* description="Solde suffisant",
* @OA\JsonContent(type="array", description="", @OA\Items(ref="#/components/schemas/Transaction")),
*
*),
*@OA\Response(
* response="404",
* description="Erreur 404",
* @OA\JsonContent(
* @OA\Property(
* property="message",
* type="string",
* example="Solde insuffisant"
* )
* ),
* )
*)
*/
/**
* Save user
*
* @param array $param
* @return void
*/
public function saved($param, $params){
$statement = "INSERT INTO transaction (date, montant, valide, moyenPaiement, compte_id)
VALUES (:date, :montant, :valide, :moyenPaiement, :compte_id)";
$statements = "SELECT * from compte WHERE id". $param['compte_id'];
$this->db->prepare($statement, 'saved', $param);
$possible = $params["fond"] - $param["montant"];
if($possible > 0){
$param["date"]= date('d-m-Y');
$param["montant"]= is_numeric($param["montant"]);
$param["valide"]= is_bool($param["valide"]);
$param["moyenPaiement"]= htmlspecialchars($param["moyenPaiement"]);
$param["compte_id"]= is_integer($param["compte_id"]);
$this->db->prepare($statement, 'save', $param);
$this->db->prepare($statements, 'put', $params);
echo "payement effectué";
}
else{
echo "pas assez de fond";
}
}
}