mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-27 21:16:48 +00:00
* Add new models for SalesOrder - Create generic Order and OrderLine models with common functionality * Refactor - Move some widgets around - Cleanup directory structure * Add link to home screen and nav drawer * Add SalesOrder list widget * Linting fixes * Fix string * Refactor PurchaseOrderDetailWidget * Tweaks to existing code * linting * Fixes for drawer widget * Add "detail" page for SalesOrder * Add more tiles to SalesOrder detail * Allow editing of salesorder * add list filters for sales orders * Display list of line items * Customer updates - Display customer icon on home screen - Fetch sales orders for customer detail page * Cleanup company detail view * Create new sales order from list * Stricter typing for formFields method * Create new PurchaseOrder and SalesOrder from company deatil * Status code updates - Add function for name comparison - Remove hard-coded values * Update view permission checks for home widget * Add ability to manually add SalesOrderLineItem * Add nice progress bar widgets * Display detail view for sales order line item * edit SalesOrderLineItem * Fix unused import * Hide "shipped items" tab - Will be added in a future update
211 lines
4.9 KiB
Dart
211 lines
4.9 KiB
Dart
import "package:flutter/material.dart";
|
|
import "package:font_awesome_flutter/font_awesome_flutter.dart";
|
|
|
|
import "package:inventree/api.dart";
|
|
import "package:inventree/app_colors.dart";
|
|
import "package:inventree/inventree/part.dart";
|
|
import "package:inventree/inventree/purchase_order.dart";
|
|
import "package:inventree/inventree/sales_order.dart";
|
|
import "package:inventree/inventree/stock.dart";
|
|
import "package:inventree/l10.dart";
|
|
import "package:inventree/settings/settings.dart";
|
|
import "package:inventree/widget/order/sales_order_list.dart";
|
|
import "package:inventree/widget/part/category_display.dart";
|
|
import "package:inventree/widget/notifications.dart";
|
|
import "package:inventree/widget/order/purchase_order_list.dart";
|
|
import "package:inventree/widget/stock/location_display.dart";
|
|
|
|
|
|
/*
|
|
* Custom "drawer" widget for the InvenTree app.
|
|
*/
|
|
class InvenTreeDrawer extends StatelessWidget {
|
|
|
|
const InvenTreeDrawer(this.context);
|
|
|
|
final BuildContext context;
|
|
|
|
void _closeDrawer() {
|
|
// Close the drawer
|
|
Navigator.of(context).pop();
|
|
}
|
|
|
|
bool _checkConnection() {
|
|
return InvenTreeAPI().checkConnection();
|
|
}
|
|
|
|
/*
|
|
* Return to the 'home' screen.
|
|
* This will empty the navigation stack.
|
|
*/
|
|
void _home() {
|
|
_closeDrawer();
|
|
|
|
while (Navigator.of(context).canPop()) {
|
|
Navigator.of(context).pop();
|
|
}
|
|
}
|
|
|
|
// Load "parts" page
|
|
void _parts() {
|
|
_closeDrawer();
|
|
|
|
if (_checkConnection()) {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(builder: (context) => CategoryDisplayWidget(null))
|
|
);
|
|
}
|
|
}
|
|
|
|
// Load "stock" page
|
|
void _stock() {
|
|
_closeDrawer();
|
|
|
|
if (_checkConnection()) {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(builder: (context) => LocationDisplayWidget(null))
|
|
);
|
|
}
|
|
}
|
|
|
|
// Load "sales orders" page
|
|
void _salesOrders() {
|
|
_closeDrawer();
|
|
|
|
if (_checkConnection()) {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (context) => SalesOrderListWidget(filters: {})
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
// Load "purchase orders" page
|
|
void _purchaseOrders() {
|
|
_closeDrawer();
|
|
|
|
if (_checkConnection()) {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (context) => PurchaseOrderListWidget(filters: {})
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
// Load notifications screen
|
|
void _notifications() {
|
|
_closeDrawer();
|
|
|
|
if (_checkConnection()) {
|
|
Navigator.push(context,
|
|
MaterialPageRoute(builder: (context) => NotificationWidget()));
|
|
}
|
|
}
|
|
|
|
// Load settings widget
|
|
void _settings() {
|
|
_closeDrawer();
|
|
Navigator.push(context, MaterialPageRoute(builder: (context) => InvenTreeSettingsWidget()));
|
|
}
|
|
|
|
// Construct list of tiles to display in the "drawer" menu
|
|
List<Widget> drawerTiles(BuildContext context) {
|
|
List<Widget> tiles = [];
|
|
|
|
// "Home" access
|
|
tiles.add(ListTile(
|
|
leading: FaIcon(FontAwesomeIcons.house, color: COLOR_ACTION),
|
|
title: Text(
|
|
L10().appTitle,
|
|
style: TextStyle(fontWeight: FontWeight.bold),
|
|
),
|
|
onTap: _home,
|
|
));
|
|
|
|
tiles.add(Divider());
|
|
|
|
if (InvenTreePart().canView) {
|
|
tiles.add(
|
|
ListTile(
|
|
title: Text(L10().parts),
|
|
leading: FaIcon(FontAwesomeIcons.shapes, color: COLOR_ACTION),
|
|
onTap: _parts,
|
|
)
|
|
);
|
|
}
|
|
|
|
if (InvenTreeStockLocation().canView) {
|
|
tiles.add(
|
|
ListTile(
|
|
title: Text(L10().stock),
|
|
leading: FaIcon(FontAwesomeIcons.boxesStacked, color: COLOR_ACTION),
|
|
onTap: _stock,
|
|
)
|
|
);
|
|
}
|
|
|
|
if (InvenTreePurchaseOrder().canView) {
|
|
tiles.add(
|
|
ListTile(
|
|
title: Text(L10().purchaseOrders),
|
|
leading: FaIcon(FontAwesomeIcons.cartShopping, color: COLOR_ACTION),
|
|
onTap: _purchaseOrders,
|
|
)
|
|
);
|
|
}
|
|
|
|
if (InvenTreeSalesOrder().canView) {
|
|
tiles.add(
|
|
ListTile(
|
|
title: Text(L10().salesOrders),
|
|
leading: FaIcon(FontAwesomeIcons.truck, color: COLOR_ACTION),
|
|
onTap: _salesOrders,
|
|
)
|
|
);
|
|
}
|
|
|
|
if (tiles.length > 2) {
|
|
tiles.add(Divider());
|
|
}
|
|
|
|
if (InvenTreeAPI().supportsNotifications) {
|
|
int notification_count = InvenTreeAPI().notification_counter;
|
|
|
|
tiles.add(
|
|
ListTile(
|
|
leading: FaIcon(FontAwesomeIcons.bell, color: COLOR_ACTION),
|
|
trailing: notification_count > 0 ? Text(notification_count.toString()) : null,
|
|
title: Text(L10().notifications),
|
|
onTap: _notifications,
|
|
)
|
|
);
|
|
}
|
|
|
|
tiles.add(
|
|
ListTile(
|
|
title: Text(L10().settings),
|
|
leading: Icon(Icons.settings, color: COLOR_ACTION),
|
|
onTap: _settings,
|
|
)
|
|
);
|
|
|
|
return tiles;
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
|
|
return Drawer(
|
|
child: ListView(
|
|
children: drawerTiles(context),
|
|
)
|
|
);
|
|
}
|
|
}
|