Revision 44310118
Von Jan Büren vor fast 10 Jahren hinzugefügt
SL/Controller/PriceSource.pm | ||
---|---|---|
161 | 161 |
|
162 | 162 |
$obj->items(@items) if @items; |
163 | 163 |
} |
164 |
$obj->is_sales(!!$obj->customer_id) if $class eq 'SL::DB::DeliveryOrder'; |
|
164 | 165 |
|
165 | 166 |
return $obj; |
166 | 167 |
} |
SL/DB/DeliveryOrder.pm | ||
---|---|---|
171 | 171 |
return ($delivery_order, $custom_shipto); |
172 | 172 |
} |
173 | 173 |
|
174 |
sub customervendor { |
|
175 |
$_[0]->is_sales ? $_[0]->customer : $_[0]->vendor; |
|
176 |
} |
|
177 |
|
|
174 | 178 |
1; |
175 | 179 |
__END__ |
176 | 180 |
|
bin/mozilla/io.pl | ||
---|---|---|
2015 | 2015 |
} |
2016 | 2016 |
|
2017 | 2017 |
$obj->items(@items) if @items; |
2018 |
$obj->is_sales(!!$obj->customer_id) if $class eq 'SL::DB::DeliveryOrder'; |
|
2018 | 2019 |
|
2019 | 2020 |
return $obj; |
2020 | 2021 |
} |
Auch abrufbar als: Unified diff
Lieferscheine benötigen auch Preisquellen
-> customervendor Funktion auch für Lieferscheine
-> Typ Kunde oder Lieferant (is_customer) entsprechend analog