Revision e18af94c
Von Werner Hahn vor mehr als 7 Jahren hinzugefügt
locale/de/all | ||
---|---|---|
'correction' => 'Korrektur',
|
||
'correction_br' => 'Korr.',
|
||
'cp_greeting to cp_gender migration' => 'Datenumwandlung von Titel nach Geschlecht (cp_greeting to cp_gender)',
|
||
'create and edit shopparts' => '',
|
||
'create and edit webshops' => '',
|
||
'customer' => 'Kunde',
|
||
'customer_list' => 'kundenliste',
|
||
'dated' => 'datiert',
|
||
... | ... | |
'general_ledger_list' => 'Buchungsjournal',
|
||
'generate cb/ob transactions for selected charts' => 'Start-/Endbuchungen für ausgewählte Konten erstellen',
|
||
'generated Files' => 'Erzeugte Dokumente',
|
||
'get shoporders' => '',
|
||
'gobd-#1-#2.zip' => 'gobd-#1-#2.zip',
|
||
'h' => 'h',
|
||
'history search engine' => 'Historien Suchmaschine',
|
locale/en/all | ||
---|---|---|
'correction' => '',
|
||
'correction_br' => 'correction',
|
||
'cp_greeting to cp_gender migration' => '',
|
||
'create and edit shopparts' => '',
|
||
'create and edit webshops' => '',
|
||
'customer' => '',
|
||
'customer_list' => '',
|
||
'dated' => '',
|
||
... | ... | |
'general_ledger_list' => '',
|
||
'generate cb/ob transactions for selected charts' => '',
|
||
'generated Files' => '',
|
||
'get shoporders' => '',
|
||
'gobd-#1-#2.zip' => '',
|
||
'h' => '',
|
||
'history search engine' => '',
|
sql/Pg-upgrade2-auth/webshop_api_rights.pl | ||
---|---|---|
# @tag: webshop_api_rights
|
||
# @description: Setzt die Rechte Shopconfig, Shopbestellungen, Shopartikel, per Default erlaubt
|
||
# @depends: release_3_5_0
|
||
package SL::DBUpgrade2::Auth::webshop_api_rights;
|
||
# @locales: create and edit shopparts
|
||
# @locales: get shoporders
|
||
# @locales: create and edit webshops
|
||
|
||
package sl::dbupgrade2::auth::webshop_api_rights;
|
||
|
||
use strict;
|
||
use utf8;
|
||
|
||
use parent qw(SL::DBUpgrade2::Base);
|
||
use parent qw(sl::dbupgrade2::base);
|
||
|
||
use SL::DBUtils;
|
||
use sl::dbutils;
|
||
|
||
sub run {
|
||
my ($self) = @_;
|
||
|
||
$self->db_query("INSERT INTO auth.master_rights (position, name, description) VALUES ( 550, 'shop_part_edit', 'Create and edit shopparts')");
|
||
$self->db_query("INSERT INTO auth.master_rights (position, name, description) VALUES ( 950, 'shop_order', 'Get shoporders')");
|
||
$self->db_query("INSERT INTO auth.master_rights (position, name, description) VALUES ( 4300, 'edit_shop_config', 'Create and edit webshops')");
|
||
$self->db_query("insert into auth.master_rights (position, name, description) values ( 550, 'shop_part_edit', 'create and edit shopparts')");
|
||
$self->db_query("insert into auth.master_rights (position, name, description) values ( 950, 'shop_order', 'get shoporders')");
|
||
$self->db_query("insert into auth.master_rights (position, name, description) values ( 4300, 'edit_shop_config', 'create and edit webshops')");
|
||
|
||
my $groups = $main::auth->read_groups();
|
||
|
Auch abrufbar als: Unified diff
WebshopApi: Übersetzungen Rechte Adminbereich