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     }
235     
236     function updateMetricValue()
237     {
238         
239         $d = DB_DataObject::Factory('shipvia');
240         if($d->get('shipvia_code', 'UPS-Ground')){
241             $metric = DB_DataObject::Factory('metric');
242             $metric->query("SELECT setmetric('DefaultShipViaId', '{$d->pid()}')");
243         }
244         
245         $d = DB_DataObject::Factory('accnt');
246         if($d->get('accnt_descrip', 'Currency Gain Loss')){
247             $metric = DB_DataObject::Factory('metric');
248             $metric->query("SELECT setmetric('CurrencyGainLossAccount', '{$d->pid()}')");
249         }
250         
251         $d = DB_DataObject::Factory('salesrep');
252         $d->whereAdd("
253                 salesrep_active
254             AND
255                 salesrep_number IS NOT NULL
256             AND
257                 salesrep_number != ''
258         ");
259         $d->orderBy('salesrep_id ASC');
260         if($d->find(true)){
261             $metric = DB_DataObject::Factory('metric');
262             $metric->query("SELECT setmetric('DefaultSalesRep', '{$d->pid()}')");
263         }
264         
265         $d = DB_DataObject::Factory('shipform');
266         $d->orderBy('shipform_id ASC');
267         if($d->find(true)){
268             $metric = DB_DataObject::Factory('metric');
269             $metric->query("SELECT setmetric('DefaultShipFormId', '{$d->pid()}')");
270         }
271         
272     }
273     
274     
275     
276     
277     
278     
279     
280     
281     
282     
283     
284     
285     
286     
287     /*
288     
289     function updateData($k='')
290     {
291         $uom = DB_DataObject::factory('uom');
292         $uom->setFrom(array(
293             'uom_name' => 'YEAR',
294             'uom_descrip' => 'YEAR'
295         ));
296         
297         if(!$uom->find(true)){
298             $uom->insert();
299         }
300         $this->addWarehouse();
301         $this->addExtraYears();
302         $this->addAccounts();
303         $this->addBankAccounts();
304     }
305     */
306     
307     function addWarehouse()
308     {
309         $l = DB_DataObject::Factory('location');
310         if ($l->count()) {
311             echo "location exists - SKIP\n";
312             return;
313         }
314         $cust = DB_DataObject::Factory('custinfo');
315         $cc =$cust->count() ;
316         if ($cc != 1) {
317             echo "location create - needs 1 custinfo - got $cc\n";
318             return;
319         }
320         $cust->find(true);
321         
322         $l->setFrom(array(
323             'location_name' => 'Warehouse',
324             'location_descrip' => 'Warehouse',
325             'location_cust_id' => $cust->pid()
326         ));
327     }
328     
329     
330     
331     function addExtraYears()
332     {
333         $p = DB_DataObject::Factory('period');
334         if ($p->count()) {
335             echo "SKIP - already have periods\n";
336             return;
337         }
338         $p->initPeriods($this);
339         $p->initPeriods($this);
340         $p->initPeriods($this);
341         $p->initPeriods($this);
342         
343     }
344     function addAccounts()
345     {
346         require_once 'File/Convert.php';
347         $cp = $this->tempName('xls');
348         copy(dirname(__FILE__).'/../Xtuple/Setup/accounts_sample.xls', $cp);
349         $fc = new File_Convert($cp, 'application/vnd.ms-excel');
350         //var_Dump($img->getStoreName());
351         $csv = $fc->convert('text/csv');
352         unlink($cp);
353         //var_dump($csv);
354         require_once 'Pman/Xtuple/Import/Accounts.php';
355         $ia = new Pman_Xtuple_Import_Accounts();
356         $ia->importCsv($csv);
357     }
358     
359     function addBankAccounts() {
360         
361         $accnt = DB_DataObject::factory('subaccnt');
362         if (!$accnt->get('subaccnt_number', '01')) {
363             echo "SKIP Bank account creation - no subaccnt - 01\n";
364             return;
365         }
366         
367         $bankaccnt = DB_DataObject::factory('bankaccnt');
368         
369         $bankaccnt->whereAdd("
370             bankaccnt_name != ''
371         ");
372         
373         if(!$bankaccnt->count()){
374             $bankaccnt = DB_DataObject::factory('bankaccnt');
375         
376             if(!$bankaccnt->get('bankaccnt_name', 'Current Account')){
377                 $accnt = DB_DataObject::factory('accnt');
378                 $accnt->setFrom(array(
379                     'accnt_number' => '131',
380                     'accnt_descrip' => 'Current Account',
381                     'accnt_comments' => '',
382                     'accnt_profit' => '01',
383                     'accnt_sub' => '01',
384                     'accnt_type' => 'A',
385                     'accnt_extref' => '',
386                     'accnt_closedpost' => false,
387                     'accnt_forwardupdate' => false,
388                     'accnt_subaccnttype_code' => 'CA',
389                     'accnt_curr_id' => $accnt->sqlValue("baseCurrId()"),
390                     'accnt_active' => true
391                 ));
392
393                 if(!$accnt->find(true)){
394                     $accnt->insert();
395                 }
396
397                 $bankaccnt->setFrom(array(
398                     'bankaccnt_name' => 'Current Account',
399                     'bankaccnt_descrip' => 'Current Account',
400                     'bankaccnt_bankname' => 'Current Account',
401                     'bankaccnt_accntnumber' => 'N/A',
402                     'bankaccnt_ar' => true,
403                     'bankaccnt_ap' => true,
404                     'bankaccnt_nextchknum' => 5000,
405                     'bankaccnt_type' => 'K',
406                     'bankaccnt_accnt_id' => $accnt->pid(),
407                     'bankaccnt_curr_id' => $bankaccnt->sqlValue("baseCurrId()"),
408                     'bankaccnt_notes' => '',
409                     'bankaccnt_routing' => '',
410                     'bankaccnt_ach_enabled' => false,
411                     'bankaccnt_ach_origintype' => 'I'
412                 ));
413
414                 $bankaccnt->insert();
415             }
416
417             $bankaccnt = DB_DataObject::factory('bankaccnt');
418
419             if(!$bankaccnt->get('bankaccnt_name', 'Savings Account')){
420                 $accnt = DB_DataObject::factory('accnt');
421                 $accnt->setFrom(array(
422                     'accnt_number' => '404',
423                     'accnt_descrip' => 'Savings Account',
424                     'accnt_comments' => '',
425                     'accnt_profit' => '01',
426                     'accnt_sub' => '01',
427                     'accnt_type' => 'A',
428                     'accnt_extref' => '',
429                     'accnt_closedpost' => false,
430                     'accnt_forwardupdate' => false,
431                     'accnt_subaccnttype_code' => 'CA',
432                     'accnt_curr_id' => $accnt->sqlValue("baseCurrId()"),
433                     'accnt_active' => true
434                 ));
435
436                 if(!$accnt->find(true)){
437                     $accnt->insert();
438                 }
439
440                 $bankaccnt->setFrom(array(
441                     'bankaccnt_name' => 'Savings Account',
442                     'bankaccnt_descrip' => 'Savings Account',
443                     'bankaccnt_bankname' => 'Savings Account',
444                     'bankaccnt_accntnumber' => 'N/A',
445                     'bankaccnt_ar' => true,
446                     'bankaccnt_ap' => true,
447                     'bankaccnt_nextchknum' => 5000,
448                     'bankaccnt_type' => 'K',
449                     'bankaccnt_accnt_id' => $accnt->pid(),
450                     'bankaccnt_curr_id' => $bankaccnt->sqlValue("baseCurrId()"),
451                     'bankaccnt_notes' => '',
452                     'bankaccnt_routing' => '',
453                     'bankaccnt_ach_enabled' => false,
454                     'bankaccnt_ach_origintype' => 'I'
455                 ));
456
457                 $bankaccnt->insert();
458             }
459         }
460         
461     }
462     
463 }