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> {
.map((ord) => DropdownMenuItem<Products>(
value: ord,
child: Text(
"(Product Name: ${ord.name})",
"${ord.name}",
style: const TextStyle(fontSize: 14),
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>
>(
value: ord,
child: Text(
"(Product Name: ${ord.productName})",
"${ord.productName}",
style:
const TextStyle(
fontSize:
......
This diff is collapsed.
This diff is collapsed.
......@@ -1186,7 +1186,7 @@ class _OrdersdetailsbymodesState extends State<Ordersdetailsbymodes> {
>(
value: ord,
child: Text(
"(Product Name: ${ord.productName})",
"${ord.productName}",
style:
const TextStyle(
fontSize:
......
......@@ -4433,7 +4433,7 @@ class ApiCalling {
};
final res = await post(data, crmProspectDetailsAddAccountUrl, {});
if (res != null) {
print("Filter:${data}");
print("crmProspectDetailsAddAccountAPI:${data}");
debugPrint(res.body);
return CommonResponse.fromJson(jsonDecode(res.body));
} 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