Changeset 3211568
- Timestamp:
- 12/21/2024 02:07:42 PM (16 months ago)
- Location:
- mareike
- Files:
-
- 6 edited
- 1 copied
-
tags/3.1 (copied) (copied from mareike/trunk)
-
tags/3.1/app/requests/class-getuserinvoices.php (modified) (1 diff)
-
tags/3.1/mareike.php (modified) (1 diff)
-
tags/3.1/readme.txt (modified) (2 diffs)
-
trunk/app/requests/class-getuserinvoices.php (modified) (1 diff)
-
trunk/mareike.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mareike/tags/3.1/app/requests/class-getuserinvoices.php
r3211566 r3211568 44 44 Invoice::where( 45 45 ['user_id' => $user_id, 'status' => Invoice::$INVOICE_STATUS_DENIED] 46 )->orWhere( 47 [['user_id' => $user_id, 'status' => Invoice::$INVOICE_STATUS_DENIED_EXPORTED]] 46 )->get() as $invoice) { 47 $costunit = CostUnit::where('id', $invoice->costunit_id)->first(); 48 $invoice->cost_unit_name = $costunit->cost_unit_name; 49 $data->push($invoice); 50 } 51 52 foreach ( 53 Invoice::where( 54 ['user_id' => $user_id, 'status' => Invoice::$INVOICE_STATUS_DENIED_EXPORTED] 48 55 )->get() as $invoice) { 49 56 $costunit = CostUnit::where('id', $invoice->costunit_id)->first(); -
mareike/tags/3.1/mareike.php
r3211566 r3211568 3 3 * Plugin Name: mareike 4 4 * Description: A tool to help associations to manage travel or material costs for events or ongoing jobs. 5 * Version: 3. 05 * Version: 3.1 6 6 * Tags: mareike, administration, fincance, travelmanagement, association tool 7 7 * Requires at least: 6.0 -
mareike/tags/3.1/readme.txt
r3211566 r3211568 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7 6 Stable tag: 3. 06 Stable tag: 3.1 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 ## Changelog ## 41 = 3.1 = 42 * [BUG] Fix for displaying number of denied invoices in widget 43 41 44 = 3.0 = 42 45 * [FEA] Component to sync invoices to NextCloud / WebDav -
mareike/trunk/app/requests/class-getuserinvoices.php
r3211566 r3211568 44 44 Invoice::where( 45 45 ['user_id' => $user_id, 'status' => Invoice::$INVOICE_STATUS_DENIED] 46 )->orWhere( 47 [['user_id' => $user_id, 'status' => Invoice::$INVOICE_STATUS_DENIED_EXPORTED]] 46 )->get() as $invoice) { 47 $costunit = CostUnit::where('id', $invoice->costunit_id)->first(); 48 $invoice->cost_unit_name = $costunit->cost_unit_name; 49 $data->push($invoice); 50 } 51 52 foreach ( 53 Invoice::where( 54 ['user_id' => $user_id, 'status' => Invoice::$INVOICE_STATUS_DENIED_EXPORTED] 48 55 )->get() as $invoice) { 49 56 $costunit = CostUnit::where('id', $invoice->costunit_id)->first(); -
mareike/trunk/mareike.php
r3211566 r3211568 3 3 * Plugin Name: mareike 4 4 * Description: A tool to help associations to manage travel or material costs for events or ongoing jobs. 5 * Version: 3. 05 * Version: 3.1 6 6 * Tags: mareike, administration, fincance, travelmanagement, association tool 7 7 * Requires at least: 6.0 -
mareike/trunk/readme.txt
r3211566 r3211568 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7 6 Stable tag: 3. 06 Stable tag: 3.1 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 ## Changelog ## 41 = 3.1 = 42 * [BUG] Fix for displaying number of denied invoices in widget 43 41 44 = 3.0 = 42 45 * [FEA] Component to sync invoices to NextCloud / WebDav
Note: See TracChangeset
for help on using the changeset viewer.