Skip to content

Commit 90297de

Browse files
committed
[IMP] base_wamas_ubl dict item default value
1 parent 9a311d7 commit 90297de

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

base_wamas_ubl/lib/wamas/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,9 @@ def generate_wamas_dict(dict_item, grammar, **kwargs): # noqa: C901
299299
if isinstance(ubl_path, list):
300300
lst_val = []
301301
for _item in ubl_path:
302-
lst_val.append(dict_item.get(_item, ""))
302+
lst_val.append(dict_item.get(_item) or "")
303303
if lst_val:
304-
val = " ".join(lst_val)
304+
val = " ".join(lst_val).strip()
305305
elif isinstance(ubl_path, dict):
306306
for _key in ubl_path:
307307
if dict_item.get(_key, False):

base_wamas_ubl/tests/samples/UBL2WAMAS-SAMPLE_WEAK_WEAP-DESPATCH_ADVICE.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
<cbc:ID>130377</cbc:ID>
6666
<cac:Delivery>
6767
<cac:PromiseDeliveryPeriod>
68-
<cbc:EndDate>2023-05-01</cbc:EndDate>
69-
<cbc:EndTime>14:00:00</cbc:EndTime>
68+
<cbc:EndDate>2023-05-02</cbc:EndDate>
69+
<cbc:EndTime>15:00:00</cbc:EndTime>
7070
</cac:PromiseDeliveryPeriod>
7171
<cac:EstimatedDeliveryPeriod>
7272
<cbc:EndDate>2023-05-01</cbc:EndDate>

base_wamas_ubl/tests/samples/UBL2WAMAS-SAMPLE_WEAK_WEAP.wamas

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ODOO WAMAS 00000120230501020000WEAK00050000WH/IN/000377 ODOO PO001040 STDMAN0001040 MyCompany Department StreetName AdditionalStreetName 95380 Turlock US (623)-853-7197 wood.corner26@example.com 20230501160000
1+
ODOO WAMAS 00000120230501020000WEAK00050000WH/IN/000377 ODOO PO001040 STDMAN0001040 MyCompany Department StreetName AdditionalStreetName 95380 Turlock US (623)-853-7197 wood.corner26@example.com 20230502170000
22
ODOO WAMAS 00000220230501020000WEAP00045000WH/IN/000377 ODOO PO001040 0000010001151 00000 NDISPONIBLE 000001536000BOUT NORMAL 20230501020000 202305011600007910063 NNLG
33
ODOO WAMAS 00000320230501020000WEAP00045000WH/IN/000377 ODOO PO001040 0000020001156 00000 NDISPONIBLE 000005184000PET NORMAL 20230501020000 202305011600007910105 NNLG
44
ODOO WAMAS 00000420230501020000WEAP00045000WH/IN/000377 ODOO PO001040 0000030001160 00000 NDISPONIBLE 000003840000BOUT NORMAL 20230501020000 202305011600007910004 NNLG

0 commit comments

Comments
 (0)