From 13ab07e6a1bc103e4b0dc117ae6b72f6aea429b2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Mon, 22 Oct 2018 11:04:21 +0200 Subject: [PATCH] SL::Dev::Record: POD Formatierung --- SL/Dev/Record.pm | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/SL/Dev/Record.pm b/SL/Dev/Record.pm index 8b7d6a717..32c87e133 100644 --- a/SL/Dev/Record.pm +++ b/SL/Dev/Record.pm @@ -333,7 +333,8 @@ Example with params: Create a credit note (sales). Use positive quantities when adding items. -Example including creation of parts and of credit_note +Example including creation of parts and of credit_note: + my $part1 = SL::Dev::Part::create_part( partnumber => 'T4254')->save; my $part2 = SL::Dev::Part::create_service(partnumber => 'Serv1')->save; my $credit_note = SL::Dev::Record::create_credit_note( @@ -351,14 +352,15 @@ Examples: Create a sales order and save it directly via rose, without running calculate_prices_and_taxes: - my $order = SL::Dev::Record::create_sales_order()->save; + my $order = SL::Dev::Record::create_sales_order()->save; Let create_sales_order run calculate_prices_and_taxes and save: - my $order = SL::Dev::Record::create_sales_order(save => 1); + my $order = SL::Dev::Record::create_sales_order(save => 1); + +Example including creation of part and of sales order: -Example including creation of part and of sales order. my $part1 = SL::Dev::Part::create_part( partnumber => 'T4254')->save; my $part2 = SL::Dev::Part::create_service(partnumber => 'Serv1')->save; my $order = SL::Dev::Record::create_sales_order( @@ -383,17 +385,21 @@ Example: create 100 orders with the same part for 100 new customers: See comments for C. Example: - my $purchase_order = SL::Dev::Record::create_purchase_order(save => 1); + + my $purchase_order = SL::Dev::Record::create_purchase_order(save => 1); =head2 C Creates an item from a part object that can be added to a record. -Required params: record_type (sales_invoice, sales_order, sales_delivery_order) - part (an SL::DB::Part object) +Required params: + + record_type (sales_invoice, sales_order, sales_delivery_order) + part (an SL::DB::Part object) Example including creation of part and of invoice: + my $part = SL::Dev::Part::create_part( partnumber => 'T4254')->save; my $item = SL::Dev::Record::create_invoice_item(part => $part, qty => 2.5); my $invoice = SL::Dev::Record::create_sales_invoice( @@ -406,6 +412,7 @@ Example including creation of part and of invoice: Creates a default project. Minimal example, creating a project with status "running" and type "Standard": + my $project = SL::Dev::Record::create_project(); $project = SL::Dev::Record::create_project( @@ -423,6 +430,7 @@ C<%params> should only contain alterable keys from the object Project. Creates a default department. Minimal example: + my $department = SL::Dev::Record::create_department(); my $department = SL::Dev::Record::create_department( @@ -435,8 +443,6 @@ default value 'Test Department'. C<%params> should only contain alterable keys from the object Department. -=head1 TODO - =head1 BUGS Nothing here yet. -- 2.20.1