cmc-sales/php/app/views/elements/payment_terms_box.ctp

9 lines
424 B
Plaintext
Raw Normal View History

2009-02-03 21:28:46 -08:00
<?
2023-06-14 14:31:41 -07:00
echo $form->input('payment_terms', array('id'=>'paymentTermsOptions', 'empty'=>'Select the Terms of Payment', 'options' => array(
2009-02-03 21:28:46 -08:00
'100% Payment with Order' => '100% Payment with Order',
2009-02-05 15:10:57 -08:00
'Net 7 Days for Approved Accounts' => 'Net 7 Days for Approved Accounts',
'Net 14 Days for Approved Accounts' => 'Net 14 Days for Approved Accounts',
'Net 30 Days for Approved Accounts' => 'Net 30 Days for Approved Accounts',
)));
2009-02-03 21:28:46 -08:00
?>