Changeset 812 for trunk/Modules/Finance
- Timestamp:
- Mar 9, 2016, 8:36:25 AM (9 years ago)
- Location:
- trunk/Modules/Finance
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Finance.php
r810 r812 567 567 'Items' => array( 568 568 'DocumentLine' => array('Type' => 'TDocumentLine', 'Caption' => 'Dokladová řada', 'Default' => ''), 569 'BillCode' => array('Type' => 'TDocumentLineCode', 'Caption' => 'Kód', 'Default' => '' ),569 'BillCode' => array('Type' => 'TDocumentLineCode', 'Caption' => 'Kód', 'Default' => '', 'Null' => true), 570 570 'Subject' => array('Type' => 'TSubject', 'Caption' => 'Subjekt', 'Default' => ''), 571 571 'ValidFrom' => array('Type' => 'Date', 'Caption' => 'Platnost od', 'Default' => ''), -
trunk/Modules/Finance/Import.php
r747 r812 61 61 //print_r($Data); 62 62 63 if($Header != $Data[0]) $Output = 'Nekompatibilní struktura CSV'; 63 if($Header != $Data[0]) { 64 $Output = 'Nekompatibilní struktura CSV'; 65 print_r($Header); 66 print_r($Data[0]); 67 } 64 68 else 65 69 {
Note:
See TracChangeset
for help on using the changeset viewer.