Commit 29665037 authored by Sai Srinivas's avatar Sai Srinivas
Browse files

30-07-2025 By Sai Srinivas

CRM Module
parent 56ca3566
This diff is collapsed.
...@@ -518,7 +518,7 @@ class _EditProductsListState extends State<EditProductsList> { ...@@ -518,7 +518,7 @@ class _EditProductsListState extends State<EditProductsList> {
.map((ord) => DropdownMenuItem<Products>( .map((ord) => DropdownMenuItem<Products>(
value: ord, value: ord,
child: Text( child: Text(
"(Product Name: ${ord.name})", "${ord.name}",
style: const TextStyle(fontSize: 14), style: const TextStyle(fontSize: 14),
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
), ),
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -227,7 +227,7 @@ class _GeneratequotationscreenoldState extends State<Generatequotationscreenold> ...@@ -227,7 +227,7 @@ class _GeneratequotationscreenoldState extends State<Generatequotationscreenold>
>( >(
value: ord, value: ord,
child: Text( child: Text(
"(Product Name: ${ord.productName})", "${ord.productName}",
style: style:
const TextStyle( const TextStyle(
fontSize: fontSize:
......
This diff is collapsed.
This diff is collapsed.
...@@ -1186,7 +1186,7 @@ class _OrdersdetailsbymodesState extends State<Ordersdetailsbymodes> { ...@@ -1186,7 +1186,7 @@ class _OrdersdetailsbymodesState extends State<Ordersdetailsbymodes> {
>( >(
value: ord, value: ord,
child: Text( child: Text(
"(Product Name: ${ord.productName})", "${ord.productName}",
style: style:
const TextStyle( const TextStyle(
fontSize: fontSize:
......
...@@ -4433,7 +4433,7 @@ class ApiCalling { ...@@ -4433,7 +4433,7 @@ class ApiCalling {
}; };
final res = await post(data, crmProspectDetailsAddAccountUrl, {}); final res = await post(data, crmProspectDetailsAddAccountUrl, {});
if (res != null) { if (res != null) {
print("Filter:${data}"); print("crmProspectDetailsAddAccountAPI:${data}");
debugPrint(res.body); debugPrint(res.body);
return CommonResponse.fromJson(jsonDecode(res.body)); return CommonResponse.fromJson(jsonDecode(res.body));
} else { } else {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment