UpdateDatabase.php
[Pman.Xtuple] / UpdateDatabase.php
1 <?php
2
3 /**
4  *
5  * Setup the core values in the database
6  *
7  *
8  */
9
10 require_once 'Pman/Core/UpdateDatabase.php';
11 class Pman_Xtuple_UpdateDatabase extends Pman_Core_UpdateDatabase
12 {
13     
14     static $cli_desc = "Update SQL - Beta";
15     
16     static $cli_opts = array(
17         'source' => array(
18             'desc' => 'Source directory for json files.',
19             'short' => 'f',
20             'default' => '',
21             'min' => 1,
22             'max' => 1,
23         ),
24         
25         
26         
27         'base' => array(
28             'desc' => 'Base Currency',
29             'default' => '',
30             'short' => 'b',
31             'min' => 1,
32             'max' => 1,
33             
34         ),
35  
36         'json-accnt' => array(
37             'desc' => 'Accounts JSON file',
38             'default' => '',
39             'min' => 1,
40             'max' => 1,
41             
42         ),
43         'json-curr-symbol' => array(
44             'desc' => 'Currency Symbols JSON file',
45             'default' => '',
46             'min' => 1,
47             'max' => 1,
48             
49         ),
50
51         'json-location' => array(
52             'desc' => 'Location JSON file',
53             'default' => '',
54             'min' => 1,
55             'max' => 1,
56             
57         ),
58         'json-terms' => array(
59             'desc' => 'Terms  JSON file',
60             'default' => '',
61             'min' => 1,
62             'max' => 1,
63             
64         ),
65         
66     );
67     
68     var $cli = false; 
69     function getAuth() {
70         
71         
72         $ff = HTML_FlexyFramework::get();
73         if (!empty($ff->cli)) {
74             $this->cli = true;
75             return true;
76         }
77         die("NOT ALLOWED");
78     }
79     
80     // called to ensure options are correct.
81     // before any data is imported / started..
82     function checkOpts($opts)
83     {
84         $opts = HTML_FlexyFramework::get()->page->opts;
85         if (
86                 (!empty($opts['init']) && empty($opts['base']) )
87                 ||
88                 (empty($opts['init']) && !empty($opts['base']) )
89            ) {
90                     
91             die("--base=XXX  and --init =1 must be used together.");
92         }
93         // default to import the terms.
94         if (
95                 (!empty($opts['init']) && empty($opts['json-terms']) ))
96         {
97             HTML_FlexyFramework::get()->page->opts['json-terms'] = dirname(__FILE__).'/Setup/terms.json';
98             
99         }
100        
101         
102          
103     }
104     
105     
106     function get($k = '',$opts)
107     {
108         $k = strtolower($k);
109         
110         $this->opts = $opts;
111         
112         require_once 'Pman/Core/UpdateDatabase.php';
113         
114         Pman_Core_UpdateDatabase::jsonImportFromArray($opts);
115           
116         $this->updateData($k);
117         
118     }
119     
120     function importModuleSQL($dburl)
121     {
122          
123             $dbtype = $dburl['scheme'];
124             $dirmethod = 'import' . $dburl['scheme'] . 'dir';
125         
126             $m = 'Xtuple';
127             echo "Xtyple:Importing SQL\n";
128         
129             
130             // if init has been called
131             // look in pgsql.ini -- This creates all the tables....
132             
133             if (!empty($this->opts['init'])) {
134                 // it should really use xtuple... but it's not very well organized...
135                 //$this->{$dirmethod}($dburl, $this->rootDir. "/Pman/$m/{$dbtype}.init");
136                 
137                 // ?? use dbscripts/misc/postbooks_empty.backup ???
138                 
139                 $this->{$dirmethod}($dburl, $this->rootDir. "/Pman/$m/{$dbtype}.init");
140                 
141             }
142             /*
143             // let's see if this works.. -- not very flexible... - hardcoding schema...
144             $this->{$dirmethod}($dburl, $this->rootDir. "/Pman/Xtuple/xtuple-database/440_schema.sql");
145             
146             foreach(array(
147                 'public/types',
148                 'public/tables',
149                 'public/views',
150                 'public/functions', 
151                 'public/trigger_functions',
152                 'public/indexes',
153                 'api/functions',
154                 'api/views',
155                 
156                 
157             ) as $dir) {
158                 $this->{$dirmethod}($dburl, $this->rootDir. "/Pman/Xtuple/xtuple-database/" . $dir);   
159             }
160             */
161             // first try the standard from xtuple-database
162             
163             
164             // new -- sql directory..
165             // new style will not support migrate ... they have to go into mysql-migrate.... directories..
166             // new style will not support pg.sql etc.. naming - that's what the direcotries are for..
167             
168             
169             
170              
171             $this->{$dirmethod}($dburl, $this->rootDir. "/Pman/$m/{$dbtype}");
172             
173             
174             
175             if (!empty($this->opts['init']) && file_exists($this->rootDir. "/Pman/$m/{$dbtype}.initdata")) {
176                 HTML_FlexyFramework::get()->generateDataobjectsCache(true);
177                 
178                 $this->{$dirmethod}($dburl, $this->rootDir. "/Pman/$m/{$dbtype}.initdata");
179                 $this->{'fixSequences'. $dbtype}();
180                 
181             }
182               
183     }
184     
185     
186     function updateData($k='')
187     {
188         $ff = HTML_Flexyframework::get();
189         $dburl = parse_url($ff->DB_DataObject['database']);
190        
191         
192 //        $this->importpgsqldir($dburl, $this->rootDir. "/Pman/Xtuple/xtuple-database/empty_data.sql");
193         
194         //DB_DataObject::debugLevel(1);
195         $tables = empty($k) ? array(
196                 
197 //                'curr_symbol', //?? fixme
198                 'custtype',
199                 'plancode',
200                 'prodcat',
201                 'classcode',
202                 'curr_rate',
203                 'char',
204                 'taxzone',
205                 'taxtype',
206                 'expcat',
207                 // accounts - fixme - we need a better 'base set'
208                 // 'costcat' -- fixme - we need to init this..
209             
210 //                'terms', //?? add
211                 
212 //                'location', //?? just check hat one exists.
213         ) : array($k);
214         
215         
216         $core_opts = HTML_FlexyFramework::get()->page->opts;
217         if (!empty($core_opts['init'])) {
218             DB_DataObject::factory('curr_symbol')->setBase($this, $core_opts['base']);
219         }
220         
221         
222         
223         
224         foreach($tables as $t) {
225             $cs = DB_DataObject::factory($t);
226             $cs->initDatabase($this);
227         
228         }
229         
230         // update data is called from main
231         
232         $this->updateMetricValue();
233         
234         $this->addWarehouse();
235         $this->addExtraYears();
236         $this->addAccounts();
237         $this->addBankAccounts();
238         
239         
240         
241     }
242     
243     function updateMetricValue()
244     {
245         
246         $d = DB_DataObject::Factory('shipvia');
247         if($d->get('shipvia_code', 'UPS-Ground')){
248             $metric = DB_DataObject::Factory('metric');
249             $metric->query("SELECT setmetric('DefaultShipViaId', '{$d->pid()}')");
250         }
251         
252         $d = DB_DataObject::Factory('accnt');
253         if($d->get('accnt_descrip', 'Currency Gain Loss')){
254             $metric = DB_DataObject::Factory('metric');
255             $metric->query("SELECT setmetric('CurrencyGainLossAccount', '{$d->pid()}')");
256         }
257         
258         $d = DB_DataObject::Factory('salesrep');
259         $d->whereAdd("
260                 salesrep_active
261             AND
262                 salesrep_number IS NOT NULL
263             AND
264                 salesrep_number != ''
265         ");
266         $d->orderBy('salesrep_id ASC');
267         if($d->find(true)){
268             $metric = DB_DataObject::Factory('metric');
269             $metric->query("SELECT setmetric('DefaultSalesRep', '{$d->pid()}')");
270         }
271         
272         $d = DB_DataObject::Factory('shipform');
273         $d->orderBy('shipform_id ASC');
274         if($d->find(true)){
275             $metric = DB_DataObject::Factory('metric');
276             $metric->query("SELECT setmetric('DefaultShipFormId', '{$d->pid()}')");
277         }
278         
279     }
280     
281     
282     
283     
284     
285     
286     
287     
288     
289     
290     
291     
292     
293     
294     /*
295     
296     function updateData($k='')
297     {
298         
299         
300     }
301     */
302     
303     function addWarehouse()
304     {
305         $l = DB_DataObject::Factory('location');
306         if ($l->count()) {
307             echo "location exists - SKIP\n";
308             return;
309         }
310         $cust = DB_DataObject::Factory('custinfo');
311         $cc =$cust->count() ;
312         if ($cc != 1) {
313             echo "location create - needs 1 custinfo - got $cc\n";
314             return;
315         }
316         $cust->find(true);
317         
318         $l->setFrom(array(
319             'location_name' => 'Warehouse',
320             'location_descrip' => 'Warehouse',
321             'location_cust_id' => $cust->pid()
322         ));
323     }
324     
325     
326     
327     function addExtraYears()
328     {
329         $p = DB_DataObject::Factory('period');
330         if ($p->count()) {
331             echo "SKIP - already have periods\n";
332             return;
333         }
334         $p->initPeriods($this);
335         $p->initPeriods($this);
336         $p->initPeriods($this);
337         $p->initPeriods($this);
338         
339     }
340     function addAccounts()
341     {
342         $ac = DB_DataObject::factory('accnt');
343         if ($ac->count()) {
344             return;
345         }
346         
347         require_once 'File/Convert.php';
348         $cp = $this->tempName('xls');
349         copy(dirname(__FILE__).'/Setup/accounts_sample.xls', $cp);
350         $fc = new File_Convert($cp, 'application/vnd.ms-excel');
351         //var_Dump($img->getStoreName());
352         $csv = $fc->convert('text/csv');
353         unlink($cp);
354         //var_dump($csv);
355         require_once 'Pman/Xtuple/Import/Accounts.php';
356         $ia = new Pman_Xtuple_Import_Accounts();
357         $ia->importCsv($csv);
358     }
359     
360     function addBankAccounts() {
361         
362         $accnt = DB_DataObject::factory('subaccnt');
363         if (!$accnt->get('subaccnt_number', '01')) {
364             echo "SKIP Bank account creation - no subaccnt - 01\n";
365             return;
366         }
367         
368         $bankaccnt = DB_DataObject::factory('bankaccnt');
369         
370         $bankaccnt->whereAdd("
371             bankaccnt_name != ''
372         ");
373         // do we have any bank accounts.. with names...
374         if($bankaccnt->count()){
375             return;
376         }
377         $bankaccnt = DB_DataObject::factory('bankaccnt');
378     
379         if(!$bankaccnt->get('bankaccnt_name', 'Current Account')){
380             // create a standard account.
381             $accnt = DB_DataObject::factory('accnt');
382             $accnt->setFrom(array(
383                 'accnt_number' => '131',
384                 'accnt_descrip' => 'Current Account',
385                 'accnt_comments' => '',
386                 'accnt_profit' => '01',
387                 'accnt_sub' => '01',
388                 'accnt_type' => 'A',
389                 'accnt_extref' => '',
390                 'accnt_closedpost' => false,
391                 'accnt_forwardupdate' => false,
392                 'accnt_subaccnttype_code' => 'CA',
393                 'accnt_curr_id' => $accnt->sqlValue("baseCurrId()"),
394                 'accnt_active' => true
395             ));
396
397             if(!$accnt->find(true)){
398                 $accnt->insert();
399             }
400
401             $bankaccnt->setFrom(array(
402                 'bankaccnt_name' => 'Current Account',
403                 'bankaccnt_descrip' => 'Current Account',
404                 'bankaccnt_bankname' => 'Current Account',
405                 'bankaccnt_accntnumber' => 'N/A',
406                 'bankaccnt_ar' => true,
407                 'bankaccnt_ap' => true,
408                 'bankaccnt_nextchknum' => 5000,
409                 'bankaccnt_type' => 'K',
410                 'bankaccnt_accnt_id' => $accnt->pid(),
411                 'bankaccnt_curr_id' => $bankaccnt->sqlValue("baseCurrId()"),
412                 'bankaccnt_notes' => '',
413                 'bankaccnt_routing' => '',
414                 'bankaccnt_ach_enabled' => false,
415                 'bankaccnt_ach_origintype' => 'I'
416             ));
417
418             $bankaccnt->insert();
419         }
420
421         $bankaccnt = DB_DataObject::factory('bankaccnt');
422
423         if(!$bankaccnt->get('bankaccnt_name', 'Savings Account')){
424             $accnt = DB_DataObject::factory('accnt');
425             $accnt->setFrom(array(
426                 'accnt_number' => '404',
427                 'accnt_descrip' => 'Savings Account',
428                 'accnt_comments' => '',
429                 'accnt_profit' => '01',
430                 'accnt_sub' => '01',
431                 'accnt_type' => 'A',
432                 'accnt_extref' => '',
433                 'accnt_closedpost' => false,
434                 'accnt_forwardupdate' => false,
435                 'accnt_subaccnttype_code' => 'CA',
436                 'accnt_curr_id' => $accnt->sqlValue("baseCurrId()"),
437                 'accnt_active' => true
438             ));
439
440             if(!$accnt->find(true)){
441                 $accnt->insert();
442             }
443
444             $bankaccnt->setFrom(array(
445                 'bankaccnt_name' => 'Savings Account',
446                 'bankaccnt_descrip' => 'Savings Account',
447                 'bankaccnt_bankname' => 'Savings Account',
448                 'bankaccnt_accntnumber' => 'N/A',
449                 'bankaccnt_ar' => true,
450                 'bankaccnt_ap' => true,
451                 'bankaccnt_nextchknum' => 5000,
452                 'bankaccnt_type' => 'K',
453                 'bankaccnt_accnt_id' => $accnt->pid(),
454                 'bankaccnt_curr_id' => $bankaccnt->sqlValue("baseCurrId()"),
455                 'bankaccnt_notes' => '',
456                 'bankaccnt_routing' => '',
457                 'bankaccnt_ach_enabled' => false,
458                 'bankaccnt_ach_origintype' => 'I'
459             ));
460
461             $bankaccnt->insert();
462         }
463     }
464     
465     }
466     
467 }