[Vtigercrm-developers] HELP ME!
Mike Fedyk
mfedyk at mikefedyk.com
Mon Mar 13 16:00:16 PST 2006
Great!
I'll add this to my list of patches to review.
Mike
Luis Alberto Arenas Salinas wrote:
> Well, if some body have problem with save sales orders trough qoute
> module, i solve it do it:
>
> changed modules/orders/SaveSalesOrders.php
>
> Old =
>
> line 44 foreach($focus->column_fields as $fieldname => $val)
> {
> if(isset($_REQUEST[$fieldname]))
> {
> $value = $_REQUEST[$fieldname];
> //echo '<BR>';
> //echo $fieldname." ".$value;
> //echo '<BR>';
> $focus->column_fields[$fieldname] = $value;
> }
> }
>
>
> New=
>
> Line 44 foreach($focus->column_fields as $fieldname => $val)
> {
> if(isset($_REQUEST[$fieldname]))
> {
> $value = $_REQUEST[$fieldname];
> // New Lines HERE
> if(empty($value))
> {
> $value = 'null';
> }
> //echo '<BR>';
> //echo $fieldname." ".$value;
> //echo '<BR>';
> $focus->column_fields[$fieldname] = $value;
> }
> }
>
>
>
More information about the vtigercrm-developers
mailing list