]> 4ch.mooo.com Git - bakadb.git/blob - price.c
Merge branch 'master' of ssh://4ch.mooo.com:26/var/www/16/bakadb
[bakadb.git] / price.c
1 /*\r
2  * Copyright (C) 2015 sparky4\r
3  *\r
4  * This file is part of baka database.\r
5  *\r
6  * baka database is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * baka database is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
19  * Fifth Floor, Boston, MA 02110-1301 USA.\r
20  *\r
21  */\r
22 #include "bakadb.h"\r
23 \r
24 void main(int argc, char *argv[])\r
25 {\r
26         iword id;\r
27         float pee;\r
28 \r
29         printf("Enter a work order number for pricing: ");\r
30         scanf("%ud\n", &id);\r
31 \r
32         bdchange(id, 0, -2);\r
33         printf("....\n");\r
34         getstrfromdb(-2);\r
35 \r
36         printf("Currently the customer %s you: %fu\n", baka_name, baka_price);\r
37         printf("Change the charges by how much?: ");\r
38         scanf("%f\n", &pee);\r
39         //printf("                              pee=%d\n", pee);\r
40 \r
41         if(pee > 0) bdchange(id, pee, -2);\r
42 }\r