Blame view

api/client/ajouter.php 882 Bytes
ecee29d1   Geoffrey PREUD'HOMME   api/client/ajoute...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  
  require_once("../commun.php");
  
  verifierDroit(1);
  
  if (!(donne("idCarte") && donne("solde"))) {
      retour("requete_malformee");
  }
  
  if (clientExiste(donne("idCarte"))) {
      retour("client_existant");
  }
  
  if (donne("decouvert") && $_POST["decouvert"] != "false" && $_POST["decouvert"] != "0") {
      verifierDroit(3);
2e79fa12   Geoffrey PREUD'HOMME   api/client/ajoute...
17
      $decouvert = 1;
ecee29d1   Geoffrey PREUD'HOMME   api/client/ajoute...
18
  } else {
2e79fa12   Geoffrey PREUD'HOMME   api/client/ajoute...
19
      $decouvert = 0;
ecee29d1   Geoffrey PREUD'HOMME   api/client/ajoute...
20
21
22
23
24
25
26
27
28
29
  }
  
  $solde = floatval($_POST["solde"]);
  
  if ($solde < 0 && !$decouvert) {
      retour("solde_negatif");
  }
  
  
  $requete = $db->prepare("INSERT INTO Clients (idCarte, solde, decouvert) VALUES (?, ?, ?)");
b40335a8   Geoffrey PREUD'HOMME   api/client/ajoute...
30
  $requete->bind_param("sss", $_POST["idCarte"], $solde, $decouvert);
ecee29d1   Geoffrey PREUD'HOMME   api/client/ajoute...
31
32
33
34
  if (!$requete->execute()) {
      retour("erreur_bdd", ["message" => $requete->error]);
  }
  $requete->close();
207a98d5   Geoffrey PREUD'HOMME   id → idTransaction
35
  $idTransaction = transaction(TRANSACTION_CREATION, $_POST["idCarte"], $solde);
ecee29d1   Geoffrey PREUD'HOMME   api/client/ajoute...
36
37
  
  
207a98d5   Geoffrey PREUD'HOMME   id → idTransaction
38
  retour("ok", ["idTransaction" => $idTransaction]);
ecee29d1   Geoffrey PREUD'HOMME   api/client/ajoute...
39
40
  
  ?>