diff options
-rw-r--r-- | config/pikul_order.tag | 9 | ||||
-rw-r--r-- | include/profiles/profiles.order | 1 | ||||
-rw-r--r-- | products/variable.txt | 1 |
3 files changed, 8 insertions, 3 deletions
diff --git a/config/pikul_order.tag b/config/pikul_order.tag index 6f22e1d..181923e 100644 --- a/config/pikul_order.tag +++ b/config/pikul_order.tag @@ -2,10 +2,11 @@ UserTag pikul_order Order order_number insurance UserTag pikul_order Routine <<EOR sub { my ($order_number, $insurance) = @_; - my ($shipmode, $nitems, $subtotal, $fname, $lname, $address1, $address2, $city, $state, $phone_day) + my ($shipmode, $nitems, $subtotal, $fname, $lname, $address1, $address2, $city, $state, $zip, + $phone_day) = @{$Tag->query({ - sql => "SELECT shipmode,nitems,subtotal,fname,lname,address1,address2,city,state,phone_day \ - FROM transactions WHERE code='$order_number'", + sql => "SELECT shipmode,nitems,subtotal,fname,lname,address1,address2,city,state,zip,\ + phone_day FROM transactions WHERE code='$order_number'", wantarray => 1 })->[0]}; my @parts = split(/ /, $shipmode, 2); @@ -40,6 +41,7 @@ sub { "$::Variable->{PHONE}", $origin, "$::Variable->{ADDRESS}", + "$::Variable->{POSTAL_CODE}", "$fname $lname", $phone_day, $Tag->query({sql => "SELECT code FROM $table WHERE district='$address2' AND city='$city' \ @@ -47,6 +49,7 @@ sub { wantarray => 1 })->[0]->[0], $address1, + $zip, $nitems, \@items, $insurance, diff --git a/include/profiles/profiles.order b/include/profiles/profiles.order index fa02037..aff4db9 100644 --- a/include/profiles/profiles.order +++ b/include/profiles/profiles.order @@ -5,6 +5,7 @@ address1=required address2=required city=required state=required +zip=required &fatal=yes &final=yes &set = mv_payment Bank transfer diff --git a/products/variable.txt b/products/variable.txt index ac684c1..078c31b 100644 --- a/products/variable.txt +++ b/products/variable.txt @@ -64,6 +64,7 @@ PGP_KEY Encryption PGSQL __MVC_PGSQL__ Database PHONE (765) 555-1212 Company POSTAL_ACCEPTED 0 Payment +POSTAL_CODE 12720 Company PO_ACCEPTED 1 Payment PUBLISH_DO_RCS 0 Admin Control PUBLISH_NO_PAGE_ROOT 0 Admin Control |