first commit
This commit is contained in:
114
templates/finances/operation-edit.php
Normal file
114
templates/finances/operation-edit.php
Normal file
@@ -0,0 +1,114 @@
|
||||
<?
|
||||
global $db;
|
||||
|
||||
ob_start();
|
||||
|
||||
if ( $this -> operation['id'] )
|
||||
$date = $this -> operation['date'];
|
||||
elseif ( $this -> operation_date )
|
||||
$date = $this -> operation_date;
|
||||
else
|
||||
$date = date( 'Y-m-d' );
|
||||
|
||||
echo \Html::input( [
|
||||
'label' => 'Data',
|
||||
'name' => 'date',
|
||||
'value' => $date,
|
||||
'class' => 'date require',
|
||||
'inline' => true
|
||||
] );
|
||||
echo \Html::input( [
|
||||
'label' => 'Kwota',
|
||||
'name' => 'amount',
|
||||
'value' => $this -> operation['amount'],
|
||||
'class' => 'price require',
|
||||
'inline' => true
|
||||
] );
|
||||
echo \Html::input( [
|
||||
'label' => 'Opis',
|
||||
'name' => 'description',
|
||||
'value' => $this -> operation['description'],
|
||||
'inline' => true
|
||||
] );
|
||||
|
||||
foreach ( $this -> operation['tags'] as $tag )
|
||||
{
|
||||
$tags_value .= $tag['tag'];
|
||||
|
||||
if ( $tag != end( $this -> operation['tags'] ) )
|
||||
$tags_value .= ',';
|
||||
}
|
||||
|
||||
echo \Html::input( [
|
||||
'label' => 'Tagi',
|
||||
'name' => 'tags',
|
||||
'id' => 'tags',
|
||||
'value' => $tags_value,
|
||||
'inline' => true
|
||||
] );
|
||||
|
||||
$out = ob_get_clean();
|
||||
|
||||
$grid = new \gridEdit;
|
||||
$grid -> id = 'operation-edit';
|
||||
$grid -> gdb_opt = $gdb;
|
||||
$grid -> include_plugins = true;
|
||||
$grid -> title = 'edycja <strong>operacji</strong>';
|
||||
$grid -> title_small = 'Zarządzaj parametrami operacji';
|
||||
$grid -> fields = [
|
||||
[
|
||||
'db' => 'id',
|
||||
'type' => 'hidden',
|
||||
'value' => $this -> operation['id']
|
||||
], [
|
||||
'db' => 'category_id',
|
||||
'type' => 'hidden',
|
||||
'value' => $this -> operation['id'] ? $this -> operation['category_id'] : \S::get( 'category-id' )
|
||||
]
|
||||
];
|
||||
$grid -> external_code = $out;
|
||||
|
||||
if ( \S::get( 'return' ) == 'category' or $this -> operation['id'] )
|
||||
$return_url = '/finances/operations_list/category-id=' . $this -> category_id;
|
||||
else
|
||||
$return_url = '/finances/main_view/';
|
||||
|
||||
$grid -> actions = [
|
||||
'save' => [ 'url' => '/finances/operation_save/', 'back_url' => $return_url ],
|
||||
'cancel' => [ 'url' => $return_url ]
|
||||
];
|
||||
$grid -> persist_edit = true;
|
||||
$grid -> id_param = 'id';
|
||||
echo $grid -> draw();
|
||||
?>
|
||||
<link rel="stylesheet" type="text/css" href="/libraries/tagsinput/bootstrap-tagsinput.css">
|
||||
<link rel="stylesheet" type="text/css" href="/libraries/tagsinput/app.css">
|
||||
<script type="text/javascript" src="/libraries/typeahead.bundle.js"></script>
|
||||
<script type="text/javascript" src="/libraries/tagsinput/bootstrap-tagsinput.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$( function() {
|
||||
var tags_list = [ <? foreach ( $this -> tags_json as $tag ): echo '"' . $tag . '"'; if ( $tag != end( $this -> tags_json ) ) echo','; endforeach;?> ];
|
||||
|
||||
var tags_data = new Bloodhound({
|
||||
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('name'),
|
||||
queryTokenizer: Bloodhound.tokenizers.whitespace,
|
||||
local: $.map( tags_list, function(item) {
|
||||
return {
|
||||
name: item
|
||||
};
|
||||
})
|
||||
});
|
||||
|
||||
tags_data.initialize();
|
||||
console.log( tags_data );
|
||||
|
||||
$( '#tags' ).tagsinput({
|
||||
typeaheadjs: {
|
||||
name: 'tags',
|
||||
displayKey: 'name',
|
||||
valueKey: 'name',
|
||||
source: tags_data.ttAdapter()
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user