I need to sum value in server side
I need to sum value in server side
XerK
Posts: 25Questions: 8Answers: 0
Need to sum multi field when i edit (observer) to import it in my absent_day
<?php
/*
* Example PHP implementation used for the index.html example
*/
// DataTables PHP library
include( "../php/DataTables.php" );
// Alias Editor classes so they are easy to use
use
DataTables\Editor,
DataTables\Editor\Field,
DataTables\Editor\Format,
DataTables\Editor\Mjoin,
DataTables\Editor\Options,
DataTables\Editor\Upload,
DataTables\Editor\Validate;
// Build our Editor instance and process the data coming from _POST
Editor::inst( $db, 'users')
->fields(
Field::inst( 'users.name' ),
Field::inst( 'users.last_name' ),
Field::inst( 'users.gender' ),
Field::inst( 'users.id' )
->options( Options::inst()
->table( 'add_salaries' )
->value( 'user_id' )
->label( 'cost' )
)
->validator( 'Validate::dbValues' ),
Field::inst( 'add_salaries.cost' )
->validator( 'Validate::numeric' ),
Field::inst( 'add_salaries.absent_day' )->set( Field::SET_EDIT )
->validator( 'Validate::numeric' ),
Field::inst( 'add_salaries.late_day' )
->validator( 'Validate::numeric' ),
Field::inst( 'add_salaries.may_grant' )
->validator( 'Validate::numeric' ),
Field::inst( 'add_salaries.prev_year_bonus' )
->validator( 'Validate::numeric' ),
Field::inst( 'add_salaries.share_employer' )
->validator( 'Validate::numeric' ),
Field::inst( 'add_salaries.variable_wages' )
->validator( 'Validate::numeric' ),
Field::inst( 'add_salaries.bonus' )
->validator( 'Validate::numeric' ),
Field::inst( 'add_salaries.created_at' )->set( Field::SET_EDIT ),
Field::inst( 'add_salaries.updated_at' )->set( Field::SET_EDIT )
)
->on( 'preEdit', function ( $editor, $values ) {
$editor
->field( 'add_salaries.absent_day' )
->setValue( 1 );
} )
->on( 'preEdit', function ( $editor, $values ) {
$editor
->field( 'add_salaries.created_at' )
->setValue( date('Y-m-d H:i:s') );
} )
->on( 'preEdit', function ( $editor, $id, $values ) {
$editor
->field( 'add_salaries.updated_at' )
->setValue( date('Y-m-d H:i:s') );
} )
->leftJoin( 'add_salaries', 'users.id', '=', 'add_salaries.user_id' )
->where( 'users.job', 0 )
->process( $_POST )
->json();
This discussion has been closed.
Answers
Could you elaborate a bit for me please? Are you summing other fields from the same row, or do you need to get data from other rows in the table which were not edited?
Allan
Hello, Allan,
I have a similar problem. I would like to have a sum over the number of ordered articles. The datas are in one table in which all ordered articles are.
I would be satisfied with a group on the article number and a sum() on the quantity.
Frank