Home » RADICORE development » Framework » DropDown Field values - changing in runtime
Re: DropDown Field values - changing in runtime [message #7692 is a reply to message #7691] |
Sun, 06 March 2022 06:01 |
htManager
Messages: 439 Registered: May 2014
|
Senior Member |
|
|
This is the definition of the column:
$fieldspec['ma_ausruestung_preis_eigenanteil']= array('type' => 'numeric',
'size' => 12,
'precision' => 11,
'scale' => 2,
'minvalue' => 0,
'maxvalue' => 999999999.99,
'default' => '0.00');
If I set $this->fieldspec['ma_ausruestung_preis_eigenanteil']['noedit'] = 'y' in _cm_changeConfig() everything works fine and the value will not be increased.
This is the content of $postarray and $fieldarray in _cm_updateFieldArray()
C:\xampp\htdocs\radicore\htm\classes\orga_mannschaften_konta kte_ausruestung.class.inc:732:
array (size=8)
this is the composed value from the lookup table, existing of the three foreign key values
'gr_art_dropdown' => string '&SCH-DE&D&1' (length=11)
'gr_art_ausr' => string 'S' (length=1)
'ma_ausruestung_ausgabe' => string 'on' (length=2)
'ma_ausruestung_ausgabe_datum' => string '2022-02-19' (length=10)
this is the value which will be increased to 5000.00, 500000.00, 50000000.00, .... each time I change the dropdown field value
'ma_ausruestung_preis_eigenanteil' => string '50.00' (length=5)
'ma_ausruestung_preis_eigenanteil_bezahlt' => string 'on' (length=2)
'ma_ausruestung_preis_eigenanteil_bezahlt_datum' => string '2022-02-19' (length=10)
'ma_ausruestung_trikot_no' => string 'EA' (length=2)
C:\xampp\htdocs\radicore\htm\classes\orga_mannschaften_konta kte_ausruestung.class.inc:733:
array (size=39)
'verbaende_art_id' => string 'LV' (length=2)
'verbaende_kuerzel' => string 'HV S' (length=4)
'vereine_kuerzel' => string 'HVS' (length=3)
'saison_id' => string '2021/2022' (length=9)
'mannschaften_id' => string '2007W' (length=5)
'user_id' => string 'HVS' (length=3)
'user_seq_no' => string '2' (length=1)
'ausruestung_id' => string 'TSHIRT' (length=6)
'ausruestung_anr' => string '2007W-SC-HVS' (length=12)
'rdcaccount_id' => string '7' (length=1)
'ma_ausruestung_kontakt_name' => string 'Alizada' (length=7)
'ma_ausruestung_kontakt_vorname' => string 'Emilia' (length=6)
'ma_ausruestung_marke' => string 'Adidas' (length=6)
'ma_ausruestung_modell' => string 'T 4711' (length=6)
'ma_ausruestung_desc' => string 'T-Shirt Sommercamp 2021 - 2007w' (length=31)
this is the value from the lookup table
'gr_art_dropdown' => string '&KLD-DE&D&1' (length=11)
these are the foreign keys values coming from 'gr_art_dropdown'
'gr_art' => string 'KLD-DE' (length=6)
'gr_art_sub' => string 'D' (length=1)
'gr_art_rdc' => string '1' (length=1)
'gr_art_ausr' => string 'S' (length=1)
'ma_ausruestung_farbe' => string 'rot' (length=3)
'ma_ausruestung_farbnummer' => null
'ma_ausruestung_preis_netto' => string '0.00' (length=4)
'ma_ausruestung_preis_rabatt' => string '0.000' (length=5)
'ma_ausruestung_preis_rabatt_berechnen' => string '0' (length=1)
'ma_ausruestung_preis_mwst' => string '0.00' (length=4)
'ma_ausruestung_preis_mwst_berechnen' => string '0' (length=1)
'ma_ausruestung_preis_brutto' => string '0.00' (length=4)
this is the value which will be increased to 5000.00, 500000.00, 50000000.00, .... each time I change the dropdown field value
'ma_ausruestung_preis_eigenanteil' => string '50.00' (length=5)
'ma_ausruestung_preis_eigenanteil_bezahlt' => string '1' (length=1)
'ma_ausruestung_preis_eigenanteil_bezahlt_datum' => string '2022-02-19' (length=10)
'ma_ausruestung_preis_berechnen' => string '0' (length=1)
'ma_ausruestung_pfad_bild' => null
'ma_ausruestung_pfad_video' => null
'ma_ausruestung_barcode' => null
'ma_ausruestung_trikot_no' => string 'EA' (length=2)
'ma_ausruestung_ausgabe' => string '1' (length=1)
'ma_ausruestung_ausgabe_datum' => string '2022-02-19' (length=10)
'ausruestungs_groesse_art_desc' => string 'Kleider-Größen Damen (EU/DE)' (length=30)
|
|
|
|
|
DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Sat, 12 February 2022 04:22
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Tue, 15 February 2022 07:09
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Thu, 17 February 2022 04:28
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Sat, 19 February 2022 04:56
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Sun, 06 March 2022 04:57
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Wed, 09 March 2022 04:36
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Fri, 11 March 2022 06:03
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Mon, 14 March 2022 05:41
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Wed, 16 March 2022 05:48
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Thu, 24 March 2022 06:54
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Fri, 25 March 2022 06:48
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Sat, 26 March 2022 06:18
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Fri, 01 April 2022 09:59
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Sun, 10 April 2022 03:17
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Wed, 13 April 2022 04:47
|
|
|
Re: DropDown Field values - changing in runtime
|
|
|
Re: DropDown Field values - changing in runtime
By: AJM on Wed, 13 November 2024 05:07
|
Goto Forum:
Current Time: Thu Nov 28 10:55:51 EST 2024
Total time taken to generate the page: 0.01485 seconds
|