This commit is contained in:
2024-04-27 09:23:34 +02:00
commit 11e713ca6f
11884 changed files with 3263371 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
$z="select document_no,parent_name,total from ecminvoiceouts where
register_date>'2008-01-01' and
(to_nip='' or to_nip is null) and
(to_vatid='' or to_vatid is null) and
deleted='0' and
parent_name not like 'carrefour%' and
parent_name not like 'makro%' and
parent_name not like 'ntt%' and
parent_name not like 'real%' and
parent_name not like 'euro%' and
parent_name not like '\"real%' and
parent_name not like 'media%' and
parent_name not like 'netto%' and
parent_name not like 'inter%' and
parent_name not like 'domar%' and
parent_name not like 'ahold%' and
parent_name not like 'cp%' and
parent_name not like 'saturn%' and
parent_name not like 'carrefour%' and
parent_name not like 'carrefour%'";
$w=mysql_query($z);
while($r=mysql_fetch_array($w)){
echo $r['document_no']." ".$r['parent_name']." ".$r['total']."<br>";
}
?>