Home
last modified time | relevance | path

Searched refs:thirdpartiesid (Results 1 – 4 of 4) sorted by relevance

/dports/www/dolibarr13/dolibarr-13.0.5/scripts/invoices/
H A Drebuild_merge_pdf.php181 $thirdpartiesid = explode(',', $argv[$key + 1]); variable
182 print 'Exclude thirdparties with id in list ('.join(',', $thirdpartiesid).").\n";
184 $option .= (empty($option) ? '' : '_').'excludethirdparties'.join('-', $thirdpartiesid);
190 $thirdpartiesid = explode(',', $argv[$key + 1]); variable
191 print 'Only thirdparties with id in list ('.join(',', $thirdpartiesid).").\n";
193 $option .= (empty($option) ? '' : '_').'onlythirdparty'.join('-', $thirdpartiesid);
219 …fter, $paymentdatebefore, 1, $regenerate, $option, $paymentonbankid, $thirdpartiesid, $fileprefix);
/dports/www/dolibarr/dolibarr-14.0.3/scripts/invoices/
H A Drebuild_merge_pdf.php183 $thirdpartiesid = explode(',', $argv[$key + 1]); variable
184 print 'Exclude thirdparties with id in list ('.join(',', $thirdpartiesid).").\n";
186 $option .= (empty($option) ? '' : '_').'excludethirdparties'.join('-', $thirdpartiesid);
192 $thirdpartiesid = explode(',', $argv[$key + 1]); variable
193 print 'Only thirdparties with id in list ('.join(',', $thirdpartiesid).").\n";
195 $option .= (empty($option) ? '' : '_').'onlythirdparty'.join('-', $thirdpartiesid);
221 …fter, $paymentdatebefore, 1, $regenerate, $option, $paymentonbankid, $thirdpartiesid, $fileprefix);
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/core/lib/
H A Dinvoice2.lib.php46 …* @param array $thirdpartiesid List of thirdparties id when using filter excludethirdpartiesid …
50 …$usestdout, $regenerate = 0, $filesuffix = '', $paymentbankid = '', $thirdpartiesid = '', $filepre… argument
116 if (in_array('excludethirdparties', $filter) && is_array($thirdpartiesid))
120 $sqlwhere .= ' f.fk_soc NOT IN ('.join(',', $thirdpartiesid).')';
122 if (in_array('onlythirdparties', $filter) && is_array($thirdpartiesid))
126 $sqlwhere .= ' f.fk_soc IN ('.join(',', $thirdpartiesid).')';
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/core/lib/
H A Dinvoice2.lib.php46 …* @param array $thirdpartiesid List of thirdparties id when using filter=excludethirdpartiesid …
50 …$usestdout, $regenerate = 0, $filesuffix = '', $paymentbankid = '', $thirdpartiesid = '', $filepre… argument
127 if (in_array('excludethirdparties', $filter) && is_array($thirdpartiesid)) {
133 $sqlwhere .= ' f.fk_soc NOT IN ('.$db->sanitize(join(',', $thirdpartiesid)).')';
135 if (in_array('onlythirdparties', $filter) && is_array($thirdpartiesid)) {
141 $sqlwhere .= ' f.fk_soc IN ('.$db->sanitize(join(',', $thirdpartiesid)).')';