manabb commited on
Commit
c7f9491
·
verified ·
1 Parent(s): 569a866

Update cq_domestic.py

Browse files
Files changed (1) hide show
  1. cq_domestic.py +15 -15
cq_domestic.py CHANGED
@@ -1,42 +1,42 @@
1
  #cq_domestic.py
2
  def domesticCQ(extraction_item_value_html,result_dic):
3
  return f"""
4
- <h1>
5
  To, <br>
6
  {result_dic["extraction"]["Company name"]}<br>
7
  Contact Person: {result_dic["extraction"]["Contact person"]} <br>
8
  email id: {result_dic["extraction"]["Contact person email id"]} <br> <br>
9
 
10
- Subject: .....................<br>
11
- Ref.: {result_dic["extraction"]["offer reference Number"]} dated {result_dic["extraction"]["offer date"]}<br><br><br>
12
-
13
- Dear Sir/Team, </h1><br>
14
 
 
 
 
 
15
  With reference to above, we would like to inform you that your offer against subject enquiry is under active consideration with us. However, for further <br>
16
- processing of your offer, kindly confirm the following points: <br>
17
 
18
  1. PRICE RESONABILITY: We have reviewed your quoted rates for the items listed in our recent inquiry. As per your offer the item rate and values are as under:<br>
19
 
20
  {extraction_item_value_html}<br><br>
21
 
22
 
23
- Kindly Provide price justification for the quoted rates in terms of any previous PO placed/OEM price list etc.<br>
24
 
25
  - Being a PSU, we need to justify your quote by way of documentary records in order to ensure that the most competitive current quote of the items have been <br>
26
  furnished by you for this enquiry.<br><br>
27
 
28
- 2. PRICE BASIS: From your said reference offer No: ...{result_dic["extraction"]["offer reference Number"]}...., you have indicated that the Price Basis is {result_dic["extraction"]["Incoterm"]}. Please note <br>
29
- that Ex-Works basis price is not acceptable to us, as per NRL’s terms & condition, Quotes on FOR NRL site shall only be acceptable. Please confirm acceptance of <br>
30
- FOR site incoterm.<br><br>
31
 
32
   Please note that Transit Insurance shall be in your scope from your despatch Ex-works location to our NRL Site, Numaligarh, Assam.<br><br>
33
 
34
   Kindly confirm additional charges to FOR sites in terms of %age of total basic quoted value :<br><br>
35
 
36
- • PACKING & FORWARDING CHARGE: As per your offer, it is {result_dic["extraction"]["Packing & forwarding"]}. Please reconfirm the same.<br>
37
- • Freight Charge: As per your offer, it is {result_dic["extraction"]["Freight"]}. Please reconfirm the same.<br>
38
- • Transit Insurance Charge: As per your offer, it is {result_dic["extraction"]["Transit Insurance"]}. Please reconfirm the same.<br>
39
- • GST: 18% Extra<br><br><br>
40
 
41
  3. Delivery Period: As per your offer, it is {result_dic["extraction"]["Delivery period"]}. Please reconfirm the same.<br><br>
42
 
@@ -61,6 +61,6 @@ def domesticCQ(extraction_item_value_html,result_dic):
61
 
62
  Kindly confirmed the same by return mail to undersigned within next 03 working days for further processing. <br><br><br>
63
 
64
-
65
  """
66
 
 
1
  #cq_domestic.py
2
  def domesticCQ(extraction_item_value_html,result_dic):
3
  return f"""
4
+ <h2>
5
  To, <br>
6
  {result_dic["extraction"]["Company name"]}<br>
7
  Contact Person: {result_dic["extraction"]["Contact person"]} <br>
8
  email id: {result_dic["extraction"]["Contact person email id"]} <br> <br>
9
 
 
 
 
 
10
 
11
+ Ref.: Your offer no: {result_dic["extraction"]["offer reference Number"]} dated {result_dic["extraction"]["offer date"]}<br><br><br>
12
+
13
+ Dear Sir/Team, </h2><br><br>
14
+ <h3>
15
  With reference to above, we would like to inform you that your offer against subject enquiry is under active consideration with us. However, for further <br>
16
+ processing of your offer, kindly confirm the following points: <br><br>
17
 
18
  1. PRICE RESONABILITY: We have reviewed your quoted rates for the items listed in our recent inquiry. As per your offer the item rate and values are as under:<br>
19
 
20
  {extraction_item_value_html}<br><br>
21
 
22
 
23
+ Kindly Provide price justification for the quoted rates in terms of any previous PO placed/OEM price list etc.<br><br>
24
 
25
  - Being a PSU, we need to justify your quote by way of documentary records in order to ensure that the most competitive current quote of the items have been <br>
26
  furnished by you for this enquiry.<br><br>
27
 
28
+ 2. PRICE BASIS: From your said reference offer No: ...{result_dic["extraction"]["offer reference Number"]}...., you have indicated that the Price <br>
29
+ Basis is {result_dic["extraction"]["Incoterm"]}. Please note that Ex-Works basis price is not acceptable to us, as per NRL’s terms & condition, <br>
30
+ Quotes on FOR NRL site shall only be acceptable. Please confirm acceptance of FOR site incoterm.<br><br>
31
 
32
   Please note that Transit Insurance shall be in your scope from your despatch Ex-works location to our NRL Site, Numaligarh, Assam.<br><br>
33
 
34
   Kindly confirm additional charges to FOR sites in terms of %age of total basic quoted value :<br><br>
35
 
36
+ • PACKING & FORWARDING CHARGE: As per your offer, it is {result_dic["extraction"]["Packing & forwarding"]}. Please reconfirm the same.<br><br>
37
+ • Freight Charge: As per your offer, it is {result_dic["extraction"]["Freight"]}. Please reconfirm the same.<br><br>
38
+ • Transit Insurance Charge: As per your offer, it is {result_dic["extraction"]["Transit Insurance"]}. Please reconfirm the same.<br><br>
39
+ • GST: 18% Extra<br><br><br><br>
40
 
41
  3. Delivery Period: As per your offer, it is {result_dic["extraction"]["Delivery period"]}. Please reconfirm the same.<br><br>
42
 
 
61
 
62
  Kindly confirmed the same by return mail to undersigned within next 03 working days for further processing. <br><br><br>
63
 
64
+ </h3>
65
  """
66